Skip to content

Commit 8894360

Browse files
Version Packages (#620)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent efc8ba9 commit 8894360

28 files changed

+561
-834
lines changed

.changeset/cyan-penguins-smell.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/empty-pants-give.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

.changeset/fuzzy-beers-occur.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

.changeset/fuzzy-ties-double.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/nasty-steaks-yell.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/rotten-pugs-beam.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

.changeset/silent-lions-cough.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/swift-waves-tease.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/attachments/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"test": "pnpm build && vitest"
3030
},
3131
"peerDependencies": {
32-
"@powersync/common": "workspace:^1.31.1"
32+
"@powersync/common": "workspace:^1.32.0"
3333
},
3434
"devDependencies": {
3535
"@powersync/common": "workspace:*",

packages/common/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @powersync/common
22

3+
## 1.32.0
4+
5+
### Minor Changes
6+
7+
- 96ddd5d: Improved behaviour when connect is called multiple times in quick succession. Updating client parameters should now be more responsive.
8+
- efc8ba9: Preserve more details on websocket errors.
9+
10+
### Patch Changes
11+
12+
- 96ddd5d: Fixed bug where changes in SyncStatus downloadError and uploadError might not be reported.
13+
314
## 1.31.1
415

516
### Patch Changes

packages/common/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@powersync/common",
3-
"version": "1.31.1",
3+
"version": "1.32.0",
44
"publishConfig": {
55
"registry": "https://registry.npmjs.org/",
66
"access": "public"

packages/drizzle-driver/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"test": "vitest"
2727
},
2828
"peerDependencies": {
29-
"@powersync/common": "workspace:^1.31.1",
29+
"@powersync/common": "workspace:^1.32.0",
3030
"drizzle-orm": "<1.0.0"
3131
},
3232
"devDependencies": {

packages/kysely-driver/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"test": "pnpm build && vitest"
2727
},
2828
"peerDependencies": {
29-
"@powersync/common": "workspace:^1.31.1"
29+
"@powersync/common": "workspace:^1.32.0"
3030
},
3131
"dependencies": {
3232
"kysely": "^0.28.0"

packages/node/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# @powersync/node
22

3+
## 0.5.0
4+
5+
### Minor Changes
6+
7+
- 96ddd5d: Improved behaviour when connect is called multiple times in quick succession. Updating client parameters should now be more responsive.
8+
- efc8ba9: Switch to undici WebSocket for Dispatcher and diagnostics_channel support. This now adds support for the `ALL_PROXY` environment variable by default, as well as `WSS_PROXY` for websocket connections.
9+
10+
### Patch Changes
11+
12+
- Updated dependencies [96ddd5d]
13+
- Updated dependencies [96ddd5d]
14+
- Updated dependencies [efc8ba9]
15+
- @powersync/common@1.32.0
16+
317
## 0.4.5
418

519
### Patch Changes

packages/node/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@powersync/node",
3-
"version": "0.4.5",
3+
"version": "0.5.0",
44
"publishConfig": {
55
"registry": "https://registry.npmjs.org/",
66
"access": "public"
@@ -45,7 +45,7 @@
4545
},
4646
"homepage": "https://docs.powersync.com/",
4747
"peerDependencies": {
48-
"@powersync/common": "workspace:^1.31.1"
48+
"@powersync/common": "workspace:^1.32.0"
4949
},
5050
"dependencies": {
5151
"@powersync/better-sqlite3": "^0.2.0",

packages/powersync-op-sqlite/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# @powersync/op-sqlite
22

3+
## 0.7.0
4+
5+
### Minor Changes
6+
7+
- ddc0bd1: Updated op-sqlite upstream peer dependency from 11.x.x to support ^13.x.x and ^14.x.x,
8+
9+
Noteworthy changes from version 11 to version 14 include:
10+
11+
1. SQLite updated to 3.49.1
12+
2. SQLCipher updated to 4.8.0
13+
3. Monorepo config resolution, you may need to move your `op-sqlite` config from your application's `package.json` to the monorepo root `package.json` depending on where your package manager tool hoists modules (see [1](https://op-engineering.github.io/op-sqlite/docs/installation) and [2](https://github.com/OP-Engineering/op-sqlite/issues/264)).
14+
15+
### Patch Changes
16+
17+
- Updated dependencies [96ddd5d]
18+
- Updated dependencies [96ddd5d]
19+
- Updated dependencies [efc8ba9]
20+
- @powersync/common@1.32.0
21+
322
## 0.6.1
423

524
### Patch Changes

packages/powersync-op-sqlite/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@powersync/op-sqlite",
3-
"version": "0.6.1",
3+
"version": "0.7.0",
44
"description": "PowerSync - sync Postgres or MongoDB with SQLite in your React Native app for offline-first and real-time data",
55
"source": "./src/index.ts",
66
"main": "./lib/commonjs/index.js",
@@ -66,7 +66,7 @@
6666
},
6767
"peerDependencies": {
6868
"@op-engineering/op-sqlite": "^13.0.0 || ^14.0.0",
69-
"@powersync/common": "workspace:^1.31.1",
69+
"@powersync/common": "workspace:^1.32.0",
7070
"react": "*",
7171
"react-native": "*"
7272
},

packages/react-native/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# @powersync/react-native
22

3+
## 1.21.0
4+
5+
### Minor Changes
6+
7+
- 96ddd5d: Fixed issue where iOS WebSockets could fail to reconnect after a connection issue.
8+
- 96ddd5d: Improved behaviour when connect is called multiple times in quick succession. Updating client parameters should now be more responsive.
9+
10+
### Patch Changes
11+
12+
- Updated dependencies [96ddd5d]
13+
- Updated dependencies [96ddd5d]
14+
- Updated dependencies [efc8ba9]
15+
- @powersync/common@1.32.0
16+
- @powersync/react@1.5.3
17+
318
## 1.20.4
419

520
### Patch Changes

packages/react-native/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@powersync/react-native",
3-
"version": "1.20.4",
3+
"version": "1.21.0",
44
"publishConfig": {
55
"registry": "https://registry.npmjs.org/",
66
"access": "public"
@@ -31,7 +31,7 @@
3131
"homepage": "https://docs.powersync.com/",
3232
"peerDependencies": {
3333
"@journeyapps/react-native-quick-sqlite": "^2.4.4",
34-
"@powersync/common": "workspace:^1.31.1",
34+
"@powersync/common": "workspace:^1.32.0",
3535
"react": "*",
3636
"react-native": "*"
3737
},

packages/react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
},
3030
"homepage": "https://docs.powersync.com",
3131
"peerDependencies": {
32-
"@powersync/common": "workspace:^1.31.1",
32+
"@powersync/common": "workspace:^1.32.0",
3333
"react": "*"
3434
},
3535
"devDependencies": {

packages/tanstack-react-query/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @powersync/tanstack-react-query
22

3+
## 0.0.26
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [96ddd5d]
8+
- Updated dependencies [96ddd5d]
9+
- Updated dependencies [efc8ba9]
10+
- @powersync/common@1.32.0
11+
- @powersync/react@1.5.3
12+
313
## 0.0.25
414

515
### Patch Changes

packages/tanstack-react-query/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@powersync/tanstack-react-query",
3-
"version": "0.0.25",
3+
"version": "0.0.26",
44
"publishConfig": {
55
"registry": "https://registry.npmjs.org/",
66
"access": "public"
@@ -29,7 +29,7 @@
2929
},
3030
"homepage": "https://docs.powersync.com",
3131
"peerDependencies": {
32-
"@powersync/common": "workspace:^1.31.1",
32+
"@powersync/common": "workspace:^1.32.0",
3333
"react": "*"
3434
},
3535
"dependencies": {

packages/vue/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"homepage": "https://docs.powersync.com",
3131
"peerDependencies": {
3232
"vue": "*",
33-
"@powersync/common": "workspace:^1.31.1"
33+
"@powersync/common": "workspace:^1.32.0"
3434
},
3535
"devDependencies": {
3636
"@powersync/common": "workspace:*",

packages/web/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# @powersync/web
22

3+
## 1.22.0
4+
5+
### Minor Changes
6+
7+
- 96ddd5d: Improved behaviour when connect is called multiple times in quick succession. Updating client parameters should now be more responsive.
8+
9+
### Patch Changes
10+
11+
- Updated dependencies [96ddd5d]
12+
- Updated dependencies [96ddd5d]
13+
- Updated dependencies [efc8ba9]
14+
- @powersync/common@1.32.0
15+
316
## 1.21.1
417

518
### Patch Changes

packages/web/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@powersync/web",
3-
"version": "1.21.1",
3+
"version": "1.22.0",
44
"description": "PowerSync web SDK. Sync Postgres, MongoDB or MySQL with SQLite in your web app",
55
"main": "lib/src/index.js",
66
"types": "lib/src/index.d.ts",
@@ -61,7 +61,7 @@
6161
"license": "Apache-2.0",
6262
"peerDependencies": {
6363
"@journeyapps/wa-sqlite": "^1.2.4",
64-
"@powersync/common": "workspace:^1.31.1"
64+
"@powersync/common": "workspace:^1.32.0"
6565
},
6666
"dependencies": {
6767
"@powersync/common": "workspace:*",

0 commit comments

Comments
 (0)