Skip to content
Open
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
8 changes: 0 additions & 8 deletions .changeset/nice-dragons-smile.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/slow-melons-raise.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/tame-islands-deliver.md

This file was deleted.

8 changes: 8 additions & 0 deletions packages/adapter-sql-js/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @powersync/adapter-sql-js

## 0.0.4

### Patch Changes

- Updated dependencies [c910c66]
- Updated dependencies [9e3e3a5]
- @powersync/[email protected]

## 0.0.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/adapter-sql-js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@powersync/adapter-sql-js",
"version": "0.0.3",
"version": "0.0.4",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion packages/attachments/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"test:exports": "attw --pack ."
},
"peerDependencies": {
"@powersync/common": "workspace:^1.36.0"
"@powersync/common": "workspace:^1.37.0"
},
"devDependencies": {
"@powersync/common": "workspace:*",
Expand Down
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.37.0

### Minor Changes

- c910c66: Add `getCrudTransactions()`, returning an async iterator of transactions. This can be used to batch transactions when uploading CRUD data.
- 9e3e3a5: Added SQLite trigger based table change tracking.

## 1.36.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.36.0",
"version": "1.37.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 @@ -42,7 +42,7 @@
"test:exports": "attw --pack ."
},
"peerDependencies": {
"@powersync/common": "workspace:^1.36.0",
"@powersync/common": "workspace:^1.37.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 @@ -42,7 +42,7 @@
"test:exports": "attw --pack ."
},
"peerDependencies": {
"@powersync/common": "workspace:^1.36.0"
"@powersync/common": "workspace:^1.37.0"
},
"dependencies": {
"kysely": "^0.28.0"
Expand Down
13 changes: 13 additions & 0 deletions packages/node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @powersync/node

## 0.10.0

### Minor Changes

- c910c66: Add `getCrudTransactions()`, returning an async iterator of transactions. This can be used to batch transactions when uploading CRUD data.
- 9e3e3a5: Added SQLite trigger based table change tracking.

### Patch Changes

- Updated dependencies [c910c66]
- Updated dependencies [9e3e3a5]
- @powersync/[email protected]

## 0.9.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.9.0",
"version": "0.10.0",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
Expand Down Expand Up @@ -56,7 +56,7 @@
},
"homepage": "https://docs.powersync.com/",
"peerDependencies": {
"@powersync/common": "workspace:^1.36.0"
"@powersync/common": "workspace:^1.37.0"
},
"dependencies": {
"@powersync/better-sqlite3": "^0.2.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/powersync-op-sqlite/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @powersync/op-sqlite

## 0.7.7

### Patch Changes

- Updated dependencies [c910c66]
- Updated dependencies [9e3e3a5]
- @powersync/[email protected]

## 0.7.6

### 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.7.6",
"version": "0.7.7",
"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.36.0",
"@powersync/common": "workspace:^1.37.0",
"react": "*",
"react-native": "*"
},
Expand Down
15 changes: 15 additions & 0 deletions packages/react-native/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @powersync/react-native

## 1.24.0

### Minor Changes

- c910c66: Add `getCrudTransactions()`, returning an async iterator of transactions. This can be used to batch transactions when uploading CRUD data.
- 9e3e3a5: Added SQLite trigger based table change tracking.

### Patch Changes

- Updated dependencies [c910c66]
- Updated dependencies [8decd49]
- Updated dependencies [9e3e3a5]
- @powersync/[email protected]
- @powersync/[email protected]

## 1.23.2

### Patch 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.23.2",
"version": "1.24.0",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
Expand Down Expand Up @@ -32,7 +32,7 @@
"homepage": "https://docs.powersync.com/",
"peerDependencies": {
"@journeyapps/react-native-quick-sqlite": "^2.4.6",
"@powersync/common": "workspace:^1.36.0",
"@powersync/common": "workspace:^1.37.0",
"react": "*",
"react-native": "*"
},
Expand Down
9 changes: 9 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @powersync/react

## 1.7.1

### Patch Changes

- 8decd49: Refactor useQuery hook to avoid calling internal hooks conditionally.
- Updated dependencies [c910c66]
- Updated dependencies [9e3e3a5]
- @powersync/[email protected]

## 1.7.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@powersync/react",
"version": "1.7.0",
"version": "1.7.1",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
Expand Down Expand Up @@ -32,7 +32,7 @@
},
"homepage": "https://docs.powersync.com",
"peerDependencies": {
"@powersync/common": "workspace:^1.36.0",
"@powersync/common": "workspace:^1.37.0",
"react": "*"
},
"devDependencies": {
Expand Down
10 changes: 10 additions & 0 deletions packages/tanstack-react-query/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @powersync/tanstack-react-query

## 0.1.1

### Patch Changes

- Updated dependencies [c910c66]
- Updated dependencies [8decd49]
- Updated dependencies [9e3e3a5]
- @powersync/[email protected]
- @powersync/[email protected]

## 0.1.0

### Minor 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.1.0",
"version": "0.1.1",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
Expand Down Expand Up @@ -31,7 +31,7 @@
},
"homepage": "https://docs.powersync.com",
"peerDependencies": {
"@powersync/common": "workspace:^1.36.0",
"@powersync/common": "workspace:^1.37.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 @@ -32,7 +32,7 @@
"homepage": "https://docs.powersync.com",
"peerDependencies": {
"vue": "*",
"@powersync/common": "workspace:^1.36.0"
"@powersync/common": "workspace:^1.37.0"
},
"devDependencies": {
"@powersync/common": "workspace:*",
Expand Down
13 changes: 13 additions & 0 deletions packages/web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @powersync/web

## 1.26.0

### Minor Changes

- c910c66: Add `getCrudTransactions()`, returning an async iterator of transactions. This can be used to batch transactions when uploading CRUD data.
- 9e3e3a5: Added SQLite trigger based table change tracking.

### Patch Changes

- Updated dependencies [c910c66]
- Updated dependencies [9e3e3a5]
- @powersync/[email protected]

## 1.25.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.25.1",
"version": "1.26.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.6",
"@powersync/common": "workspace:^1.36.0"
"@powersync/common": "workspace:^1.37.0"
},
"dependencies": {
"@powersync/common": "workspace:*",
Expand Down
Loading