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
2 changes: 1 addition & 1 deletion packages/powersync_core/lib/src/database/core_version.dart
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ extension type const PowerSyncCoreVersion((int, int, int) _tuple) {
// - 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, 10));
static const minimum = PowerSyncCoreVersion((0, 4, 11));

/// The first version of the core extensions that this version of the Dart
/// SDK doesn't support.
Expand Down
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.10"
s.dependency "powersync-sqlite-core", "~> 0.4.11"

# 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.10"
exact: "0.4.11"
)
],
targets: [
Expand Down
28 changes: 14 additions & 14 deletions packages/powersync_sqlcipher/example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ packages:
dependency: transitive
description:
name: characters
sha256: f71061c654a3380576a52b451dd5532377954cf9dbd272a78fc8479606670803
sha256: faf38497bda5ead2a8c7615f4f7939df04333478bf32e4173fcb06d428b5716b
url: "https://pub.dev"
source: hosted
version: "1.4.0"
version: "1.4.1"
checked_yaml:
dependency: transitive
description:
Expand Down Expand Up @@ -206,26 +206,26 @@ packages:
dependency: transitive
description:
name: matcher
sha256: dc58c723c3c24bf8d3e2d3ad3f2f9d7bd9cf43ec6feaa64181775e60190153f2
sha256: "12956d0ad8390bbcc63ca2e1469c0619946ccb52809807067a7020d57e647aa6"
url: "https://pub.dev"
source: hosted
version: "0.12.17"
version: "0.12.18"
material_color_utilities:
dependency: transitive
description:
name: material_color_utilities
sha256: f7142bb1154231d7ea5f96bc7bde4bda2a0945d2806bb11670e30b850d56bdec
sha256: "9c337007e82b1889149c82ed242ed1cb24a66044e30979c44912381e9be4c48b"
url: "https://pub.dev"
source: hosted
version: "0.11.1"
version: "0.13.0"
meta:
dependency: transitive
description:
name: meta
sha256: e3641ec5d63ebf0d9b41bd43201a66e3fc79a65db5f61fc181f04cd27aab950c
sha256: "23f08335362185a5ea2ad3a4e597f1375e78bce8a040df5c600c8d3552ef2394"
url: "https://pub.dev"
source: hosted
version: "1.16.0"
version: "1.17.0"
mime:
dependency: transitive
description:
Expand Down Expand Up @@ -320,21 +320,21 @@ packages:
path: "../../powersync_core"
relative: true
source: path
version: "1.6.2"
version: "1.7.0"
powersync_flutter_libs:
dependency: "direct overridden"
description:
path: "../../powersync_flutter_libs"
relative: true
source: path
version: "0.4.13"
version: "0.4.14"
powersync_sqlcipher:
dependency: "direct main"
description:
path: ".."
relative: true
source: path
version: "0.1.14"
version: "0.1.15"
process:
dependency: transitive
description:
Expand Down Expand Up @@ -472,10 +472,10 @@ packages:
dependency: transitive
description:
name: test_api
sha256: "522f00f556e73044315fa4585ec3270f1808a4b186c936e612cab0b565ff1e00"
sha256: "19a78f63e83d3a61f00826d09bc2f60e191bf3504183c001262be6ac75589fb8"
url: "https://pub.dev"
source: hosted
version: "0.7.6"
version: "0.7.8"
typed_data:
dependency: transitive
description:
Expand Down Expand Up @@ -541,5 +541,5 @@ packages:
source: hosted
version: "3.1.3"
sdks:
dart: ">=3.8.0 <4.0.0"
dart: ">=3.9.0-0 <4.0.0"
flutter: ">=3.27.0"
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.10"
POWERSYNC_CORE_VERSION="0.4.11"
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.10';
'https://github.com/powersync-ja/powersync-sqlite-core/releases/download/v0.4.11';

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.10';
'https://github.com/powersync-ja/powersync-sqlite-core/releases/download/v0.4.11';

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