Skip to content
This repository has been archived by the owner on Sep 14, 2023. It is now read-only.

Releases: derrickbeining/react-atom

v3.0.9

30 Nov 06:48
Compare
Choose a tag to compare

3.0.9 (2018-11-30)

Bug Fixes

  • fix: useAtom selector lookup id collisions (1a92b6b), closes #30

v3.0.8

28 Nov 05:40
Compare
Choose a tag to compare

3.0.8 (2018-11-28)

Bug Fixes

  • make useAtom options.select return correct val when swapped (31f93b4), closes #27

v3.0.7

26 Nov 20:18
Compare
Choose a tag to compare

3.0.7 (2018-11-26)

v3.0.6

26 Nov 17:08
Compare
Choose a tag to compare

3.0.6 (2018-11-26)

v3.0.5

26 Nov 16:47
Compare
Choose a tag to compare

3.0.5 (2018-11-26)

v3.0.4

25 Nov 19:56
Compare
Choose a tag to compare

3.0.4 (2018-11-25)

Bug Fixes

  • package.json: remove src from published files (37bd204)

v3.0.3

25 Nov 19:06
Compare
Choose a tag to compare

3.0.3 (2018-11-25)

Performance Improvements

v3.0.2

25 Nov 06:12
Compare
Choose a tag to compare

3.0.2 (2018-11-25)

Performance Improvements

  • optimize options.select in useAtom and optimize swap (b0fbfa5), closes #14 #15

v3.0.1

24 Nov 03:37
Compare
Choose a tag to compare

3.0.1 (2018-11-24)

Bug Fixes

  • readme: attempt fix broken npm readme (ef01146)

v3.0.0

24 Nov 02:37
Compare
Choose a tag to compare

3.0.0 (2018-11-24)

Features

  • rename deref useAtom; add non-hook deref; select option (f714acc)

BREAKING CHANGES

  • deref is no longer a custom React hook and therefore function components that
    call it will no longer be subscribed to the Atom's state. deref now only reads Atom state and is
    therefore useful for reading Atom state from outside function components. The previous behavior of
    deref is now available in the useAtom function, which is a custom React hook.