Releases: miragejs/ember-cli-mirage
v0.3.3
v0.3.2
Update notes:
We added a feature to autodetect Ember Data models in this release. By default, it's true
.
If your app is currently using Mirage without Mirage models (and thus things like server.create('user')
are just creating raw POJO data for Mirage's database), this new feature could change/break your Mirage server.
You should probably disable this feature using
ENV['ember-cli-mirage'] = {
discoverEmberDataModels: false
};
Then, the recommended path forward would be to get all of your Mirage code to use its models/orm, and once you do, you'll be able to delete mirage/models
and then enable this feature. No more duplicating your Ember Data schema!
Changes:
- [FEATURE]#1056 Auto generate models from Ember Data models @offirgolan
- [ENHANCEMENT]#1068 Add Resource helper custom path parameter @rjschie
- [ENHANCEMENT]#1077 Upgrade ember-inflector to 2.0 @john-griffin
- [ENHANCEMENT]#1088 Upgrade ember-lodash @john-griffin
- [ENHANCEMENT]#1086 Normalize hasMany relationships @npafundi
- General improvements: @kishiamy, @aheuermann, @marpo60,
v0.3.1
Update notes: none
Changes:
- [BUGFIX] 1054 Remove bad reflexive inverse logic @samselikoff
- General enhancements @Serabe, @cs3b
v0.3.0
Update notes: View the Upgrade guide on the 0.3.x docs page
Changes:
- [FEATURE] #965 One-way associations @samselikoff, @HeroicEric, @xomaczar
v0.2.9
v0.2.8
v0.2.7
Update notes: 0.2.6 introduced a breaking change for PhantomJS users, so we've reverted a change and published 0.2.7. See #1024 for details.
Changes:
- [BUGFIX #1025 Fix factory association feature @yratanov
- [BUGFIX #1024 Replace Number.isInteger with lodash isInteger @ilucin
- [ENHANCEMENT #1023 Allow route handlers to return empty string responses @bendemboski
- [ENHANCEMENT #1030 Code Climate config with ESLint and duplication @larkinscott
v0.2.6
Update notes: None
Changes:
- [ENHANCEMENT] #1010 Better support for nested addons @samselikoff
- [ENHANCEMENT] #998 Adapting to use lodash 4 using latest ember-lodash @eturino
- [ENHANCEMENT] #1008 Upgrade to Ember CLI 2.9 @cibernox
- [ENHANCEMENT] #995 Invoke _getAttrsForRequest with correct model name @bwbuchanan
- General improvements @Azdaroth
v0.3.0-beta.5
v0.3.0-beta.5
v0.2.5
Update notes: None
Changes:
- [FEATURE] #880 Add association helper @Azdaroth
- [FEATURE] #948 Add length to collections @mfazekas
- [FEATURE] #957 Add slice method to collections @alexparker
- [ENHANCEMENT] #796 improve
normalizedRequestAttrs
helper @jbailey4 - [ENHANCEMENT] #928 add a default passthrough @anulman
- [ENHANCEMENT] #987 Added falsy condition to exclude faker.js & pretender.js in production build @renpinto
- [BUGFIX] #984 Blueprint.prototype.insertIntoFile is async @stefanpennar
- [BUGFIX] #905 Serialize on key instead of modelName @jessedijkstra
- [BUGFIX] #950 fix JSON:API includes @deepflame
- General improvements @jessedijkstra @bantic @alecho @alexparker @mfazekas @Azdaroth