Skip to content

Releases: rokka-io/rokka.js

0.26.0

10 May 15:26
Compare
Choose a tag to compare
  • added deletePrevious to removeDynamicMetadata (#34)

0.25.0

10 May 12:36
Compare
Choose a tag to compare
  • 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

10 May 08:40
Compare
Choose a tag to compare
  • Allow to pass stack options when creating a stack (#31)

0.23.0

03 May 08:52
Compare
Choose a tag to compare
  • Add autorotate operation (#30)

0.22.0

02 May 11:27
Compare
Choose a tag to compare
  • Add /stackoptions API (rokka.stackoptions.get()) (#29)
  • Add more functions to rokka.operations for stack operations (#29)

0.21.0

28 Apr 08:32
Compare
Choose a tag to compare
  • Add tests (#21)
  • Update user.create() to support an optional organization name (#28)

0.20.0

14 Mar 15:53
Compare
Choose a tag to compare

Add stats API (#15)

0.19.0

07 Mar 16:16
Compare
Choose a tag to compare

Add support for setSubjectArea() and removeSubjectArea() (#19)

0.18.1

06 Mar 16:18
Compare
Choose a tag to compare

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

06 Mar 15:34
Compare
Choose a tag to compare

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) });