This repository was archived by the owner on Dec 14, 2023. It is now read-only.
Releases: prismicio/javascript-kit
Releases · prismicio/javascript-kit
1.0.30
1.0.28
Breaking change
- Document.linkDocument is no a function, as we calculate the linked document from the content. It is important to migrate to this version as in the future, linkedDocument will no longer be exposed in the API (and older kits will no longer work).
1.0.26
1.0.25
1.0.24
1.0.23
1.0.22
Breaking change
- The Cache API is now asynchronous, if you have your own cache implementation you need to port it
New features
- The http client will now limit the number of request to 20/seconds. Please keep it this way, as the server may drop requests if too many concurrent requests are made.
Bug fixes
- Fixes in the cache system
1.0.21
Breaking change
- Group document are no longer just a dictionary, but instances of the
GroupDoc
class. They are no longer accessed bymygroup['fragmentname']
but withmygroup.get('fragmentname')
ormygroup.getText('fragmentname')
New features
- [#61]
getText
,getColor
, etc. helpers on Group documents