Skip to content

Releases: petkaantonov/bluebird

v1.2.1

06 Jan 15:25
Compare
Choose a tag to compare

Bugfixes:

v1.2.0

06 Jan 15:25
Compare
Choose a tag to compare

Features:

Bugfixes:

v1.1.1

06 Jan 15:25
Compare
Choose a tag to compare

Bugfixes:

v1.1.0

06 Jan 15:25
Compare
Choose a tag to compare

Features:

Bugfixes:

  • Fix already rejected promises being reported as unhandled when handled through collection methods
  • Fix browserisfy crashing from checking process.version.indexOf

v1.0.8

06 Jan 15:25
Compare
Choose a tag to compare

Bugfixes:

  • Fix active domain being lost across asynchronous boundaries in Node.JS 10.xx

v1.0.7

06 Jan 15:25
Compare
Choose a tag to compare

Bugfixes:

  • Fix handled errors being reported

v1.0.6

06 Jan 15:25
Compare
Choose a tag to compare

Bugfixes:

  • Fix bug with unhandled rejections not being reported
    when using Promise.try or Promise.method without
    attaching further handlers

v1.0.5

06 Jan 15:25
Compare
Choose a tag to compare

Features:

  • Node.js performance: promisified functions try to check amount of passed arguments in most optimal order
  • Node.js promisified functions will have same .length as the original function minus one (for the callback parameter)

v1.0.4

06 Jan 15:25
Compare
Choose a tag to compare

Features:

  • Possibly unhandled rejection handler will always get a stack trace, even if the rejection or thrown error was not an error
  • Unhandled rejections are tracked per promise, not per error. So if you create multiple branches from a single ancestor and that ancestor gets rejected, each branch with no error handler with the end will cause a possibly unhandled rejection handler invocation

Bugfixes:

  • Fix unhandled non-writable objects or primitives not reported by possibly unhandled rejection handler

v1.0.3

06 Jan 15:25
Compare
Choose a tag to compare

Bugfixes: