Skip to content

Commit

Permalink
Merge pull request #416 from evoluhq/changeset-release/main
Browse files Browse the repository at this point in the history
[ci] release
  • Loading branch information
steida authored May 25, 2024
2 parents 9d9a081 + 44330ec commit f5694c4
Show file tree
Hide file tree
Showing 18 changed files with 99 additions and 25 deletions.
12 changes: 0 additions & 12 deletions .changeset/curly-seals-sing.md

This file was deleted.

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

## 1.0.43

### Patch Changes

- Updated dependencies [e420fec]
- @evolu/common@5.2.0
- @evolu/react-native@10.1.0
- @evolu/common-react@8.0.5

## 1.0.42

### 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.42",
"version": "1.0.43",
"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.57

### Patch Changes

- @evolu/server@7.0.9

## 1.0.56

### 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.56",
"version": "1.0.57",
"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.57

### Patch Changes

- Updated dependencies [e420fec]
- @evolu/common@5.2.0
- @evolu/react@8.1.0

## 1.0.56

### 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.56",
"version": "1.0.57",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down
2 changes: 1 addition & 1 deletion packages/evolu-common-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"vitest": "^1.6.0"
},
"peerDependencies": {
"@evolu/common": "^5.1.4",
"@evolu/common": "^5.2.0",
"react": "^18.2.0"
},
"publishConfig": {
Expand Down
15 changes: 15 additions & 0 deletions packages/evolu-common-web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @evolu/common-web

## 8.1.0

### Minor Changes

- e420fec: New API for working with Evolu instances

The functions `resetOwner` and `restoreOwner` automatically reload the app to ensure no user data remains in memory. The new option `reload` allows us to opt out of this default behavior. For that reason, both functions return a promise that can be used to provide custom UX. There is also a new `reloadApp` function to reload the app in a platform-specific way (e.g., browsers will reload all tabs with Evolu instances).

The `createEvolu` function has a new option, `mnemonic`. This option is useful for Evolu multitenancy when creating an Evolu instance with a predefined mnemonic. To create a mnemonic, use the new `createMnemonic` function.

### Patch Changes

- Updated dependencies [e420fec]
- @evolu/common@5.2.0

## 8.0.5

### 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": "8.0.5",
"version": "8.1.0",
"description": "Common code for Evolu libraries targeting web",
"keywords": [
"evolu",
Expand Down Expand Up @@ -46,7 +46,7 @@
"vitest": "^1.6.0"
},
"peerDependencies": {
"@evolu/common": "^5.1.4",
"@evolu/common": "^5.2.0",
"@sqlite.org/sqlite-wasm": "^3.45.3-build3"
},
"publishConfig": {
Expand Down
10 changes: 10 additions & 0 deletions packages/evolu-common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @evolu/common

## 5.2.0

### Minor Changes

- e420fec: New API for working with Evolu instances

The functions `resetOwner` and `restoreOwner` automatically reload the app to ensure no user data remains in memory. The new option `reload` allows us to opt out of this default behavior. For that reason, both functions return a promise that can be used to provide custom UX. There is also a new `reloadApp` function to reload the app in a platform-specific way (e.g., browsers will reload all tabs with Evolu instances).

The `createEvolu` function has a new option, `mnemonic`. This option is useful for Evolu multitenancy when creating an Evolu instance with a predefined mnemonic. To create a mnemonic, use the new `createMnemonic` function.

## 5.1.4

### 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": "5.1.4",
"version": "5.2.0",
"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
14 changes: 14 additions & 0 deletions packages/evolu-react-native/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# @evolu/react-native

## 10.1.0

### Minor Changes

- e420fec: New API for working with Evolu instances

The functions `resetOwner` and `restoreOwner` automatically reload the app to ensure no user data remains in memory. The new option `reload` allows us to opt out of this default behavior. For that reason, both functions return a promise that can be used to provide custom UX. There is also a new `reloadApp` function to reload the app in a platform-specific way (e.g., browsers will reload all tabs with Evolu instances).

The `createEvolu` function has a new option, `mnemonic`. This option is useful for Evolu multitenancy when creating an Evolu instance with a predefined mnemonic. To create a mnemonic, use the new `createMnemonic` function.

### Patch Changes

- @evolu/common-react@8.0.5

## 10.0.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion 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": "10.0.2",
"version": "10.1.0",
"description": "Evolu for React Native",
"keywords": [
"evolu",
Expand Down
17 changes: 17 additions & 0 deletions packages/evolu-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# @evolu/react

## 8.1.0

### Minor Changes

- e420fec: New API for working with Evolu instances

The functions `resetOwner` and `restoreOwner` automatically reload the app to ensure no user data remains in memory. The new option `reload` allows us to opt out of this default behavior. For that reason, both functions return a promise that can be used to provide custom UX. There is also a new `reloadApp` function to reload the app in a platform-specific way (e.g., browsers will reload all tabs with Evolu instances).

The `createEvolu` function has a new option, `mnemonic`. This option is useful for Evolu multitenancy when creating an Evolu instance with a predefined mnemonic. To create a mnemonic, use the new `createMnemonic` function.

### Patch Changes

- Updated dependencies [e420fec]
- @evolu/common@5.2.0
- @evolu/common-web@8.1.0
- @evolu/common-react@8.0.5

## 8.0.2

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/evolu-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@evolu/react",
"version": "8.0.2",
"version": "8.1.0",
"description": "Evolu for React",
"keywords": [
"evolu",
Expand Down Expand Up @@ -48,9 +48,9 @@
"vitest": "^1.6.0"
},
"peerDependencies": {
"@evolu/common": "^5.1.4",
"@evolu/common": "^5.2.0",
"@evolu/common-react": "^8.0.5",
"@evolu/common-web": "^8.0.5",
"@evolu/common-web": "^8.1.0",
"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

## 7.0.9

### Patch Changes

- Updated dependencies [e420fec]
- @evolu/common@5.2.0

## 7.0.8

### 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": "7.0.8",
"version": "7.0.9",
"description": "Node.js server for Evolu",
"author": "Daniel Steigerwald <[email protected]>",
"license": "MIT",
Expand Down Expand Up @@ -48,7 +48,7 @@
"vitest": "^1.6.0"
},
"peerDependencies": {
"@evolu/common": "^5.1.4",
"@evolu/common": "^5.2.0",
"express": "^4.19.2"
},
"publishConfig": {
Expand Down

0 comments on commit f5694c4

Please sign in to comment.