Skip to content

Commit

Permalink
1.0.1 (#25)
Browse files Browse the repository at this point in the history
* feat: QweryProvider (#1)

* feat: useQwery hook (#2)

* feat: useQwery hook

* fix: proxy onChange for when a Promise is not returned, so onSuccess is not triggered

* chore: update readme (#3)

* feat: subscriptions and polling (#4)

* feat: useRememberScroll (#5)

* feat: refetchOnWindowFocus (#6)

* 0.0.1

* fix: awaiting initial value, either or can resolve to nullish (#8)

* types: useQweryOptions (#9)

* types: rough types for useQweryOptions

* fix: with makeMonitoredFetch, if a fetch is not enabled then it returns void so don't initialize the crdt in this case. update useRememberScroll to not execute server side

* chore: add vitest, react testing library, jsdom (#10)

* test: adding test api and redis (#11)

* test: add tests for useQwery, csr and ssr (#12)

* test: add tests for useQwery, csr and ssr

* chore: add gh actions

* 0.0.2

* chore: cleanup and update vite to build as lib (#14)

* chore: remove api.put (#15)

* chore: update deps, update exports, update types (#16)

* fix: effects don't run in ssr (#17)

* fix: effects don't run in ssr so return initialValue if it is an object, up to client to await and use suspense or what not. also update renderSsr to remove window while calling ReactDOMServer

* test: adding tests for async caches

* style: remove unused import

* types: update types

* refactor: update QweryProvider

* style: double quotes

* fix: silence act errors (#18)

* style: remove unused imports (#19)

* 0.0.3

* chore: update readme (#21)

* chore: update readme (#22)

* 1.0.0

* chore: update export locations (#24)

* 1.0.1
  • Loading branch information
nmathew98 committed Feb 23, 2024
1 parent ac76b49 commit 56e10c9
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
{
"name": "@b.s/react-qwery",
"private": true,
"version": "1.0.0",
"version": "1.0.1",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/nmathew98/qwery"
},
"exports": {
"import": "./dist/qwery.js",
"require": "./dist/qwery.umd.cjs",
"import": "./dist/react-qwery.js",
"require": "./dist/react-qwery.umd.cjs",
"types": "./dist/index.d.ts"
},
"description": "Simple composable async state management utilities for React",
Expand Down

0 comments on commit 56e10c9

Please sign in to comment.