immutability-helper v3.0.0 Release Notes
Release Date: 2019-01-24 // over 3 years ago-
๐ 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 usingconst myContext = new Context(); myContext.update(...)
.
- Deprecated: stop using
- ๐ Deprecated: stop using
update.extend
and start usingimport { extend } from 'immutability-helper'
orconst { extend } = new Context()
.