Releases: sultan99/holycow
Releases · sultan99/holycow
v1.2.2
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
actionfunction - New declaration interface:
action(state => payload => { ... })
🧮 Computed values
- Computed values must now be wrapped with the
computedfunction - Payload from computed functions has been removed
- New declaration interface:
computed(state => ...)