Releases: js-data/js-data
Releases · js-data/js-data
3.0.2
14 Feb 04:42
Compare
Sorry, something went wrong.
No results found
3.0.2 - 13 February 2018
Bug fixes
2.10.1
14 Feb 04:44
Compare
Sorry, something went wrong.
No results found
2.10.1 - 13 February 2018
Bug fixes
#492 - Fixed bug where pending queries were used even when pending queries were set to disabled. Thanks @eldridge
3.0.1
18 Aug 15:33
Compare
Sorry, something went wrong.
No results found
3.0.1 - 18 August 2017
Backwards compatible changes
Exposed the makeDescriptor method on the Schema class.
Bug fixes
Fixes some missing definitions in dist/js-data.d.ts.
Other
3.0.0
18 Aug 07:33
Compare
Sorry, something went wrong.
No results found
3.0.0 - 01 July 2017
v3 Stable Release
Bug fixes
3.0.0-rc.9
22 Feb 20:36
Compare
Sorry, something went wrong.
No results found
3.0.0-rc.9 - 22 February 2017
Bug fixes
Schema#pick no longer incorrectly infers values for objects and arrays
3.0.0-rc.8
21 Feb 20:15
Compare
Sorry, something went wrong.
No results found
3.0.0-rc.8 - 21 February 2017
Breaking changes
#445
The strict option has been removed from the toJSON methods. The methods now rely wholly on Schema#pick for strictness, and assumes the original strict: false behavior if no schema is defined.
Schema#pick now copies properties not defined in the "properties" keyword if the "additionalProperties" keyword is present and truthy.
Mappers are no longer given an empty schema if no schema is provided
Bug fixes
3.0.0-rc.7
30 Jan 04:32
Compare
Sorry, something went wrong.
No results found
3.0.0-rc.7 - 29 January 2017
Bug fixes
#433 - Collection#add is missing a "silent" option
Backwards compatible changes
Added a emitRecordEvents option to Collection which defaults to true
Other
Moved Babel config from package.json to .babelrc
Upgraded devDependencies
Added a yarn.lock file
3.0.0-rc.6 - 05 October 2016
Bug fixes
Wrapped lifecycle hook validation error in an instance of Error
3.0.0-rc.5
27 Sep 03:58
Compare
Sorry, something went wrong.
No results found
3.0.0-rc.5 - 26 September 2016
Backwards compatible changes
Fixed some edge cases with Schemas related to anyOf, oneOf, allOf, and additionalProperties
#386 - Added intermediate SimpleStore class between Container and DataStore.
#393 - Added Schema#pick method
Bug fixes
#374 - revert() after a save() does not work with Schema defined properties
#387 - Switch to passing only the current-change in 'changes' emit by @pik
Other
#406 - refactor(test): splits tests into smaller ones by @stalniy
2.10.0
22 Sep 16:18
Compare
Sorry, something went wrong.
No results found
2.10.0 - 22 September 2016
Backwards compatible changes
#324 - Added applyDefaultsOnInject option, which defaults to false
#364 - Added usePendingFind and usePendingFindAll options, which both default to true
Bug fixes
#316 - Merge/Replace inject does not reevaluate computed properties
#324 - Inconsistent defaultValues behavior.
#364 - Resource.pendingQueries on server causes unexpected behaviour
#373 - DS.clear() extremely slow
#407 - DSUtils.copy blacklist applies to nested fields
3.0.0-rc.4
04 Aug 04:04
Compare
Sorry, something went wrong.
No results found
3.0.0-rc.4 - 03 August 2016
Bug fixes
#376 - Fix unlinking of records
#379 fixes #380 - fix(hasOne): do not create links for undefined or null keys by @nickescallon
#382 fixes #381 - check that inverseDef exists before attempting to setup Inverse for belongsTo by @pik
#384 - DataStore does not correctly call super