Skip to content

Releases: adopted-ember-addons/ember-data-factory-guy

v2.9.3

16 Nov 20:22
Compare
Choose a tag to compare

-fixes buildList with self referential parent/child relationship #253

v2.9.2

07 Nov 10:22
Compare
Choose a tag to compare
  • All urlFor methods are now supported #257

v2.9.1

07 Nov 10:21
Compare
Choose a tag to compare
  • Fixed FG not being included in build in development where it is needed when running tests in browser

v2.9.0

04 Nov 18:16
Compare
Choose a tag to compare
  • Bumped ember-data and friends to 2.9.0
  • FG now checks each model for it's serializer type before building json #256 ( thanks @migbar )

v2.8.2

27 Oct 11:22
Compare
Choose a tag to compare

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

20 Oct 10:54
Compare
Choose a tag to compare

fixed issue where setting hash value for attribute in build options was failing #204

v2.8.0

26 Sep 21:03
Compare
Choose a tag to compare
  • 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

v2.7.10

20 Sep 13:52
Compare
Choose a tag to compare

Replace using Array => contains with =>includes ( to support ember 2.8 ) #250

v2.7.9

13 Sep 13:55
Compare
Choose a tag to compare
  • added mockFindRecord to proxy methods in Scenario class ( since mockFind is deprecated )

v2.7.8

11 Sep 16:29
Compare
Choose a tag to compare
  • fixed issue with mockFindRecord with models with attribute named type ( and non polymorphic ) #248
  • fixes issue with loading factories in development build when not using factoryGuy flag in config/environment.js #247