UNPKG

2.59 kBMarkdownView Raw
1# Change Log
2
3## 0.1.2 (2020-10-30)
4
5- Fix TypeScript exports
6
7## 0.1.1 (2020-10-29)
8
9- Performance Improvements
10- Experimental React Native support
11- Experimental Atom Effects
12- Experimental Snapshot construction
13
14## 0.0.13 (2020-09-16)
15
16- Fix for bug affecting SSR
17
18## 0.0.12 (2020-09-15)
19
20- Fix for bug affecting SSR on development builds
21
22## 0.0.11 (2020-09-15)
23
24- Experimental React Concurrent Mode Support
25- Performance
26- Flow Types
27- ES, CommonJS, and UMD packages
28- Synchronization Across React Roots
29- Preliminary Developer Tools API
30- Test Infrastructure Fixes
31
32## 0.0.10 (2020-06-18)
33
34### Bug Fix
35
36- Fix exports for snapshot hooks
37
38## 0.0.9 (2020-06-17)
39
40### Features
41
42- TypeScript support now rolled into Recoil repository and package.
43- Recoil Snapshot API for observing and managing global Recoil state.
44
45### Improvements
46
47- Throw error with meaningful message if user doesn't use an atom or selector with most Recoil hooks (#205) - Thanks @alexandrzavalii
48- Improve testing (#321, #318, #294, #262, #295) - Thanks @aaronabramov, @Komalov, @mondaychen, @drarmstr, and @tyler-mitchell
49- Improve open-source build (#249, #203, #33) - Thanks to @tony-go, @acutmore, and @jaredpalmer
50
51### Bug Fixes
52
53- Some fixes for Server Side Rendering, though we do not officially support it yet. (#233, #220, #284) - Thanks @fyber-LJX, @Chrischuck, and @aulneau
54- Fix selectors recording dependency subscriptions in some cases (#296) - Thanks @drarmstr
55- Fix updaters in `useRecoilCallback()` getting current state (#260) - Thanks @drarmstr
56- Fix error messages when throwing certain errors in the open-source build. (#199) - Thanks @jonthomp
57- Reduce Flow errors for open-source builds (#308) - Thanks @Komalov
58
59## 0.0.8 (2020-05-30)
60
61### Bug Fixes
62
63- Build system and repository syncing fixed.
64- Fixed a bug where atoms that stored self-referential structures would cause an infinite loop. (#153)
65- Fixed bugs affecting Server-Side Rendering. (#53)
66
67### Features
68
69- TypeScript support is now available via DefinitelyTyped.
70- `atomFamily` and `selectorFamily`: these provide a standard way to create atoms and selectors using memoized functions. Compared with doing this yourself, in the future these will help with memory management.
71- `noWait`, `waitForNone`, `waitForAny`, `waitForAll`: helpers for concurrency and other advanced logic in async selectors.
72- `constSelector` and `errorSelector`: selectors that always evaluate to a constant or always throw an error.
73- `readOnlySelector`: wraps a read-write atom or selector in a read-only interface, for when you need type covariance.