Skip to content

Releases: miragejs/ember-cli-mirage

v0.0.16

13 Feb 22:33
Compare
Choose a tag to compare

Update notes: None.

Changes:

  • actually fix bower package version of inflector

v0.0.15

13 Feb 22:15
Compare
Choose a tag to compare

Update notes: None.

Changes:

  • fix bower package version of inflector

v0.0.14

12 Feb 20:09
Compare
Choose a tag to compare

Update notes: None.

Changes:

  • clean up [string].pluralize calls

v0.0.13

12 Feb 19:49
Compare
Choose a tag to compare

Update notes:

  • Run bower install. This brings along ember-inflector as a separate package.

Changes:

  • [breaking change] If you happen to be using store.find(type) to return a collection, use store.findAll(type) instead
  • [breaking change] If you happen to be using store.find(type, query) to return a query, use store.findQuery(type, query) instead
  • Various updates/refactorings to store
  • Don't log server responses during testing
  • Use standalone ember-inflector package, no more dependency on ember data

v0.0.12

12 Feb 20:10
Compare
Choose a tag to compare

Update notes:

  • Before, the following was part of the install:

    Testing

    In your tests/helpers/start-app.js,

    import pretenderifyTesting from '../../ember-pretenderify/testing';
    
    export default function startApp(attrs) {
      ...
    
      pretenderifyTesting.setup(application);
    
      return application;
    }

    You no longer need this code, so just delete it all from the start-app file. The server will automatically instantiate via the initializer during tests.

Changes:

  • fixed bug with stub#delete (so it works more than once. hah.)
  • instantiate server in initializer