Socket
Socket
Sign inDemoInstall

ember-data

Package Overview
Dependencies
Maintainers
0
Versions
738
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ember-data - npm Package Versions

1
74

2.1.0-beta.1

Diff

bmac
published 1.13.10 •

Changelog

Source

Release 1.13.10 (August 20, 2015)

  • #3577 Use the correct modelClass and serializer to extract a polymorphic
  • #3667 Don’t crash \w Ember 2.0
bmac
published 2.0.0 •

Changelog

Source

Release 2.0.0 (August 20, 2015)

Breaking Changes
Unsaved deleted records are no longer removed from hasMany relationships and RecordArrays returned by the store

In Ember Data 1.13 once a record was marked as deleted it was removed from all of the RecordArrays and hasMany arrays it belongTo. This made it difficult to create UIs where a user could flag a record for deletion but still allow the user the ability to un-flag the record until the save request was made.

In Ember Data 2.0 a record will no longer be removed from hasMany relationships or RecordArrays until the delete has been acknowledged by the adapter. Although deleted records will be visible in hasMany relationships they will not be serialized when saving these relationships to the backend.

Changes
  • #3665 [BUGFIX beta] Fix usage of registry for 2.1.0+.
  • #3577 Use the correct modelClass and serializer to extract a polymorphic ty…
  • #3669 [DOC beta] Changed references to App.Person & App.Post in RESTAdapter API docs
  • #3636 Add ember-cli-dependency-checker.
  • #3670 [DOC beta] Change to decorator-style CPs in RESTAdapter API doc samples
  • #3651 [DOC release] Update changelog for 1.13.9
  • #3653 [BUGFIX beta] Update the dependencies for Ember 2.0
  • #3654 Revert the live filterBy changes in Ember Data beta.1
  • #3656 Update the changelog for 2.0.0-beta.2
  • #3661 [DOC beta] Changed @default adapter from RESTAdapter to JSONAPIAdapter
  • #3666 [BUGFIX beta] Initializer/Instance Initializer Deprecations.
  • #3672 [DOC beta] Changed remaining CPs to decorator-style in RESTAdapter apidocs sample
  • #3680 [BUGFIX beta] Prefer the new injection methods.
  • #3681 [BUGFIX beta] Update required methods for the Serializer class
  • #3651 [DOC release] Update changelog for 1.13.9
  • #3653 [BUGFIX beta] Update the dependencies for Ember 2.0
  • #3654 Revert the live filterBy changes in Ember Data beta.1
  • #3375 JSONAPISerializer only supports the new Serializer API
  • #3251 Convert unload test to json api format for store.push.. #3223
  • #3345 [CLEANUP] drop IE8 support
  • #3487 Default to using the JSONAPIAdapter
  • #3389 Re-enable beta and canary tests
  • #3383 update ember-inflector to 1.6.2
  • #3384 Assert if the RESTSerializers when using the new format calls another
  • #3379 store.push should support arrays in the JSONAPI data property
  • #3388 Have looked up ActiveModelSerializer opt into the new Serializer API
  • #3489 Remove deprecated code from the Ember Data initializer
  • #3396 make sure deprecate error doesnt get swallowed when using store.push(type, data)
  • #3392 AMS modelNameFromPayloadKey and serializePolymorphicType cleanup
  • #3394 [DOC] Deprecate store.pushMany in documentation
  • #3408 Fix Typos in Documentation for DS.Adapter
  • #3433 Fix deprecation warnings
  • #3430 [CLEANUP beta] Remove old Serializer API
  • #3432 [CLEANUP beta] Use Object.keys/Object.create instead of Ember.keys/Ember.create
  • #3420 [CLEANUP] Remove ember-new-computed dependency
  • #3410 Fix minor typo in deprecation warning
  • #3488 Relationships are async by default in 2.0
  • #3462 Fix documentation typos in Adapter
  • #3441 [CLEANUP beta] Remove ManyArray deprecations
  • #3440 [CLEANUP beta] Remove RESTSerializer deprecations
  • #3439 [CLEANUP beta] Remove RESTAdapter deprecations
  • #3438 [CLEANUP beta] Remove BuildURLMixin deprecations
  • #3442 [CLEANUP beta] Remove Model deprecations
  • #3443 [CLEANUP beta] Remove Snapshot deprecations
  • #3436 Fix Ember Data build with fresh install
  • #3457 [CLEANUP beta] Remove ActiveModelAdapter/Serializer
  • #3458 [DOC] createRecord relationships close #3421
  • #3490 Remove deprecated finder methods on the store.
  • #3469 Update shouldReload* flags for 2.0
  • #3470 Fix broken link
  • #3473 [DOC] Fill @property of DS.Model.modelName
  • #3481 update errors.js docs to mirror new json api error specs
  • #3477 Add modelClass argument to JSONSerializer.extractId
  • #3539 Only remove deleted records form record arrays when saved
  • #3496 Update README.md
  • #3497 Use detail instead of details for JSON API error objects
  • #3532 [CLEANUP beta] Remove Store deprecations
  • #3550 Fix JSONSerializer to pass through payload.included
  • #3534 Rename error attribute
  • #3544 Add error message in _pushInternalMessage when unknown type
  • #3531 Adds some documentation for JSONApiSerializer
  • #3533 [CLEANUP beta] Remove console.log() call
  • #3567 Use Ember.$ instead of jQuery for AJAX requests
  • #3570 Update Ember.deprecate and Ember.warn calls to include required information
bmac
published 2.0.0-beta.2 •

bmac
published 1.13.9 •

Changelog

Source

Release 1.13.9 (August 13, 2015)

Breaking Changes

The live updating filterBy on RecordArrays and ManyArrays has been reverted because it broke existing applications. See #3263.

Changes
  • #3633 Fixed typo.
  • #3639 Remove todo in API doc
  • #3648 Revert filter by
  • #3623 [BUGFIX release] Update ember-inflector to 1.9.0 (This commit was included in 1.13.8 but 1.13.8 was built with an old ember-inflector dependency by mistake.)
bmac
published 2.0.0-beta.1 •

bmac
published 1.13.8 •

Changelog

Source

Release 1.13.8 (August 5, 2015)

  • #3608 [BUGFIX release] Validate JSON API docs returned by normalizeResponse
  • #3591 DS.Store#findQuery overrides DS.Store#query docs
  • #3263 Add RecordArray#filterBy which contains a live, filtered subset
  • #3593 Update bin/changelog with customizations for Ember Data
  • #3601 [DOC release] Fix missing docs due to /* instead of /**
  • #3610 [BUGFIX release] Add missing urlForFindQueryRecord to BuildUrlMixin
  • #3615 [DOC release] Update misleading example for Adapter.queryRecord()
  • #3619 [DOC release] fix urlForFindRecord documentation
  • #3622 Fix failing tests from merging PR #3263
  • #3623 [BUGFIX release] Update ember-inflector to 1.9.0
  • #3624 Implement filterBy on DS.ManyArray
bmac
published 1.13.7 •

Changelog

Source

Release 1.13.7 (July 27, 2015)

  • #3554 Add queryRecord method to the RESTAdapter
  • #3553 Reversed args in Ember.Observer
  • #3531 Adds some documentation for JSONApiSerializer
  • #3555 [BUGFIX release] Transition to loaded.saved state after rollback
  • #3558 [BUGFIX release] Follow JSON-API error object spec
  • #3560 Deprecate error property
  • #3562 remove babel warnings around parameters
  • #3563 [DOC release] Adding documentation for SnapshotRecordArray
  • #3571 [DOC release] Update README examples
  • #3575 [BUGFIX release] Update Ember.deprecate and Ember.warn calls to include required information
  • #3582 [BUGFIX release] Fix unconsistent behavior in Model.changedAttributes
  • #3590 Update bin/changelog to deal with cherry-picked commits
fivetanley
published 1.13.6 •

Changelog

Source

Release 1.13.6 (July 21, 2015)

  • #3564 [BUGFIX release] backport ActiveModelAdapter changes @fivetanley
  • #3569 [BUGFIX release] squash normalizePayload deprecations @fivetanley
  • [BUGFIX release] fix some code for IE8 compat in ActiveModelSerializer
  • #3544[BUGFIX release] Add error message in _pushInternalMessage when unknown type @serabe
  • #3550[BUGFIX release] JSONSerializer pass through payload.included@tstirrat
  • #3534[DOC release] Rename error to adapterError @tchak
  • #3550[BUGFIX release] JSONSerializer pass through payload.included @tstirrat
bmac
published 1.13.5 •

Changelog

Source

Release 1.13.5 (July 8, 2015)

  • #3437 Deprecate normalizePayload and normalizeHash @wecc
  • #3478 Fix Ember Data build with fresh install @sly7-7
  • #3475 [BUGFIX release] Remove deprecation warning for dev, keep IE 8 compat @sly7-7
  • #3452 [BUGFIX release] handle case where linked relationship data is null @pangratz
  • #3458 [DOC] createRecord relationships close #3421 @givanse
  • #3460 [BUGFIX release] Do not register the service store when it has already been registered @loadimpact
  • #3462 Fix documentation typos in Adapter @sutherland
  • #3473 [DOC] Fill @property of DS.Model.modelName @XrXr
  • #3479 [DOC release] Fix typo in JSONSerializer.extractAttributes docs @pdud
  • #3482 [BUGFIX release] Update the version of ember-new-computed to fix an E… @bmac
  • #3481 update errors.js docs to mirror new json api error specs @philipp-spiess
  • #3497 Use detail instead of details for JSON API error objects @sebastianseilund
  • #3503 [DOC release] Fix documentation for DS.InternalModel#_changedKeys() @hibariya
  • #3505 [BUGFIX release] Do not assume the serializer is an Ember object. @bmac
  • #3511 Assert serializers are using the same API @wecc
  • #3468 [BUGFIX release] shouldReloadRecord and shouldBackgroundReloadRecord … @bmac
  • #3513 [BUGFIX release] Always look up the serializer using store.serializerFor @bmac
  • #3477 Add modelClass argument to JSONSerializer.extractId @pdud
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc