Releases: adopted-ember-addons/ember-data-factory-guy
Releases · adopted-ember-addons/ember-data-factory-guy
v2.9.3
v2.9.2
v2.9.1
- Fixed FG not being included in build in development where it is needed when running tests in browser
v2.9.0
v2.8.2
Allow factory guy to be used in the environment of your choice #255
Example:
// file: config/environment.js
if (environment === 'development') {
ENV.factoryGuy = true;
ENV.locationType = 'auto';
ENV.rootURL = '/';
}
or
if (environment === 'production') {
ENV.factoryGuy = true;
ENV.locationType = 'auto';
ENV.rootURL = '/';
}
```
v2.8.1
v2.8.0
- bumped ember-data and friends to 2.8
- bumped mockjax version to 2.2.1
- To get the new mockjax version you have to remove ember-data-factory-guy from package.json and then:
ember install ember-data-factory-guy
- To get the new mockjax version you have to remove ember-data-factory-guy from package.json and then:
v2.7.10
v2.7.9
- added mockFindRecord to proxy methods in Scenario class ( since mockFind is deprecated )