Skip to content

Commit

Permalink
Merge pull request #358 from evoluhq/changeset-release/main
Browse files Browse the repository at this point in the history
[ci] release
  • Loading branch information
steida authored Mar 8, 2024
2 parents 1f9168f + daf673a commit 5f7161d
Show file tree
Hide file tree
Showing 19 changed files with 111 additions and 37 deletions.
17 changes: 0 additions & 17 deletions .changeset/metal-humans-judge.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/unlucky-peaches-wonder.md

This file was deleted.

10 changes: 10 additions & 0 deletions apps/native/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# native

## 1.0.25

### Patch Changes

- Updated dependencies [1f9168f]
- Updated dependencies [d3f1ac4]
- @evolu/common-react@6.0.2
- @evolu/common@4.0.2
- @evolu/react-native@7.1.0

## 1.0.24

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/native/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "native",
"version": "1.0.24",
"version": "1.0.25",
"private": true,
"main": "index.js",
"scripts": {
Expand Down
6 changes: 6 additions & 0 deletions apps/server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# server

## 1.0.42

### Patch Changes

- @evolu/server@5.0.2

## 1.0.41

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "server",
"version": "1.0.41",
"version": "1.0.42",
"private": true,
"type": "module",
"scripts": {
Expand Down
8 changes: 8 additions & 0 deletions apps/web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# web

## 1.0.42

### Patch Changes

- Updated dependencies [1f9168f]
- @evolu/common@4.0.2
- @evolu/react@6.0.1

## 1.0.41

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web",
"version": "1.0.41",
"version": "1.0.42",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down
19 changes: 19 additions & 0 deletions packages/evolu-common-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# @evolu/common-react

## 6.0.2

### Patch Changes

- 1f9168f: Fix SSR

Evolu server-side rendering was surprisingly problematic because of the React Suspense error: "This Suspense boundary received an update before it finished hydrating."

If you are curious why a local-first library needs to render something on the server where there is no data, the answer is that if we can render empty rows, we should.

But because of the React Suspense error, Evolu apps had to be wrapped by the ClientOnly component, which wasn't ideal. Check article:

https://tkdodo.eu/blog/avoiding-hydration-mismatches-with-use-sync-external-store

Internally, PlatformName has been replaced with useWasSSR React Hook.

- Updated dependencies [1f9168f]
- @evolu/common@4.0.2

## 6.0.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions 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": "6.0.1",
"version": "6.0.2",
"description": "Common code for Evolu React libraries",
"keywords": [
"evolu",
Expand Down Expand Up @@ -49,7 +49,7 @@
"vitest": "^1.3.1"
},
"peerDependencies": {
"@evolu/common": "^4.0.1",
"@evolu/common": "^4.0.2",
"react": "^18.2.0"
},
"publishConfig": {
Expand Down
19 changes: 19 additions & 0 deletions packages/evolu-common-web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# @evolu/common-web

## 6.0.3

### Patch Changes

- 1f9168f: Fix SSR

Evolu server-side rendering was surprisingly problematic because of the React Suspense error: "This Suspense boundary received an update before it finished hydrating."

If you are curious why a local-first library needs to render something on the server where there is no data, the answer is that if we can render empty rows, we should.

But because of the React Suspense error, Evolu apps had to be wrapped by the ClientOnly component, which wasn't ideal. Check article:

https://tkdodo.eu/blog/avoiding-hydration-mismatches-with-use-sync-external-store

Internally, PlatformName has been replaced with useWasSSR React Hook.

- Updated dependencies [1f9168f]
- @evolu/common@4.0.2

## 6.0.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/evolu-common-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@evolu/common-web",
"version": "6.0.2",
"version": "6.0.3",
"description": "Common code for Evolu libraries targeting web",
"keywords": [
"evolu",
Expand Down Expand Up @@ -46,7 +46,7 @@
"vitest": "^1.3.1"
},
"peerDependencies": {
"@evolu/common": "^4.0.1",
"@evolu/common": "^4.0.2",
"@sqlite.org/sqlite-wasm": "3.45.1-build1"
},
"publishConfig": {
Expand Down
16 changes: 16 additions & 0 deletions packages/evolu-common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @evolu/common

## 4.0.2

### Patch Changes

- 1f9168f: Fix SSR

Evolu server-side rendering was surprisingly problematic because of the React Suspense error: "This Suspense boundary received an update before it finished hydrating."

If you are curious why a local-first library needs to render something on the server where there is no data, the answer is that if we can render empty rows, we should.

But because of the React Suspense error, Evolu apps had to be wrapped by the ClientOnly component, which wasn't ideal. Check article:

https://tkdodo.eu/blog/avoiding-hydration-mismatches-with-use-sync-external-store

Internally, PlatformName has been replaced with useWasSSR React Hook.

## 4.0.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/evolu-common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@evolu/common",
"version": "4.0.1",
"version": "4.0.2",
"description": "Local-first platform designed for privacy, ease of use, and no vendor lock-in to sync and backup people's lifetime data",
"keywords": [
"evolu",
Expand Down
11 changes: 11 additions & 0 deletions packages/evolu-react-native/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @evolu/react-native

## 7.1.0

### Minor Changes

- d3f1ac4: Update peer dependencies: expo, expo-sqlite

### Patch Changes

- Updated dependencies [1f9168f]
- @evolu/common-react@6.0.2

## 7.0.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/evolu-react-native/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@evolu/react-native",
"version": "7.0.1",
"version": "7.1.0",
"description": "Evolu for React Native",
"keywords": [
"evolu",
Expand Down Expand Up @@ -53,7 +53,7 @@
"vitest": "^1.3.1"
},
"peerDependencies": {
"@evolu/common-react": "^6.0.1",
"@evolu/common-react": "^6.0.2",
"expo": "^50.0.11",
"expo-sqlite": "~13.3.0",
"react-native": "0.73.4"
Expand Down
6 changes: 3 additions & 3 deletions packages/evolu-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@
"vitest": "^1.3.1"
},
"peerDependencies": {
"@evolu/common": "^4.0.1",
"@evolu/common-react": "^6.0.1",
"@evolu/common-web": "^6.0.2",
"@evolu/common": "^4.0.2",
"@evolu/common-react": "^6.0.2",
"@evolu/common-web": "^6.0.3",
"react-dom": "^18.2.0"
},
"publishConfig": {
Expand Down
7 changes: 7 additions & 0 deletions packages/evolu-server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @evolu/server

## 5.0.2

### Patch Changes

- Updated dependencies [1f9168f]
- @evolu/common@4.0.2

## 5.0.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/evolu-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@evolu/server",
"version": "5.0.1",
"version": "5.0.2",
"description": "Node.js server for Evolu",
"author": "Daniel Steigerwald <[email protected]>",
"license": "MIT",
Expand Down Expand Up @@ -48,7 +48,7 @@
"vitest": "^1.3.1"
},
"peerDependencies": {
"@evolu/common": "^4.0.1",
"@evolu/common": "^4.0.2",
"effect": "2.4.1"
},
"publishConfig": {
Expand Down

0 comments on commit 5f7161d

Please sign in to comment.