Releases: rokka-io/rokka.js
Releases · rokka-io/rokka.js
0.26.0
- added deletePrevious to removeDynamicMetadata (#34)
0.25.0
- Rename
subjectArea
to subject_area
in URLs (#33)
- Add
sourceimages.deleteWithBinaryHash
(#32)
- Add option to
sourceimages.setSubjectArea
to allow deleting the previous subject area (#32)
0.24.0
- Allow to pass stack options when creating a stack (#31)
0.23.0
- Add autorotate operation (#30)
0.22.0
- Add /stackoptions API (
rokka.stackoptions.get()
) (#29)
- Add more functions to
rokka.operations
for stack operations (#29)
0.21.0
- Add tests (#21)
- Update
user.create()
to support an optional organization name (#28)
0.19.0
Add support for setSubjectArea()
and removeSubjectArea()
(#19)
0.18.1
Fixes a bug introduced in 09bcbad (version 0.18.0) where sourceimages.create()
response parsing was done wrongly because of returning the full response instead of just the body now.
0.18.0 - Warning: BC Break
Version 0.18.0 breaks backwards compatibility with previous versions because the API requests will return now the headers etc. too. Previously only the body has been returned.
How to update your code
// before
rokka.organizations.get('myorg').then(function(result) {
console.log(result);
}).catch(function(err) { console.error(err) });
// after
rokka.organizations.get('myorg').then(function(result) {
console.log(result.body);
}).catch(function(err) { console.error(err) });