Skip to content

Commit

Permalink
[ci] release (#246)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Oct 29, 2023
1 parent 095a9f2 commit 8fb1b3e
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 22 deletions.
19 changes: 0 additions & 19 deletions .changeset/afraid-bees-approve.md

This file was deleted.

20 changes: 20 additions & 0 deletions packages/evolu-common-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# @evolu/common-react

## 1.0.9

### Patch Changes

- e392fe8: Allow to disable React Suspense per useQuery

React Suspense is enabled by default but can be optionally disabled
per useQuery hook. When disabled, useQuery will not stop rendering
and will return empty rows instead.

That can be helpful to avoid waterfall when using more than one
useQuery within one React Component. In such a situation, disable
Suspense for all useQuery hooks except the last one.

Because Evolu queues queries within a microtask sequentially, all
queries will be batched within one roundtrip.

Another use case is to optimistically prefetch data that might be
needed in a future render without blocking the current render.

## 1.0.8

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/evolu-common-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@evolu/common-react",
"version": "1.0.8",
"version": "1.0.9",
"description": "Common code for Evolu React libraries",
"keywords": [
"evolu",
Expand Down
2 changes: 1 addition & 1 deletion packages/evolu-react-native/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"vitest": "^0.34.6"
},
"peerDependencies": {
"@evolu/common-react": "^1.0.8",
"@evolu/common-react": "^1.0.9",
"expo": "^49.0.11",
"expo-sqlite": "~11.6.0",
"react-native": "^0.72.4"
Expand Down
2 changes: 1 addition & 1 deletion packages/evolu-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
},
"peerDependencies": {
"@evolu/common": "^1.0.15",
"@evolu/common-react": "^1.0.8",
"@evolu/common-react": "^1.0.9",
"@evolu/common-web": "^1.1.5",
"@types/react-dom": "^18.2.7",
"react-dom": "^18.2.0"
Expand Down

1 comment on commit 8fb1b3e

@vercel
Copy link

@vercel vercel bot commented on 8fb1b3e Oct 29, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

evolu – ./

evolu-evolu.vercel.app
www.evolu.dev
evolu.vercel.app
evolu-git-main-evolu.vercel.app
evolu.dev

Please sign in to comment.