Closed greenkeeper[bot] closed 11 months ago
After pinning to 0.4.7 your tests are still failing. The reported issue might not affect your project. These imprecisions are caused by inconsistent test results.
Your tests are still failing with this version. Compare the changes π¨
The new version differs by 11 commits.
cc42a23
v0.4.9
6d545ad
Merge pull request #1369 from samselikoff/1333-polymorphic-included-bug
4aeec64
Merge pull request #1368 from samselikoff/server-create-allow-empty-arrays
2511566
[fixes #1333] Fix included graph builder logic
f8be509
[fixes #1367] Has manys can take empty arrays
370fa9c
Merge pull request #1366 from samselikoff/204-response-no-payload-body
a302dab
Only add Content-Type to responses with data
e670a63
NPM release can also skip installing
2be5bf6
NPM release can skip tests
6b58622
Actually run versioned tests...
c00fb52
Publish after tests
See the full diff
devDependency
ember-cli-mirage was updated from 0.4.9
to 0.4.10
.Your tests are passing again with this update. Explicitly upgrade to this version π
The new version differs by 35 commits.
69b5371
v0.4.10
7b58640
Fix tests in IE11
91b0634
[closes #1403] Faster noop initializer when excluding Mirage
8678c7a
Update ISSUE_TEMPLATE.md
cd0e55d
Update README.md
0afc574
[closes 1398] Fixes normalizedRequestAttrs header bug
45df936
Update ISSUE_TEMPLATE.md
4606c11
[closes #1384] Adds optional modelName arg to normalizedRequestAttrs (#1406)
557180d
[fixes #1379] Better avoid name collision with model._schema (#1404)
4160008
Use instanceof and overrides to distinguish associations (#1376)
b1dd4ae
bring back integrity keys in yarn.lock
16ace15
nested included relationships - dasherize include param
1b76b39
nested included relationships normalization - failing test
161072a
Update ISSUE_TEMPLATE.md
4e821fd
Update ISSUE_TEMPLATE.md
There are 35 commits in total.
See the full diff
devDependency
ember-cli-mirage was updated from 0.4.10
to 0.4.11
.Your tests are passing again with this update. Explicitly upgrade to this version π
Bug fixes from 0.4.10, and some new deprecations around previously undocumented behavior.
Update notes
Changes
The new version differs by 40 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
69b5371
v0.4.10
7b58640
Fix tests in IE11
91b0634
[closes #1403] Faster noop initializer when excluding Mirage
8678c7a
Update ISSUE_TEMPLATE.md
cd0e55d
Update README.md
0afc574
[closes 1398] Fixes normalizedRequestAttrs header bug
45df936
Update ISSUE_TEMPLATE.md
4606c11
[closes #1384] Adds optional modelName arg to normalizedRequestAttrs (#1406)
557180d
[fixes #1379] Better avoid name collision with model._schema (#1404)
4160008
Use instanceof and overrides to distinguish associations (#1376)
There are 40 commits in total.
See the full diff
devDependency
ember-cli-mirage was updated from 0.4.11
to 0.4.12
.Your tests are passing again with this update. Explicitly upgrade to this version π
Improve automatic response type setting.
Update notes
Changes
The new version differs by 42 commits.
22ffb2a
v0.4.12
4c26ba6
Improve automatic response type setting (#1454)
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
69b5371
v0.4.10
7b58640
Fix tests in IE11
91b0634
[closes #1403] Faster noop initializer when excluding Mirage
8678c7a
Update ISSUE_TEMPLATE.md
cd0e55d
Update README.md
0afc574
[closes 1398] Fixes normalizedRequestAttrs header bug
45df936
Update ISSUE_TEMPLATE.md
4606c11
[closes #1384] Adds optional modelName arg to normalizedRequestAttrs (#1406)
There are 42 commits in total.
See the full diff
devDependency
ember-cli-mirage was updated from 0.4.12
to 0.4.13
.Your tests are still failing with this version. Compare changes
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!
The new version differs by 92 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 92 commits in total.
See the full diff
devDependency
ember-cli-mirage was updated from 0.4.13
to 0.4.14
.Your tests are passing again with this update. Explicitly upgrade to this version π
devDependency
ember-cli-mirage was updated from 0.4.14
to 0.4.15
.Your tests are passing again with this update. Explicitly upgrade to this version π
View all commits: v0.4.14...master
The new version differs by 37 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 37 commits in total.
See the full diff
Version 0.4.8 of ember-cli-mirage was just published.
This version is covered by your current version range and after updating it in your project the build failed.
ember-cli-mirage is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.
Status Details
- β **continuous-integration/travis-ci/push:** The Travis CI build could not complete due to an error ([Details](https://travis-ci.org/bmeurant/ember-array-contains-helper/builds/413758120?utm_source=github_status&utm_medium=notification)). - β **coverage/coveralls:** First build on greenkeeper/ember-cli-mirage-0.4.8 at 96.296% ([Details](https://coveralls.io/builds/18392987)).Release Notes
v0.4.8This release is all about gettingπ squeaky clean, and fixing many outstanding bugs in prep for a v1.0!
There should be no upgrade steps for your apps.
ActiveModelSerializer
andRestSerializer
now defaults toalways
).Drop by #ec-mirage if you have any trouble upgrading!
Commits
The new version differs by 43 commits.
aaf418f
Update package.json
52454c5
Merge pull request #1364 from samselikoff/fix-rest-serializer
829b0eb
Add clearer test around normalizeIds
e6af6a9
Travis can publish
174ea70
Merge pull request #1362 from samselikoff/serialize-top-level-polymorphic-collections
615df90
Serialize top-level polymorphic collections
ed00eb2
DEPENDENCY: updated to broccoli-string-replace (#1361)
e611e4d
Add test apps (#1359)
db07376
Merge pull request #1356 from samselikoff/orm-assertions
68c503e
Add more ORM assertions
2eabc2a
Merge pull request #1354 from samselikoff/1091-self-referential-max-call-stack
4cbd5bf
Throw if using association() helper on a self-referential belongsTo relationship
2b629dd
Merge pull request #1353 from mupkoo/camelize-relationship-names
8a0ef54
Merge pull request #1352 from mupkoo/safe-shutdown
628a717
Merge pull request #1347 from jelhan/fix-remove-outdated-destroy-helper-warning
There are 43 commits in total.
See the full diff
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: