Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update PowerSync core extensions to 0.3.11 #76

Merged
merged 1 commit into from
Feb 24, 2025
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
2 changes: 1 addition & 1 deletion .changeset/slow-monkeys-dress.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
"@journeyapps/react-native-quick-sqlite": patch
---

Update PowerSync core extension to 0.3.10
Update PowerSync core extension to 0.3.11
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ android {
}

dependencies {
implementation 'co.powersync:powersync-sqlite-core:0.3.10'
implementation 'co.powersync:powersync-sqlite-core:0.3.11'
//noinspection GradleDynamicVersion
implementation 'com.facebook.react:react-android:+'
}
Expand Down
2 changes: 1 addition & 1 deletion react-native-quick-sqlite.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Pod::Spec.new do |s|

s.dependency "React-callinvoker"
s.dependency "React"
s.dependency "powersync-sqlite-core", "~> 0.3.10"
s.dependency "powersync-sqlite-core", "~> 0.3.11"
if defined?(install_modules_dependencies())
install_modules_dependencies(s)
else
Expand Down
8 changes: 4 additions & 4 deletions tests/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ PODS:
- hermes-engine (0.76.6):
- hermes-engine/Pre-built (= 0.76.6)
- hermes-engine/Pre-built (0.76.6)
- powersync-sqlite-core (0.3.10)
- powersync-sqlite-core (0.3.11)
- RCT-Folly (2024.01.01.00):
- boost
- DoubleConversion
Expand Down Expand Up @@ -1284,7 +1284,7 @@ PODS:
- DoubleConversion
- glog
- hermes-engine
- powersync-sqlite-core (~> 0.3.10)
- powersync-sqlite-core (~> 0.3.11)
- RCT-Folly (= 2024.01.01.00)
- RCTRequired
- RCTTypeSafety
Expand Down Expand Up @@ -1822,7 +1822,7 @@ SPEC CHECKSUMS:
fmt: 10c6e61f4be25dc963c36bd73fc7b1705fe975be
glog: 08b301085f15bcbb6ff8632a8ebaf239aae04e6a
hermes-engine: 1949ca944b195a8bde7cbf6316b9068e19cf53c6
powersync-sqlite-core: c7045a44bb1040485ba46b42a3b0acaed424a5cd
powersync-sqlite-core: 63f9e7adb74044ab7786e4f60e86994d13dcc7a9
RCT-Folly: 84578c8756030547307e4572ab1947de1685c599
RCTDeprecation: 063fc281b30b7dc944c98fe53a7e266dab1a8706
RCTRequired: 8eda2a5a745f6081157a4f34baac40b65fe02b31
Expand Down Expand Up @@ -1852,7 +1852,7 @@ SPEC CHECKSUMS:
React-logger: d42a53754a7252cc7a851315f0da2e46b450ea92
React-Mapbuffer: 89885d1518433a462fe64b68bf5e097997380090
React-microtasksnativemodule: 9010f5187c13b6734cf80358870fff6f3b6fc7b3
react-native-quick-sqlite: 7ead7b43716e474d0c23c8ae0f683b9adddf6935
react-native-quick-sqlite: f3bc6bb8b1ce8598fa7a16ebad8a22b5b2a9c0c5
react-native-safe-area-context: 8b8404e70b0cbf2a56428a17017c14c1dcc16448
React-nativeconfig: 539ff4de6ce3b694e8e751080568c281c84903ce
React-NativeModulesApple: 702246817c286d057e23fe4b1302019796e62521
Expand Down
1 change: 1 addition & 0 deletions tests/tests/sqlite/rawQueries.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ export function registerBaseTests() {
describe('PowerSync', () => {
it('should load the extension', async () => {
const rs = await db.execute('select powersync_rs_version() as version');
console.log('core version', JSON.stringify(rs.rows));
// TODO: Check the version?
// expect(rs.rows.item(0).version).to.equal('0.2.0...');
});
Expand Down
Loading