Immer v7.0.0 Release Notes

Release Date: 2020-06-10 // almost 4 years ago
  • 7.0.0 (2020-06-10)

    ๐Ÿ–จ Introduced current, which takes a snapshot of the current state of a draft and finalizes it (but without freezing). Current is a great utility to print the current state during debugging (no Proxies in the way), and the output of current can also be safely leaked outside the producer. Implements #441, #591

    ๐Ÿ›  [BREAKING CHANGE] getters and setters are now handled consistently: own getters and setters will always by copied into fields (like Object.assign does), inherited getters and setters will be left as-is. This should allow using Immer directly on objects that trap their fields, like done in Vue or MobX. Fixes #584, #439, #593, #558

    [BREAKING CHANGE] produce no longer accepts non-draftable objects as first argument

    ๐Ÿ›  [BREAKING CHANGE] original can only be called on drafts and will throw otherwise (fixes #605)

    [BREAKING CHANGE] non-enumerable and symbolic fields will never be frozen

    ๐Ÿ›  [BREAKING CHANGE] the patches for arrays are now computed differently to fix some scenarios in which they were incorrect. In some cases they will be more optimal now, in other cases less. Especially splicing / unshifting items into an existing array might result in a lot of patches. Fixes #468

    ๐Ÿ‘Œ Improved documentation in several areas, there is now a page for typical update patterns and a separate page on how to work with classes. And additional performance tips have been included. Fixes #457, #115, #462

    ๐Ÿ›  Fixed #462: All branches of the produced state should be frozen

    ๐Ÿ›  Fixed #588: Inconsistent behavior with nested produce

    ๐Ÿ›  Fixed #577: Immer might not work with polyfilled symbols

    ๐Ÿ›  Fixed #514, #609: Explicitly calling useProxies(false) shouldnโ€™t check for the presence of Proxy.