Skip to content

Releases: kolodny/immutability-helper

v3.1.1

01 Jun 01:08
Compare
Choose a tag to compare
  • Remove all dependancies
  • Support complex specs inside of Maps in TypeScript (Thanks @colekurk !)

3.0.2

30 Mar 22:01
Compare
Choose a tag to compare

Fixed issue with Readonly values pushed onto a readonly array. See #154 for more details

V3.0.1

13 Jun 02:03
Compare
Choose a tag to compare
  • Added support for $set in Map

v3.0.0

24 Jan 01:39
Compare
Choose a tag to compare

Rerelease of v2.9.0 since this release is not backwards compatible with typescript v2.x

These were the release notes for v2.9.0:

Huge thanks to @jedmao for converting the library to typescript!

  • New: TypeScript definitions are now generated from TypeScript source. meaning they will always be 100% in sync w/ the source code.
  • New: exported Context class.
    • Deprecated: stop using const myUpdate = newContext().update and start using const myContext = new Context(); myContext.update(...).
  • Deprecated: stop using update.extend and start using import { extend } from 'immutability-helper' or const { extend } = new Context().

v2.9.1

24 Jan 01:37
Compare
Choose a tag to compare

Revert release to match 2.8.x since upgrading this release is not backwards compatible with typescript v2.x

v2.9.0

12 Dec 01:47
Compare
Choose a tag to compare

2.9.0

Huge thanks to @jedmao for converting the library to typescript!

  • New: TypeScript definitions are now generated from TypeScript source. meaning they will always be 100% in sync w/ the source code.
  • New: exported Context class.
    • Deprecated: stop using const myUpdate = newContext().update and start using const myContext = new Context(); myContext.update(...).
  • Deprecated: stop using update.extend and start using import { extend } from 'immutability-helper' or const { extend } = new Context().

v2.8.1

16 Sep 16:53
Compare
Choose a tag to compare

Fixed a bad ts definition for push and unshift. Thanks @dogan-acuris and @pawsong!

v2.8.0

13 Sep 02:41
Compare
Choose a tag to compare

v2.7.2

20 Jul 18:54
Compare
Choose a tag to compare

Preserve reference equality for values in Maps - Thanks @rogernorling

v2.7.1

20 Jul 18:53
Compare
Choose a tag to compare
  • Support shallow direct apply isEquals and better object prototypes