Skip to content

Commit 585539a

Browse files
authored
Merge branch 'main' into rename-diagnostics
2 parents 2b57556 + 3008dbc commit 585539a

File tree

139 files changed

+5721
-892
lines changed

Some content is hidden

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

139 files changed

+5721
-892
lines changed

.changeset/ninety-bears-own.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@powersync/react': patch
3+
---
4+
5+
Allow using `db.syncStream()` instances in `useQuery` hooks.

.changeset/young-bananas-heal.md

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

.github/workflows/build-packages.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66

77
jobs:
88
build:
9+
timeout-minutes: 10
910
name: Build Packages
1011
runs-on: ubuntu-latest
1112
steps:

.github/workflows/diagnostics-image-build.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ concurrency: ${{ github.workflow }}-${{ github.ref }}
88
jobs:
99
build-docker-image:
1010
name: Build diagnostics-app Docker Image
11+
timeout-minutes: 30
1112
runs-on: ubuntu-latest
1213
steps:
1314
- name: Checkout

.github/workflows/test-isolated.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ jobs:
88
test:
99
name: Test Isolated Demos
1010
runs-on: ubuntu-latest
11+
timeout-minutes: 30
1112
steps:
1213
- uses: actions/checkout@v4
1314
with:

.github/workflows/test-simulators.yaml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ jobs:
2828
needs: check-changes
2929
if: ${{ needs.check-changes.outputs.should_run == 'true' }}
3030
runs-on: ubuntu-xl
31+
timeout-minutes: 30
3132
env:
3233
AVD_NAME: ubuntu-avd-x86_64-31
3334
steps:
@@ -130,8 +131,11 @@ jobs:
130131
test-ios:
131132
name: Test iOS
132133
needs: check-changes
133-
if: ${{ needs.check-changes.outputs.should_run == 'true' }}
134+
# TODO: Re-enable iOS tests. They have been disabled because they are failing extremely frequently without
135+
# any apparent cause. In particular, it seems like even starting the simulator times out most of the time.
136+
if: ${{ false && needs.check-changes.outputs.should_run == 'true' }}
134137
runs-on: macOS-15
138+
timeout-minutes: 30
135139

136140
steps:
137141
- uses: actions/checkout@v4
@@ -141,7 +145,8 @@ jobs:
141145
- name: Set up XCode
142146
uses: maxim-lobanov/setup-xcode@v1
143147
with:
144-
xcode-version: latest-stable
148+
# TODO: Update to latest-stable once GH installs iOS 26 simulators
149+
xcode-version: '^16.4.0'
145150

146151
- name: CocoaPods Cache
147152
uses: actions/cache@v3

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ jobs:
88
test:
99
name: Test Packages
1010
runs-on: ubuntu-xl
11+
timeout-minutes: 30
1112
steps:
1213
- uses: actions/checkout@v4
1314
with:

demos/angular-supabase-todolist/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"@angular/platform-browser-dynamic": "^19.2.4",
2424
"@angular/router": "^19.2.4",
2525
"@angular/service-worker": "^19.2.4",
26-
"@journeyapps/wa-sqlite": "^1.3.1",
26+
"@journeyapps/wa-sqlite": "^1.3.2",
2727
"@powersync/web": "workspace:*",
2828
"@supabase/supabase-js": "^2.44.4",
2929
"rxjs": "~7.8.1",

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.8",
14+
"@journeyapps/react-native-quick-sqlite": "^2.4.9",
1515
"@powersync/common": "workspace:*",
1616
"@powersync/react": "workspace:*",
1717
"@powersync/react-native": "workspace:*",

demos/example-capacitor/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"@capacitor/core": "latest",
2424
"@capacitor/ios": "^6.0.0",
2525
"@capacitor/splash-screen": "latest",
26-
"@journeyapps/wa-sqlite": "^1.3.1",
26+
"@journeyapps/wa-sqlite": "^1.3.2",
2727
"@powersync/react": "workspace:*",
2828
"@powersync/web": "workspace:*",
2929
"react": "^18.2.0",

0 commit comments

Comments
 (0)