Skip to content

Version Packages #632

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 18, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 0 additions & 31 deletions .changeset/heavy-turkeys-end.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/short-gifts-turn.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/slimy-cougars-rush.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/weak-chairs-complain.md

This file was deleted.

2 changes: 1 addition & 1 deletion packages/attachments/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"test": "pnpm build && vitest"
},
"peerDependencies": {
"@powersync/common": "workspace:^1.32.0"
"@powersync/common": "workspace:^1.33.0"
},
"devDependencies": {
"@powersync/common": "workspace:*",
Expand Down
33 changes: 33 additions & 0 deletions packages/common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,38 @@
# @powersync/common

## 1.33.0

### Minor Changes

- cbb20c0: This adds a new (and currently experimental) sync client implementation
implemented natively in the PowerSync SQLite extension.

This implementation will eventually become the default, but we encourage
interested users to try it out. In particular, we expect that it can improve
sync performance (especially on platforms with challenging JS performance,
like React Native).

On all our JavaScript SDKs, the new implementation can be enabled with a
sync option entry when connecting:

```JS
await db.connect(new MyConnector(), {
clientImplementation: SyncClientImplementation.RUST
});
```

Since the new client implements the same protocol, you can also migrate back
to the JavaScript client later by removing the `clientImplementation` option.

**However**: After enabling the `RUST` client, you cannot downgrade your
PowerSync SDK below this version. When enabled for the first time, databases
will be migrated. The JavaScript sync client from this and later SDK versions
understands the new format, but the client from an older SDK version will not!

### Patch Changes

- 7e8bb1a: Include metadata and previous values when serializing CRUD entries to JSON.

## 1.32.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@powersync/common",
"version": "1.32.0",
"version": "1.33.0",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion packages/drizzle-driver/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"test": "vitest"
},
"peerDependencies": {
"@powersync/common": "workspace:^1.32.0",
"@powersync/common": "workspace:^1.33.0",
"drizzle-orm": "<1.0.0"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/kysely-driver/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"test": "pnpm build && vitest"
},
"peerDependencies": {
"@powersync/common": "workspace:^1.32.0"
"@powersync/common": "workspace:^1.33.0"
},
"dependencies": {
"kysely": "^0.28.0"
Expand Down
36 changes: 36 additions & 0 deletions packages/node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,41 @@
# @powersync/node

## 0.6.0

### Minor Changes

- cbb20c0: This adds a new (and currently experimental) sync client implementation
implemented natively in the PowerSync SQLite extension.

This implementation will eventually become the default, but we encourage
interested users to try it out. In particular, we expect that it can improve
sync performance (especially on platforms with challenging JS performance,
like React Native).

On all our JavaScript SDKs, the new implementation can be enabled with a
sync option entry when connecting:

```JS
await db.connect(new MyConnector(), {
clientImplementation: SyncClientImplementation.RUST
});
```

Since the new client implements the same protocol, you can also migrate back
to the JavaScript client later by removing the `clientImplementation` option.

**However**: After enabling the `RUST` client, you cannot downgrade your
PowerSync SDK below this version. When enabled for the first time, databases
will be migrated. The JavaScript sync client from this and later SDK versions
understands the new format, but the client from an older SDK version will not!

### Patch Changes

- 0446f15: Update PowerSync core extension to 0.4.0
- Updated dependencies [cbb20c0]
- Updated dependencies [7e8bb1a]
- @powersync/common@1.33.0

## 0.5.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@powersync/node",
"version": "0.5.0",
"version": "0.6.0",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
Expand Down Expand Up @@ -45,7 +45,7 @@
},
"homepage": "https://docs.powersync.com/",
"peerDependencies": {
"@powersync/common": "workspace:^1.32.0"
"@powersync/common": "workspace:^1.33.0"
},
"dependencies": {
"@powersync/better-sqlite3": "^0.2.0",
Expand Down
9 changes: 9 additions & 0 deletions packages/powersync-op-sqlite/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @powersync/op-sqlite

## 0.7.1

### Patch Changes

- 0446f15: Update PowerSync core extension to 0.4.0
- Updated dependencies [cbb20c0]
- Updated dependencies [7e8bb1a]
- @powersync/common@1.33.0

## 0.7.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/powersync-op-sqlite/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@powersync/op-sqlite",
"version": "0.7.0",
"version": "0.7.1",
"description": "PowerSync - sync Postgres or MongoDB with SQLite in your React Native app for offline-first and real-time data",
"source": "./src/index.ts",
"main": "./lib/commonjs/index.js",
Expand Down Expand Up @@ -66,7 +66,7 @@
},
"peerDependencies": {
"@op-engineering/op-sqlite": "^13.0.0 || ^14.0.0",
"@powersync/common": "workspace:^1.32.0",
"@powersync/common": "workspace:^1.33.0",
"react": "*",
"react-native": "*"
},
Expand Down
38 changes: 38 additions & 0 deletions packages/react-native/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,43 @@
# @powersync/react-native

## 1.22.0

### Minor Changes

- cbb20c0: This adds a new (and currently experimental) sync client implementation
implemented natively in the PowerSync SQLite extension.

This implementation will eventually become the default, but we encourage
interested users to try it out. In particular, we expect that it can improve
sync performance (especially on platforms with challenging JS performance,
like React Native).

On all our JavaScript SDKs, the new implementation can be enabled with a
sync option entry when connecting:

```JS
await db.connect(new MyConnector(), {
clientImplementation: SyncClientImplementation.RUST
});
```

Since the new client implements the same protocol, you can also migrate back
to the JavaScript client later by removing the `clientImplementation` option.

**However**: After enabling the `RUST` client, you cannot downgrade your
PowerSync SDK below this version. When enabled for the first time, databases
will be migrated. The JavaScript sync client from this and later SDK versions
understands the new format, but the client from an older SDK version will not!

### Patch Changes

- 0446f15: Update PowerSync core extension to 0.4.0
- 450b2c9: Fix issues forwarding array buffers to Rust sync client.
- Updated dependencies [cbb20c0]
- Updated dependencies [7e8bb1a]
- @powersync/common@1.33.0
- @powersync/react@1.5.3

## 1.21.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/react-native/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@powersync/react-native",
"version": "1.21.0",
"version": "1.22.0",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
Expand Down Expand Up @@ -31,7 +31,7 @@
"homepage": "https://docs.powersync.com/",
"peerDependencies": {
"@journeyapps/react-native-quick-sqlite": "^2.4.5",
"@powersync/common": "workspace:^1.32.0",
"@powersync/common": "workspace:^1.33.0",
"react": "*",
"react-native": "*"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
},
"homepage": "https://docs.powersync.com",
"peerDependencies": {
"@powersync/common": "workspace:^1.32.0",
"@powersync/common": "workspace:^1.33.0",
"react": "*"
},
"devDependencies": {
Expand Down
9 changes: 9 additions & 0 deletions packages/tanstack-react-query/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @powersync/tanstack-react-query

## 0.0.27

### Patch Changes

- Updated dependencies [cbb20c0]
- Updated dependencies [7e8bb1a]
- @powersync/common@1.33.0
- @powersync/react@1.5.3

## 0.0.26

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/tanstack-react-query/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@powersync/tanstack-react-query",
"version": "0.0.26",
"version": "0.0.27",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
Expand Down Expand Up @@ -29,7 +29,7 @@
},
"homepage": "https://docs.powersync.com",
"peerDependencies": {
"@powersync/common": "workspace:^1.32.0",
"@powersync/common": "workspace:^1.33.0",
"react": "*"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"homepage": "https://docs.powersync.com",
"peerDependencies": {
"vue": "*",
"@powersync/common": "workspace:^1.32.0"
"@powersync/common": "workspace:^1.33.0"
},
"devDependencies": {
"@powersync/common": "workspace:*",
Expand Down
36 changes: 36 additions & 0 deletions packages/web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,41 @@
# @powersync/web

## 1.23.0

### Minor Changes

- cbb20c0: This adds a new (and currently experimental) sync client implementation
implemented natively in the PowerSync SQLite extension.

This implementation will eventually become the default, but we encourage
interested users to try it out. In particular, we expect that it can improve
sync performance (especially on platforms with challenging JS performance,
like React Native).

On all our JavaScript SDKs, the new implementation can be enabled with a
sync option entry when connecting:

```JS
await db.connect(new MyConnector(), {
clientImplementation: SyncClientImplementation.RUST
});
```

Since the new client implements the same protocol, you can also migrate back
to the JavaScript client later by removing the `clientImplementation` option.

**However**: After enabling the `RUST` client, you cannot downgrade your
PowerSync SDK below this version. When enabled for the first time, databases
will be migrated. The JavaScript sync client from this and later SDK versions
understands the new format, but the client from an older SDK version will not!

### Patch Changes

- 0446f15: Update PowerSync core extension to 0.4.0
- Updated dependencies [cbb20c0]
- Updated dependencies [7e8bb1a]
- @powersync/common@1.33.0

## 1.22.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@powersync/web",
"version": "1.22.0",
"version": "1.23.0",
"description": "PowerSync web SDK. Sync Postgres, MongoDB or MySQL with SQLite in your web app",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
Expand Down Expand Up @@ -61,7 +61,7 @@
"license": "Apache-2.0",
"peerDependencies": {
"@journeyapps/wa-sqlite": "^1.2.5",
"@powersync/common": "workspace:^1.32.0"
"@powersync/common": "workspace:^1.33.0"
},
"dependencies": {
"@powersync/common": "workspace:*",
Expand Down
Loading