Skip to content

Commit

Permalink
#5131 SQLite updated to 3.47.1 (except for SQLCipher, which is still …
Browse files Browse the repository at this point in the history
…on 3.46.1 at the moment).
  • Loading branch information
pawelsalawa committed Nov 29, 2024
1 parent 844901d commit 291952e
Show file tree
Hide file tree
Showing 11 changed files with 60,452 additions and 24,559 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lin_release.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
env:
QT_VERSION: '5.15.2'
TCL_VERSION: '8.6'
SQLITE_VERSION: '3410200'
SQLITE_RELEASE_YEAR: '2023'
SQLITE_VERSION: '3470100'
SQLITE_RELEASE_YEAR: '2024'
PYTHON_VERSION: '3.9'
PORTABLE_DIR: ${{ github.workspace }}/output/portable/SQLiteStudio
INSTALLBUILDER_DIR: ../ib
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/mac_release.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
env:
QT_VERSION: '5.15.2'
TCL_VERSION: '8.6'
SQLITE_VERSION: '3410200'
SQLITE_RELEASE_YEAR: '2023'
SQLITE_VERSION: '3470100'
SQLITE_RELEASE_YEAR: '2024'
PYTHON_VERSION: '3.9'
ICU_VERSION: '72.1'
PORTABLE_DIR: ${{ github.workspace }}/output/portable/SQLiteStudio
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/win32_release.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
env:
QT_VERSION: '5.15.2'
SQLITE_VERSION: '3410200'
SQLITE_RELEASE_YEAR: '2023'
SQLITE_VERSION: '3470100'
SQLITE_RELEASE_YEAR: '2024'
QT_ARCH: 'win32_mingw81'
PYTHON_VERSION: '3.9'
ICU_VER: '72'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/win64_release.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
env:
QT_VERSION: '5.15.2'
SQLITE_VERSION: '3410200'
SQLITE_RELEASE_YEAR: '2023'
SQLITE_VERSION: '3470100'
SQLITE_RELEASE_YEAR: '2024'
QT_ARCH: 'win64_mingw81'
PYTHON_VERSION: '3.9'
ICU_VER: '72'
Expand Down
1 change: 1 addition & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# ChangeLog

### 3.4.7
- CHANGE: #5131 SQLite updated to 3.47.1 (except for SQLCipher, which is still on 3.46.1 at the moment).
- BUGFIX: #5119 Fixed very bad performance of import() function executed from SQL Editor.
- BUGFIX: #5124 Fixed ScriptingPython plugin compilation against Python >= 3.12.
- BUGFIX: #5134 Improved performance significantly when working with big values (~1MB per cell) in multiple columns/rows of a table data grid view.
Expand Down
41,992 changes: 28,918 additions & 13,074 deletions Plugins/DbSqliteCipher/sqlcipher.c

Large diffs are not rendered by default.

1,057 changes: 823 additions & 234 deletions Plugins/DbSqliteCipher/sqlcipher.h

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Plugins/DbSqliteCipher/update_sqlite_version.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# Download page:
# https://github.com/sqlcipher/sqlcipher/releases

set THE_URL "https://codeload.github.com/sqlcipher/sqlcipher/zip/v4.5.3"
set THE_URL "https://codeload.github.com/sqlcipher/sqlcipher/zip/v4.6.1"

proc process {} {
if {[catch {
Expand Down
2 changes: 1 addition & 1 deletion Plugins/DbSqliteWx/update_sqlite_version.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# https://github.com/utelle/wxsqlite3/releases
# Link from download page will redicrect to the codeload.....

set THE_URL "https://github.com/utelle/SQLite3MultipleCiphers/releases/download/v1.6.2/sqlite3mc-1.6.2-sqlite-3.41.2-amalgamation.zip"
set THE_URL "https://github.com/utelle/SQLite3MultipleCiphers/releases/download/v1.9.1/sqlite3mc-1.9.1-sqlite-3.47.1-amalgamation.zip"

set SRC_DIR "src"
set FILES [list \
Expand Down
Loading

0 comments on commit 291952e

Please sign in to comment.