Socket
Socket
Sign inDemoInstall

ember-data

Package Overview
Dependencies
Maintainers
3
Versions
741
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ember-data - npm Package Versions

1
7274

1.13.6

Diff

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
bmac
published 1.13.4 •

Changelog

Source

Release 1.13.4 (June 22, 2015)

  • #3398 [REGRESSION release] Make meta available with new Serializer API @wecc
  • #3400 [BUGFIX release] Correctly serialize type for hasMany relationships @wecc
  • #3408 Fix Typos in Documentation for DS.Adapter @heathharrelson
  • #3409 [BUGFIX release] JSONAPISerializer missing pushPayload @wecc
  • #3410 Fix minor typo in deprecation warning @Dhaulagiri
  • #3413 [BUGFIX release] Sideloaded records are not pushed when saving @wecc
  • #3397 [BUGFIX release] Use typeOf instead of isArray in _normalizeSerializerPayload @wecc
  • #3396 make sure deprecate error doesnt get swallowed when using store.push(type, data) @jcope2013
  • #3411 Remove some usages of enumerable utils that made it into the release branch @bmac
bmac
published 1.13.3 •

Changelog

Source

Release 1.13.3 (June 19, 2015)

  • #3375 JSONAPISerializer only supports the new Serializer API @wecc
  • #3379 store.push should support arrays in the JSONAPI data property @bmac
  • #3384 Assert if the RESTSerializers when using the new format calls another @bmac
  • #3388 Have looked up ActiveModelSerializer opt into the new Serializer API @wecc
fivetanley
published 1.13.2 •

Changelog

Source

Release 1.13.2 (June 18, 2015)

fivetanley
published 1.13.1 •

Changelog

Source

Release 1.13.1 (June 17, 2015)

fivetanley
published 1.13.0 •

bmac
published 1.0.0-beta.19.2 •

Changelog

Source

Release 1.0.0-beta.19.2 (June 12, 2015)

  • Fix a regression with Ember CLI users who have defined a custom store in app/store.js - https://github.com/emberjs/data/pull/3316
  • Fix a regression where currentState was not defined on a record until the record a state change occured. https://github.com/emberjs/data/pull/3311
fivetanley
published 1.0.0-beta.19.1 •

Changelog

Source

Release 1.0.0-beta.19.1 (June 9, 2015)

  • Fix a regression where a DS.Model's InternalModel would not be set on init - @bmac https://github.com/emberjs/data/pull/3262
  • Pass store to inverseFor in removeEmbeddedForeignKey #3270 - @wecc https://github.com/emberjs/data/pull/3270
fivetanley
published 1.0.0-beta.19 •

Changelog

Source

Release 1.0.0-beta.19 (June 5, 2015)

Breaking Changes
Store Service moved to an Instance Initializer

In order to fix deprecations warning induced by Ember 1.12, the store service is now injected as an instanceInitializer. As a consequence, if you had initializers depending on the store, you should move them to an instance initializer as well, and mark it as after: 'ember-data'.

  • Removed support for DS.FixtureAdapter. You can use it as an addon, or build it using Ember Giftwrap. https://github.com/emberjs/ember-data-fixture-adapter/tree/master
  • Removed support for passing factories to store methods. An example would be store.find(App.Post, '1'). Use the string form instead: post instead of App.Post. You can also use this Ember Watson command
  • #3074 remove passing factories to store methods @fivetanley
  • #3083 A new record which is marked as invalid can be rollbacked @pangratz
  • #3102 Updated copyright year @perlun
  • #3091 deprecate support for DS.FixtureAdapter @emberjs
  • #3097 fix bower publishing @emberjs
  • #3094 Lazily materialize DS.Models for app code, use InternalModel inside ED otherwise @emberjs
  • #3119 maxUrlLength -> maxURLLength @sly7-7
  • #3110 Cleanup unused 'materialize' records in model @tonywok
  • #3182 initialize lives on the application instance not the Ember namespace @bmac
  • #3126 Guard for embedded unknown hasMany relationship @wecc
  • #3133 Create snapshots on save not on flush @tchak
  • #3136 Lookup the store using store:application instead of store:main @bmac
  • #3139 Extend adapter instead of reopening it @BookingSync
  • #3138 Custom primaryKey for embedded polymorphic relations work @pangratz
  • #3174 Adjust code samples to ember-cli @Turbo87
  • #3148 add Snapshot#serialize method @yratanov/feature
  • #3170 Ensure snapshot.belongsTo() and hasMany() do not return deleted records @ianstarz
  • #3156 Remove deprecated push record @sly7-7
  • #3169 rename add/removeRecord to add/removeInternalModel in record array @sly7-7
  • #3183 fix belongs-to when set with a resolved promise @sly7-7
  • #3195 Update comment to make its intention clearer @bmac
  • #3191 refactor store managed instances @fivetanley
  • #3203 Use string model names in debug adapter @teddyzeenny
  • #3208 DirtyState.invalid handle pushedData event @bmac
  • #3211 lookup JSONSerializer instance through store instead of manual instan… @emberjs
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