Releases: adopted-ember-addons/ember-data-model-fragments
Releases · adopted-ember-addons/ember-data-model-fragments
Release 6.0.0
💥 Breaking Change
- #462 chore: drop node 12 (@knownasilya)
- #417 record-data implementation for ember-data 3.28+ (@dwickern)
🚀 Enhancement
🐛 Bug Fix
- #458 Fix: trigger error on Ember >= 4.x (@wozny1989)
📝 Documentation
- #460 Remove dead link from README.md (@deanmarano)
- #456 Convert README.md examples to native classes (@charlesfries)
🏠 Internal
- #463 Upgrade Ember-CLI (@dwickern)
- #461 chore(deps): bump minimatch from 3.0.4 to 3.1.2 (@dependabot[bot])
- #459 chore(deps): bump minimist from 0.2.1 to 0.2.4 (@dependabot[bot])
Committers: 5
- Adam Woźny (@wozny1989)
- Charles Fries (@charlesfries)
- Dean Marano (@deanmarano)
- Derek Wickern (@dwickern)
- Ilya Radchenko (@knownasilya)
Release 5.0.0
🐛 Bug Fix
- #455 Remove string index from fragment registry (@charlesfries)
Committers: 1
- Charles Fries (@charlesfries)
Release 5.0.0-beta.9
🚀 Enhancement
- #445 chore: fix typescript declarations (@charlesfries)
- #443 chore: add typescript definitions files (@VincentMolinie)
🐛 Bug Fix
🏠 Internal
- #442 Bump terser from 4.8.0 to 4.8.1 (@dependabot[bot])
- #440 Bump shell-quote from 1.7.2 to 1.7.3 (@dependabot[bot])
- #410 Bump y18n from 4.0.0 to 4.0.3 (@dependabot[bot])
- #426 Bump follow-redirects from 1.14.7 to 1.14.8 (@dependabot[bot])
Committers: 3
- Charles Fries (@charlesfries)
- Rich Glazerman (@richgt)
- Vincent Molinié (@VincentMolinie)
Release 5.0.0-beta.8
🐛 Bug Fix
- #439 fix(array): allow resetting an array to null (@VincentMolinie)
- #438 fix(polymorphic): update of type of a polymorphic key works (@VincentMolinie)
🏠 Internal
- #423 Remove assign usage (@charlesfries)
Committers: 2
- Charles Fries (@charlesfries)
- Vincent Molinié (@VincentMolinie)
Release 5.0.0-beta.7
v5.0.0-beta.7 Release 5.0.0-beta.7
Release 5.0.0-beta.6
🐛 Bug Fix
- #432 fix(serializer): fix the deserialization when using a typeKey as a function (@VincentMolinie)
🏠 Internal
- #434 Remove bowerDependencies warning (@charlesfries)
Committers: 2
- Charles Fries (@charlesfries)
- Vincent Molinié (@VincentMolinie)
Release 5.0.0-beta.5
🐛 Bug Fix
- #431 fix(dirty state): prevent record from being tagged as dirty when not changed (@VincentMolinie)
Committers: 1
- Vincent Molinié (@VincentMolinie)
Release 5.0.0-beta.4
🚀 Enhancement
- #430 feat(polymorphism): add the possibility to compute the type based on owner and data (@VincentMolinie)
🐛 Bug Fix
- #428 fix: handle current state not yet set (@VincentMolinie)
🏠 Internal
- #425 Bump mout from 1.2.2 to 1.2.3 (@dependabot[bot])
- #395 Bump elliptic from 6.5.3 to 6.5.4 (@dependabot[bot])
- #424 Add
release-it
to automate releases and add missing entries from CHANGELOG.md (@patocallaghan) - #421 Bump follow-redirects from 1.13.0 to 1.14.7 (@dependabot[bot])
Committers: 2
- Pat O'Callaghan (@patocallaghan)
- Vincent Molinié (@VincentMolinie)
v5.0.0-beta.3
What's Changed
- 🐛 Bugfix: Pass arguments to
super.commitWasRejected
to get backDS.Errors
by @enspandi in #412 - 🐛 Bugfix: modelName undefined when serializing fragment and fragment array by @knownasilya in #407
- 🐛 Bugfix: Fix serialization in ember 3.28 by @VincentMolinie in #414
- 🐛 Bugfix: Fix fragment attributes in save response being ignored by @dwickern in #404
- 🏠 Do not fail CI on Ember release by @patocallaghan in #419
- 💥 Breaking fix: respect null on server updates by @ro0gr in #415
- 🐛 Bugfix: Make sure we can update fragments/fragment arrays after they are initially set to null by @patocallaghan in #384
Full Changelog: v5.0.0-beta.2...v5.0.0-beta.3
Breaking change
Before v5.0.0-beta.3, when setting a fragment array property to null
from a server response, it wouldn't nullify the attribute. Instead, the fragment array instance just became empty with no items inside. Now updating the fragment array to null
works correctly and is consistent with fragments behaviour. For more details see #415.
v5.0.0-beta.2
#397 fix: use send('loadedData') instead of loadedData method (@runspired)