Skip to content
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

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions demos/supabase-todolist/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ PODS:
- path_provider_foundation (0.0.1):
- Flutter
- FlutterMacOS
- powersync-sqlite-core (0.4.5)
- powersync-sqlite-core (0.4.6)
- powersync_flutter_libs (0.0.1):
- Flutter
- FlutterMacOS
- powersync-sqlite-core (~> 0.4.5)
- powersync-sqlite-core (~> 0.4.6)
- shared_preferences_foundation (0.0.1):
- Flutter
- FlutterMacOS
Expand Down Expand Up @@ -81,8 +81,8 @@ SPEC CHECKSUMS:
camera_avfoundation: be3be85408cd4126f250386828e9b1dfa40ab436
Flutter: cabc95a1d2626b1b06e7179b784ebcf0c0cde467
path_provider_foundation: 080d55be775b7414fd5a5ef3ac137b97b097e564
powersync-sqlite-core: 6f32860379009d2a37cadc9e9427a431bdbd83c8
powersync_flutter_libs: b2cd15651535031defb8f2799fa05e07d9514ecd
powersync-sqlite-core: 42c4a42a692b3b770a5488778789430d67a39b49
powersync_flutter_libs: 19fc6b96ff8155ffea72a08990f6c9f2e712b8a6
shared_preferences_foundation: 9e1978ff2562383bd5676f64ec4e9aa8fa06a6f7
sqlite3: 73513155ec6979715d3904ef53a8d68892d4032b
sqlite3_flutter_libs: 83f8e9f5b6554077f1d93119fe20ebaa5f3a9ef1
Expand Down
8 changes: 4 additions & 4 deletions demos/supabase-todolist/macos/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ PODS:
- path_provider_foundation (0.0.1):
- Flutter
- FlutterMacOS
- powersync-sqlite-core (0.4.5)
- powersync-sqlite-core (0.4.6)
- powersync_flutter_libs (0.0.1):
- Flutter
- FlutterMacOS
- powersync-sqlite-core (~> 0.4.5)
- powersync-sqlite-core (~> 0.4.6)
- shared_preferences_foundation (0.0.1):
- Flutter
- FlutterMacOS
Expand Down Expand Up @@ -75,8 +75,8 @@ SPEC CHECKSUMS:
app_links: 05a6ec2341985eb05e9f97dc63f5837c39895c3f
FlutterMacOS: d0db08ddef1a9af05a5ec4b724367152bb0500b1
path_provider_foundation: 080d55be775b7414fd5a5ef3ac137b97b097e564
powersync-sqlite-core: 6f32860379009d2a37cadc9e9427a431bdbd83c8
powersync_flutter_libs: b2cd15651535031defb8f2799fa05e07d9514ecd
powersync-sqlite-core: 42c4a42a692b3b770a5488778789430d67a39b49
powersync_flutter_libs: 19fc6b96ff8155ffea72a08990f6c9f2e712b8a6
shared_preferences_foundation: 9e1978ff2562383bd5676f64ec4e9aa8fa06a6f7
sqlite3: 73513155ec6979715d3904ef53a8d68892d4032b
sqlite3_flutter_libs: 83f8e9f5b6554077f1d93119fe20ebaa5f3a9ef1
Expand Down
11 changes: 7 additions & 4 deletions packages/powersync_core/lib/src/database/core_version.dart
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,13 @@ extension type const PowerSyncCoreVersion((int, int, int) _tuple) {
/// The minimum version of the sqlite core extensions we support. We check
/// this version when opening databases to fail early and with an actionable
/// error message.
// Note: When updating this, also update the download URL in
// scripts/init_powersync_core_binary.dart and the version ref in
// packages/sqlite3_wasm_build/build.sh
static const minimum = PowerSyncCoreVersion((0, 4, 5));
// Note: When updating this, also update:
//
// - scripts/init_powersync_core_binary.dart
// - scripts/download_core_binary_demos.dart
// - packages/sqlite3_wasm_build/build.sh
// - Android and Darwin (CocoaPods and SwiftPM) in powersync_flutter_libs
static const minimum = PowerSyncCoreVersion((0, 4, 6));

/// The first version of the core extensions that this version of the Dart
/// SDK doesn't support.
Expand Down
2 changes: 1 addition & 1 deletion packages/powersync_flutter_libs/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,5 @@ android {
}

dependencies {
implementation 'com.powersync:powersync-sqlite-core:0.4.5'
implementation 'com.powersync:powersync-sqlite-core:0.4.6'
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ A new Flutter FFI plugin project.
s.osx.deployment_target = '10.15'

# NOTE: Always update Package.swift as well when updating this!
s.dependency "powersync-sqlite-core", "~> 0.4.5"
s.dependency "powersync-sqlite-core", "~> 0.4.6"

# Flutter.framework does not contain a i386 slice.
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ let package = Package(
.package(
url: "https://github.com/powersync-ja/powersync-sqlite-core-swift.git",
// Note: Always update podspec as well when updating this.
exact: "0.4.5"
exact: "0.4.6"
)
],
targets: [
Expand Down
2 changes: 1 addition & 1 deletion packages/sqlite3_wasm_build/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -e

SQLITE_VERSION="2.9.0"
POWERSYNC_CORE_VERSION="0.4.5"
POWERSYNC_CORE_VERSION="0.4.6"
SQLITE_PATH="sqlite3.dart"

if [ -d "$SQLITE_PATH" ]; then
Expand Down
2 changes: 1 addition & 1 deletion scripts/download_core_binary_demos.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import 'dart:io';

final coreUrl =
'https://github.com/powersync-ja/powersync-sqlite-core/releases/download/v0.4.5';
'https://github.com/powersync-ja/powersync-sqlite-core/releases/download/v0.4.6';

void main() async {
final powersyncLibsLinuxPath = "packages/powersync_flutter_libs/linux";
Expand Down
2 changes: 1 addition & 1 deletion scripts/init_powersync_core_binary.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import 'dart:io';
import 'package:melos/melos.dart';

final sqliteUrl =
'https://github.com/powersync-ja/powersync-sqlite-core/releases/download/v0.4.5';
'https://github.com/powersync-ja/powersync-sqlite-core/releases/download/v0.4.6';

void main() async {
final sqliteCoreFilename = getLibraryForPlatform();
Expand Down