Skip to content

Commit 89dd672

Browse files
authored
Merge branch 'main' into feat/update-diagnostics-schema
2 parents 01b23ee + cf399df commit 89dd672

File tree

14 files changed

+21771
-16317
lines changed

14 files changed

+21771
-16317
lines changed

.changeset/brown-radios-report.md

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

packages/common/CHANGELOG.md

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

3+
## 1.19.0
4+
5+
### Minor Changes
6+
7+
- 9dea1b9: Deprecated `rawTableNames` field in `SQLWatchOptions`. All tables specified in `tables` will now be watched, including PowerSync tables with prefixes.
8+
39
## 1.18.1
410

511
### 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.18.1",
3+
"version": "1.19.0",
44
"publishConfig": {
55
"registry": "https://registry.npmjs.org/",
66
"access": "public"

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.18.1"
29+
"@powersync/common": "workspace:^1.19.0"
3030
},
3131
"dependencies": {
3232
"kysely": "^0.27.2"

packages/react-native/CHANGELOG.md

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

3+
## 1.12.3
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [9dea1b9]
8+
- Updated dependencies [70a70d5]
9+
- @powersync/common@1.19.0
10+
- @powersync/react@1.4.4
11+
312
## 1.12.2
413

514
### 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.12.2",
3+
"version": "1.12.3",
44
"publishConfig": {
55
"registry": "https://registry.npmjs.org/",
66
"access": "public"
@@ -30,7 +30,7 @@
3030
"homepage": "https://docs.powersync.com/",
3131
"peerDependencies": {
3232
"@journeyapps/react-native-quick-sqlite": "^1.3.0",
33-
"@powersync/common": "workspace:^1.18.1",
33+
"@powersync/common": "workspace:^1.19.0",
3434
"react": "*",
3535
"react-native": "*"
3636
},

packages/react/CHANGELOG.md

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

3+
## 1.4.4
4+
5+
### Patch Changes
6+
7+
- 70a70d5: Fixed issue with `useQuery` not supporting dynamic query parameters.
8+
- Updated dependencies [9dea1b9]
9+
- @powersync/common@1.19.0
10+
311
## 1.4.3
412

513
### Patch Changes

packages/react/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",
3-
"version": "1.4.3",
3+
"version": "1.4.4",
44
"publishConfig": {
55
"registry": "https://registry.npmjs.org/",
66
"access": "public"
@@ -30,7 +30,7 @@
3030
"homepage": "https://docs.powersync.com",
3131
"peerDependencies": {
3232
"react": "*",
33-
"@powersync/common": "workspace:^1.18.1"
33+
"@powersync/common": "workspace:^1.19.0"
3434
},
3535
"devDependencies": {
3636
"@testing-library/react": "^15.0.2",

packages/react/src/hooks/useQuery.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export const useQuery = <T = any>(
6262
const [isFetching, setIsFetching] = React.useState(true);
6363
const [tables, setTables] = React.useState([]);
6464

65-
const memoizedParams = React.useMemo(() => queryParameters, [...queryParameters]);
65+
const memoizedParams = React.useMemo(() => queryParameters, [JSON.stringify(queryParameters)]);
6666
const memoizedOptions = React.useMemo(() => options, [JSON.stringify(options)]);
6767
const abortController = React.useRef(new AbortController());
6868

packages/web/CHANGELOG.md

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

3+
## 1.8.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [9dea1b9]
8+
- @powersync/common@1.19.0
9+
310
## 1.8.1
411

512
### 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.8.1",
3+
"version": "1.8.2",
44
"description": "A Web SDK for JourneyApps PowerSync",
55
"main": "lib/src/index.js",
66
"types": "lib/src/index.d.ts",
@@ -57,7 +57,7 @@
5757
"license": "Apache-2.0",
5858
"peerDependencies": {
5959
"@journeyapps/wa-sqlite": "^0.3.0",
60-
"@powersync/common": "workspace:^1.18.1"
60+
"@powersync/common": "workspace:^1.19.0"
6161
},
6262
"dependencies": {
6363
"@powersync/common": "workspace:*",

pnpm-lock.yaml

Lines changed: 21723 additions & 16302 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/diagnostics-app/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# diagnostics-app
22

3+
## 0.4.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [70a70d5]
8+
- @powersync/react@1.4.4
9+
- @powersync/web@1.8.2
10+
311
## 0.4.1
412

513
### Patch Changes

tools/diagnostics-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@powersync/diagnostics-app",
3-
"version": "0.4.1",
3+
"version": "0.4.2",
44
"private": true,
55
"scripts": {
66
"dev": "vite",

0 commit comments

Comments
 (0)