Skip to content

Commit 39d7216

Browse files
Merge remote-tracking branch 'origin/main' into watches
2 parents bf7a177 + 9fb898d commit 39d7216

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+401
-286
lines changed

.changeset/cuddly-dingos-check.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
'@powersync/node': patch
3+
---
4+
Fixed an issue where `readLock` and `writeLock` calls were unnecessarily serialized due to a shared mutex. This did not affect individual calls to `get`, `getAll`, or `getOptional`.

.changeset/mighty-doors-judge.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
'@powersync/op-sqlite': patch
3+
'@powersync/react-native': patch
4+
'@powersync/node': patch
5+
'@powersync/web': patch
6+
---
7+
8+
Update PowerSync core extension to 0.4.2

.changeset/orange-baboons-work.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
'@powersync/react-native': patch
3+
'@powersync/common': patch
4+
'@powersync/web': patch
5+
'@powersync/node': patch
6+
---
7+
8+
Fix sync stream delays during CRUD upload.

.changeset/short-countries-swim.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@powersync/common': patch
3+
---
4+
5+
[Internal] Removed shared mutex implementation of `readLock` and `writeLock`.

.github/workflows/test-simulators.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
id: check
1818
run: |
1919
git fetch origin ${{ github.base_ref }}
20-
if git diff --quiet origin/${{ github.base_ref }} -- packages/common packages/powersync-op-sqlite; then
20+
if git diff --quiet origin/${{ github.base_ref }} -- packages/common packages/powersync-op-sqlite tools/powersynctests; then
2121
echo "should_run=false" >> $GITHUB_OUTPUT
2222
else
2323
echo "should_run=true" >> $GITHUB_OUTPUT

demos/django-react-native-todolist/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"@azure/core-asynciterator-polyfill": "^1.0.2",
1212
"@expo/metro-runtime": "^4.0.1",
1313
"@expo/vector-icons": "^14.0.0",
14-
"@journeyapps/react-native-quick-sqlite": "^2.4.5",
14+
"@journeyapps/react-native-quick-sqlite": "^2.4.6",
1515
"@powersync/common": "workspace:*",
1616
"@powersync/react": "workspace:*",
1717
"@powersync/react-native": "workspace:*",

demos/react-native-supabase-group-chat/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"@azure/core-asynciterator-polyfill": "^1.0.2",
2323
"@expo/metro-runtime": "^4.0.1",
2424
"@faker-js/faker": "8.3.1",
25-
"@journeyapps/react-native-quick-sqlite": "^2.4.5",
25+
"@journeyapps/react-native-quick-sqlite": "^2.4.6",
2626
"@powersync/common": "workspace:*",
2727
"@powersync/react": "workspace:*",
2828
"@powersync/react-native": "workspace:*",

demos/react-native-supabase-todolist/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"dependencies": {
1111
"@azure/core-asynciterator-polyfill": "^1.0.2",
1212
"@expo/vector-icons": "^14.0.3",
13-
"@journeyapps/react-native-quick-sqlite": "^2.4.5",
13+
"@journeyapps/react-native-quick-sqlite": "^2.4.6",
1414
"@powersync/attachments": "workspace:*",
1515
"@powersync/common": "workspace:*",
1616
"@powersync/react": "workspace:*",

demos/react-native-web-supabase-todolist/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"@azure/core-asynciterator-polyfill": "^1.0.2",
1414
"@expo/metro-runtime": "^4.0.1",
1515
"@expo/vector-icons": "^14.0.2",
16-
"@journeyapps/react-native-quick-sqlite": "^2.4.5",
16+
"@journeyapps/react-native-quick-sqlite": "^2.4.6",
1717
"@journeyapps/wa-sqlite": "^1.2.0",
1818
"@powersync/attachments": "workspace:*",
1919
"@powersync/react": "workspace:*",

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.33.1"
32+
"@powersync/common": "workspace:^1.33.2"
3333
},
3434
"devDependencies": {
3535
"@powersync/common": "workspace:*",

0 commit comments

Comments
 (0)