Releases: sultan99/holycow
Releases ยท sultan99/holycow
v1.2.0
v1.1.2
v1.1.1
Bug fix
๐ Reset removes built-in functions
v1.1.0
v1.0.0
Features
- ๐ Atomic state updates
- ๐งฎ Computed values come with caching and lazy evaluation
- ๐ฌ Subscription to state changes
- ๐งฉ Utility functions (compose, curry, pick, append, update)
- ๐ฃ No external dependency, Ramda library is removed
Breaking changes
๐ฌ Actions
- Actions must now be wrapped with the
action
function - New declaration interface:
action(state => payload => { ... })
๐งฎ Computed values
- Computed values must now be wrapped with the
computed
function - Payload from computed functions has been removed
- New declaration interface:
computed(state => ...)