3.2.0 / 2015-07-19
This release fixes a bug with the previous additions in 3.1.0
. assert.frozen
/expect().to.be.frozen
/.should.be.frozen
all accidentally called Object.isSealed()
instead. Now they correctly call Object.isFrozen()
.
If you're using these features, please upgrade immediately.
It also adds aliases for a lot of assert
methods:
- expect/should..respondTo: respondsTo
- expect/should..satisfy: satisfies
- assert.ok: assert.isOk
- assert.notOk: assert.isNotOk
- assert.extensible: assert.isExtensible
- assert.notExtensible: assert.isNotExtensible
- assert.sealed: assert.isSealed
- assert.notSealed: assert.isNotSealed
- assert.frozen: assert.isFrozen
- assert.notFrozen: assert.isNotFrozen
Community Contributions
Code Features & Fixes
- #482 Re-encrypt travis API key
By @keithamus - #482 Add respondsTo and satisfies as aliases
By @couchand - #485 Fixing a typo in the
getProperties()
utility
By @jluchiji - #486 Added links to contribution guidelines to README
By @jluchiji - #489 Various work on aliases
By @astorije - #490 Fix wrong call to the underlying method when checking if an object is frozen
By @astorije