Skip to content

v0.2.0-beta.3

Pre-release
Pre-release

Choose a tag to compare

@samselikoff samselikoff released this 16 Jan 22:59
· 1683 commits to master since this release

Update notes:

  • There was a bug where dasherized multiword serializers and fixtures were not registered correctly. This has been fixed, so if you happen to have camelized multiword serializers or fixtures

    /mirage/serializers/blogPost.js
    /mirage/fixtures/blogPosts.js
    

    you can rename these to dasherized names

    /mirage/serializers/blog-post.js
    /mirage/fixtures/blog-posts.js
    

    In Mirage 0.2, all filenames should be dasherized, following the conventions of Ember CLI. If you ever encounter a situation where this doesn't work, please file an issue, as this is a bug.

Changes:

  • [ENHANCEMENT] Better blueprints
  • [BUGFIX] Ensure multiword dasherized serializers work #333
  • [BUGFIX] Ensure multiword dasherized fixtures work