Releases: exah/react-universal-data
Releases · exah/react-universal-data
4.1.2
4.1.1
4.1.0
4.1.0-2
4.1.0-1
4.1.0-0
4.0.2
4.0.0
📝 Changes
- ✨ Added
useFetchData
hooks andSuspense
on server - ⚡️ Reduced bundle size from 4.5Kb → 600B
- 🏷️ Rewritten in TypeScript
- ✅ Fully tested
- ⬆️ Updated deps to latest version
- 💥 Removed
withData
HOC and staticgetData
prop API - 🚚 Renamed
hydrateData
→hydrateInitialData
- 💥 Replaced custom store with Map (internal)
✨ New hooks API:
function Foo() {
const { isReady, isLoading, result, error } = useFetchData(resource, id)
return <Bar {...result} />
}