Releases: kolodny/immutability-helper
Releases · kolodny/immutability-helper
v3.1.1
3.0.2
V3.0.1
v3.0.0
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
Contextclass.- Deprecated: stop using
const myUpdate = newContext().updateand start usingconst myContext = new Context(); myContext.update(...).
- Deprecated: stop using
- Deprecated: stop using
update.extendand start usingimport { extend } from 'immutability-helper'orconst { extend } = new Context().
v2.9.1
v2.9.0
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
Contextclass.- Deprecated: stop using
const myUpdate = newContext().updateand start usingconst myContext = new Context(); myContext.update(...).
- Deprecated: stop using
- Deprecated: stop using
update.extendand start usingimport { extend } from 'immutability-helper'orconst { extend } = new Context().
v2.8.1
v2.8.0
- Use conditional types to make types significantly safer and more robust
Huge thanks to @seansfkelley and @andreiglingeanu!