Changelog
v15.0.0 (2023-06-20)
Breaking Changes
Internal Changes
ChromeUtils
module importsChangelog
v14.0.2 (2020-12-10)
You can now import the following from the module:
Collection
: The class representing a Kinto collectionCollectionSyncOptions
: The options provided to the Collection.sync
methodConflict
: The API response representing a conflict that occurs during a sync operationChangelog
v14.0.1 (2020-12-04)
This version exports some types and useful utilities designed to make the adapter development experience a bit easier. You can now import the following from the module:
KintoBase
: The base class from which all Kinto instances are derivedBaseAdapter
: The base class from which all storage adapters are derivedAbstractBaseAdapter
: An abstract class used during development to trigger warnings on unimplemented methodsgetDeepKey
: A function to get deeply-nested object properties using dot notation (key1.key2.key3
)StorageProxy
: A TypeScript type describing the methods required for storage proxiesRecordStatus
: A TypeScript type representing the various states of the _status
property on recordsKintoBaseOptions
: A TypeScript type representing the configuration options of the KintoBase
classChangelog
v14.0.0 (2020-06-18)
This version is the first version to ship with our official TypeScript types! If you run into any issues using the library in your TypeScript project, please open an issue.
Breaking changes
events
option for Kinto
optional. You'll now need to bring your own emitter if you want to subscribe to events (which is not necessary for the vast majority of functionality). We suggest mitt, but anything that conforms to the EventEmitter
interface will do.Bug fixes
global.process
, which only exists in Node environments. (#1352)Changelog
v13.0.0 (2020-05-09)
This release is the culmination of almost ten months of work to migrate kinto-http.js and kinto.js to TypeScript! In the process, we've modernized the build system for both libraries. For more information on what this means for you, checkout the migration guide.
Breaking changes
Internal changes
Changelog
v12.7.0 (2019-08-28)