v0.1.9
Please use 0.1.11, there is a bug in this version
Update notes:
- When this library first came out, you defined routes using
this.stub('get', '/path'...)
in yourmirage/config.js
file.stub
has been removed, so if you happen to be using it, just replace those calls with thethis.get
,this.post
, etc. helper methods. - If you happen to be using the orm (it's private + not ready yet), know that there were some changes to how the data is stored. Contact me if you want to upgrade.
Changes:
- [BREAKING CHANGE] remove #stub from Server (see update note) @samselikoff
- [FEATURE] add
.passthrough
See feature documentation @samselikoff - [FEATURE] add
.loadFixtures
See feature documentation @samselikoff - [FEATURE] add .random.number.range to faker @IAmJulianAcosta
- [IMPROVEMENT] better missing route message @blimmer
- [IMPROVEMENT] upgrade Ember CLI 1.13.8 @blimmer
- [IMPROVEMENT] improve logging @gaborsar
- [IMPROVEMENT] cleanup @jherdman
- [BUGFIX] fixup blueprints @Samsinite
- [BUGFIX] fix ie8 bug @jerel
- [BUGFIX] avoid dep warning in Ember 2.x @mixonic