Skip to content
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
6 changes: 0 additions & 6 deletions .changeset/angry-pumpkins-double.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/calm-pans-worry.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/lovely-impalas-do.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/slow-spiders-smash.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/spotty-students-serve.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/swift-seahorses-help.md

This file was deleted.

7 changes: 7 additions & 0 deletions packages/common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @powersync/common

## 1.24.0

### Minor Changes

- 893d42b: Introduced `fetchStrategy` option to connect, allowing you to choose either `buffered` or `sequential` for the Websocket connect option. Internally the functionality of `buffered` was used by default, but now it can be switched to the sequential mode. This changes the WebSocket sync queue to only process one sync event at a time, improving known keep-alive issues for lower-end hardware with minimal impact on sync performance.
- 0606ac2: add 'connecting' flag to SyncStatus

## 1.23.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.23.0",
"version": "1.24.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.23.0",
"@powersync/common": "workspace:^1.24.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.23.0"
"@powersync/common": "workspace:^1.24.0"
},
"dependencies": {
"kysely": "^0.27.4"
Expand Down
12 changes: 12 additions & 0 deletions packages/powersync-op-sqlite/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @powersync/op-sqlite

## 0.4.0

### Minor Changes

- 56185bb: Default to using memory for temp store, and 50MB cache size.

### Patch Changes

- Updated dependencies [893d42b]
- Updated dependencies [0606ac2]
- @powersync/common@1.24.0

## 0.3.1

### Patch 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.3.1",
"version": "0.4.0",
"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": "^11.2.13",
"@powersync/common": "workspace:^1.23.0",
"@powersync/common": "workspace:^1.24.0",
"react": "*",
"react-native": "*"
},
Expand Down
12 changes: 12 additions & 0 deletions packages/react-native/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @powersync/react-native

## 1.18.0

### Minor Changes

- 893d42b: Introduced `fetchStrategy` option to connect, allowing you to choose either `buffered` or `sequential` for the Websocket connect option. Internally the functionality of `buffered` was used by default, but now it can be switched to the sequential mode. This changes the WebSocket sync queue to only process one sync event at a time, improving known keep-alive issues for lower-end hardware with minimal impact on sync performance.

### Patch Changes

- Updated dependencies [893d42b]
- Updated dependencies [0606ac2]
- @powersync/common@1.24.0

## 1.17.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.17.0",
"version": "1.18.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.3.0",
"@powersync/common": "workspace:^1.23.0",
"@powersync/common": "workspace:^1.24.0",
"react": "*",
"react-native": "*"
},
Expand Down
8 changes: 8 additions & 0 deletions packages/tanstack-react-query/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @powersync/tanstack-react-query

## 0.0.14

### Patch Changes

- Updated dependencies [893d42b]
- Updated dependencies [0606ac2]
- @powersync/common@1.24.0

## 0.0.13

### 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.13",
"version": "0.0.14",
"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.23.0",
"@powersync/common": "workspace:^1.24.0",
"react": "*"
},
"dependencies": {
Expand Down
12 changes: 12 additions & 0 deletions packages/web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @powersync/web

## 1.14.0

### Minor Changes

- 56185bb: Add cacheSizeKb option, defaulting to 50MB.

### Patch Changes

- Updated dependencies [893d42b]
- Updated dependencies [0606ac2]
- @powersync/common@1.24.0

## 1.13.1

### Patch 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.13.1",
"version": "1.14.0",
"description": "A Web SDK for JourneyApps PowerSync",
"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.0",
"@powersync/common": "workspace:^1.23.0"
"@powersync/common": "workspace:^1.24.0"
},
"dependencies": {
"@powersync/common": "workspace:*",
Expand Down
4 changes: 2 additions & 2 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions tools/diagnostics-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# diagnostics-app

## 0.8.0

### Minor Changes

- e1c44ad: Improve diagnostics app performance for bulk downloads.
- 56185bb: Switch diagnostics app to OPFS.

### Patch Changes

- Updated dependencies [56185bb]
- @powersync/web@1.14.0

## 0.7.8

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion tools/diagnostics-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@powersync/diagnostics-app",
"version": "0.7.8",
"version": "0.8.0",
"private": true,
"scripts": {
"dev": "vite",
Expand Down