elwayman02 / ember-data-github

Ember Data library for the GitHub API
MIT License
47 stars 38 forks source link

Update ember-cli-mirage to the latest version πŸš€ #209

Closed greenkeeper[bot] closed 5 years ago

greenkeeper[bot] commented 5 years ago

The devDependency ember-cli-mirage was updated from 0.4.1 to 0.4.10.

This version is not covered by your current version range.

If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.


Find out more about this release.

FAQ and help There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those don’t help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).

Your Greenkeeper bot :palm_tree:

greenkeeper[bot] commented 5 years ago

Update to this version instead πŸš€

Release Notes for v0.4.11

Bug fixes from 0.4.10, and some new deprecations around previously undocumented behavior.

Update notes

  • None

Changes

Commits

The new version differs by 5 commits.

  • 64599b6 v0.4.11
  • 8999b24 fix: normalizedRequestAttrs takes a dasherized model name
  • 3d30014 fix: revert 4.10 factory lookup behavior, add warning
  • ab74691 [closes #1370] Fix falsy responses
  • acf8ed0 TravisCI: Remove deprecated sudo: false option

See the full diff

greenkeeper[bot] commented 5 years ago

Update to this version instead πŸš€

Release Notes for 0.4.12

Improve automatic response type setting.

Update notes

  • None

Changes

Commits

The new version differs by 2 commits.

  • 22ffb2a v0.4.12
  • 4c26ba6 Improve automatic response type setting (#1454)

See the full diff

greenkeeper[bot] commented 5 years ago

Update to this version instead πŸš€

Release Notes for v0.4.13

Update notes:

#1466 changed some existing behavior that I expect almost no one to be relying upon, but I could be wrong.

For no particular reason, when we originally coded the Db we had it sort new records by the id field.

This means if you had fixture files like

[
  { id: 2, name: 'Yehuda' },
  { id: 1, name: 'Tom' }
]

they would end up in Mirage's Db as [ { id: 1, name: 'Tom' }, { id: 2, name: 'Yehuda' } ].

We've changed this behavior so records are just added to the Db in the order they were at insertion time.

The only way this could affect your app or tests is if you are doing something like return schema.users.all(), and you're relying on the order of that response, and the source data is unsorted. (In general, if you're relying on an order, it's best practice for your query and/or route handler to specify that sort order with e.g. schema.users.sort((a, b) => b.title < a.title })).

I expect this undocumented behavior to not be something anyone is relying on. Please let me know if I'm wrong!

πŸ“ Documentation

πŸš€ Enhancements

  • #1457 Allow native async functions as route handlers

🏠 Internal

  • #1466 Db doesn't automatically sort records anymore
  • #1456 Upgrade Ember CLI
Commits

The new version differs by 50 commits.

  • 848f5f0 v0.4.13
  • be23f53 docs: clarify default server-side nested includes
  • ffc437c docs: clarify how to override timing in tests
  • 3da8d67 docs: add note for prettier users
  • 044a831 doc: fix app/mirage references
  • 17e30fb doc: update normalizedRequestAttrs
  • 20d9d84 Fix: db doesn't automatically sort new records
  • 603ca7f Update ember-cli-addon-docs
  • 0574fc1 Add simple homepage copy
  • ba2d539 Merge pull request #1460 from carlbennettnz/patch-2
  • e053bdd Set the dummy app's <title> to 'EmberCLI Mirage'
  • 743d67f Remove logs
  • 8a327bc Try different redirect logic
  • c2cbef0 Add redirects to old docs sites
  • 3c6fd35 Empty rootUrl

There are 50 commits in total.

See the full diff

greenkeeper[bot] commented 5 years ago

Update to this version instead πŸš€

Commits

The new version differs by 3 commits.

  • 33049c5 v0.4.14
  • 9ea5105 internal: jsdom is a dev dependency
  • 2be17f6 Add instructions for setting up Application Tests

See the full diff

greenkeeper[bot] commented 5 years ago

Update to this version instead πŸš€

Release Notes for v0.4.15

πŸ› Bugfixes

  • #1481 Omit default Content-Type header for 204 responses
  • #1495 Reflexive relationships can be self-referential

πŸ“ Documentation

  • 833a8aa Explain how to override transitive dependencies
  • 1752f55 fix shorthand link
  • 14da422 Add back in old 3>4 upgrade notes
  • 152f192 Use GitHub issues for blog

πŸš€ Enhancements

  • 0bc26c2 users can override Pretender version using Ember Auto Import (see docs)

🏠 Internal

  • dcab27a Remove Ember Lodash
  • 8cd7ee4 test for app excluding mirage
  • #1496 upgrade addon-docs
  • 0a3e01c use compileMarkdown function from AddonDocs
  • #1506 cleanup test log

View all commits: v0.4.14...master

Commits

The new version differs by 34 commits.

  • bf4ac5a v0.4.15
  • 9996c02 Merge pull request #1518 from samselikoff/dependabot/npm_and_yarn/stringstream-0.0.6
  • d406693 Merge pull request #1516 from samselikoff/dependabot/npm_and_yarn/sshpk-1.16.1
  • ad5bc12 Merge pull request #1515 from samselikoff/dependabot/npm_and_yarn/mixin-deep-1.3.1
  • 437c140 Merge pull request #1513 from samselikoff/dependabot/npm_and_yarn/merge-1.2.1
  • 2139b3a Merge pull request #1511 from samselikoff/dependabot/npm_and_yarn/handlebars-4.1.0
  • eda52f8 Merge pull request #1509 from samselikoff/dependabot/npm_and_yarn/extend-3.0.2
  • f0f897d Merge pull request #1508 from samselikoff/dependabot/npm_and_yarn/atob-2.1.2
  • b97914b build(deps): [security] bump stringstream from 0.0.5 to 0.0.6
  • af0d7f6 build(deps): [security] bump sshpk from 1.13.1 to 1.16.1
  • f3a91fa build(deps): [security] bump mixin-deep from 1.3.0 to 1.3.1
  • efe8582 build(deps): [security] bump merge from 1.2.0 to 1.2.1
  • c654d4e build(deps): [security] bump handlebars from 4.0.11 to 4.1.0
  • 4c762b0 build(deps): [security] bump extend from 3.0.1 to 3.0.2
  • a22c64a build(deps): [security] bump atob from 2.0.3 to 2.1.2

There are 34 commits in total.

See the full diff

greenkeeper[bot] commented 5 years ago

Update to this version instead πŸš€

greenkeeper[bot] commented 5 years ago

Update to this version instead πŸš€