Releases: kuzzleio/sdk-javascript
Releases · kuzzleio/sdk-javascript
3.1.1
- [hot fix] wrong name webpack output file
3.1.0
- Fix scroll action and next on searchResult #172
- Breaking change: Align notification responses format #147
- Fix security action name for fetching user/profile/role #173
3.0.0
Breaking changes introduce by a complete renaming of Classes and Methods:
Class Names
KuzzleDataCollection
👉 Collection
KuzzleDataMapping
👉 CollectionMapping
KuzzleRole
👉 Role
KuzzleProfile
👉 Profile
KuzzleUser
👉 User
KuzzleRoom
👉 Room
KuzzleMemoryStorage
👉 MemoryStorage
KuzzleSecurity
👉 Security
KuzzleDocument
👉 Document
Methods
dataCollectionFactory
👉 collection
roomFactory
👉 room
dataMappingFactory
👉 collectionMapping
roleFactory
👉 role
profileFactory
👉 profile
userFactory
👉 user
documentFactory
👉 document
getRole
👉 fetchRole
getProfile
👉 fetchProfile
getUser
👉 fetchUser
2.3.0
- Adapt from & size to be part of the query instead of the body #156
- Adapt the SDK to the controller refactor #152
2.2.1
- Remove uses of
Array.findIndex
for compatibility with Internet Explorer 11
- The JWT token is now unset immediatly upon calling
logout
, instead of after Kuzzle responds. This allows unlogging and relogging immediately, without waiting
2.2.0
Fixes
- make subscribe.onDone foolproof #119
- do not logout on kuzzle.disconnect #124
2.1.5
- Fix too many reconnect #122
2.1.4
- Fix
onDone
callbacks being lost when subscribing in a disconnected
state #121
2.1.3
- add
unsetJwtToken()
method to kuzzle
object #118
- add
queryError
event, triggered whenever a Kuzzle API request returns an error #117
2.1.2
host
, ioPort
and wsPort
properties are now writable. New connections can be initiated using different target without having to instanciate a new Kuzzle object #115