Skip to content

Commit af52522

Browse files
committed
Update SQLite to 3.49.2
1 parent 6fee9ac commit af52522

File tree

10 files changed

+16
-12
lines changed

10 files changed

+16
-12
lines changed

sqlite3/assets/wasm/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ include(FetchContent)
1212
FetchContent_Declare(
1313
sqlite3
1414
# NOTE: When changing this, also update `test/wasm/sqlite3_test.dart`
15-
URL https://sqlite.org/2025/sqlite-autoconf-3490100.tar.gz
15+
URL https://sqlite.org/2025/sqlite-autoconf-3490200.tar.gz
1616
DOWNLOAD_EXTRACT_TIMESTAMP NEW
1717
)
1818

1919
FetchContent_Declare(
2020
sqlite3mc
21-
URL https://github.com/utelle/SQLite3MultipleCiphers/releases/download/v2.0.4/sqlite3mc-2.0.4-sqlite-3.49.1-amalgamation.zip
21+
URL https://github.com/utelle/SQLite3MultipleCiphers/releases/download/v2.1.1/sqlite3mc-2.1.1-sqlite-3.49.2-amalgamation.zip
2222
DOWNLOAD_EXTRACT_TIMESTAMP NEW
2323
)
2424

sqlite3_flutter_libs/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.5.33
2+
3+
- Upgrade sqlite to version `3.49.2`.
4+
15
## 0.5.32
26

37
- Enable builtin math functions.

sqlite3_flutter_libs/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ android {
3232
}
3333

3434
dependencies {
35-
implementation 'eu.simonbinder:sqlite3-native-library:3.49.1+1'
35+
implementation 'eu.simonbinder:sqlite3-native-library:3.49.2'
3636
}

sqlite3_flutter_libs/darwin/sqlite3_flutter_libs.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Pod::Spec.new do |s|
2020
}
2121
s.swift_version = '5.0'
2222

23-
s.dependency 'sqlite3', '~> 3.49.1'
23+
s.dependency 'sqlite3', '~> 3.49.2'
2424
s.dependency 'sqlite3/fts5'
2525
s.dependency 'sqlite3/perf-threadsafe'
2626
s.dependency 'sqlite3/rtree'

sqlite3_flutter_libs/darwin/sqlite3_flutter_libs/Package.resolved

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sqlite3_flutter_libs/darwin/sqlite3_flutter_libs/Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ let package = Package(
1313
.library(name: "sqlite3-flutter-libs", type: .static, targets: ["sqlite3_flutter_libs"])
1414
],
1515
dependencies: [
16-
.package(url: "https://github.com/simolus3/CSQLite.git", revision: "a8d28afef08ad8faa4ee9ef7845f61c2e8ac5810")
16+
.package(url: "https://github.com/simolus3/CSQLite.git", revision: "835349f65fe2c7ba6558616f1a5e0aa7c0c9c897")
1717
],
1818
targets: [
1919
.target(

sqlite3_flutter_libs/linux/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ if (CMAKE_VERSION VERSION_GREATER_EQUAL "3.24.0")
1313
# We can't really ask users to use a cmake that recent, so there's this if here.
1414
FetchContent_Declare(
1515
sqlite3
16-
URL https://sqlite.org/2025/sqlite-autoconf-3490100.tar.gz
16+
URL https://sqlite.org/2025/sqlite-autoconf-3490200.tar.gz
1717
DOWNLOAD_EXTRACT_TIMESTAMP NEW
1818
)
1919
else()
2020
FetchContent_Declare(
2121
sqlite3
22-
URL https://sqlite.org/2025/sqlite-autoconf-3490100.tar.gz
22+
URL https://sqlite.org/2025/sqlite-autoconf-3490200.tar.gz
2323
)
2424
endif()
2525
FetchContent_MakeAvailable(sqlite3)

sqlite3_flutter_libs/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: sqlite3_flutter_libs
22
description: Flutter plugin to include native sqlite3 libraries with your app
3-
version: 0.5.32
3+
version: 0.5.33
44
homepage: https://github.com/simolus3/sqlite3.dart/tree/main/sqlite3_flutter_libs
55
issue_tracker: https://github.com/simolus3/sqlite3.dart/issues
66

sqlite3_flutter_libs/windows/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ if (CMAKE_VERSION VERSION_GREATER_EQUAL "3.24.0")
2929
# We can't really ask users to use a cmake that recent, so there's this if here.
3030
FetchContent_Declare(
3131
sqlite3
32-
URL https://sqlite.org/2025/sqlite-autoconf-3490100.tar.gz
32+
URL https://sqlite.org/2025/sqlite-autoconf-3490200.tar.gz
3333
DOWNLOAD_EXTRACT_TIMESTAMP NEW
3434
)
3535
else()
3636
FetchContent_Declare(
3737
sqlite3
38-
URL https://sqlite.org/2025/sqlite-autoconf-3490100.tar.gz
38+
URL https://sqlite.org/2025/sqlite-autoconf-3490200.tar.gz
3939
)
4040
endif()
4141
FetchContent_MakeAvailable(sqlite3)

sqlite3_native_assets/lib/src/source.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ final class DownloadAmalgamation implements SqliteSource {
2626
final String uri;
2727

2828
const DownloadAmalgamation({
29-
this.uri = 'https://sqlite.org/2025/sqlite-amalgamation-3490100.zip',
29+
this.uri = 'https://sqlite.org/2025/sqlite-amalgamation-3490200.zip',
3030
});
3131
}
3232

0 commit comments

Comments
 (0)