File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# SQLCipher Change Log
22All notable changes to this project will be documented in this file.
33
4+ ## [ 4.4.2] - (November 2020 - [ 4.4.2 changes] )
5+ - Improve error handling to resolve potential corruption if an encryption operation failed while operating in WAL mode
6+ - Changes to OpenSSL library cryptographic provider to reduce initialization complexity
7+ - Adjust cipher_integrity_check to skip locking page to avoid a spurious error report for very large databases
8+ - Miscellaneous code and comment cleanup
9+
410## [ 4.4.1] - (October 2020 - [ 4.4.1 changes] )
511- Updates baseline to upstream SQLite 3.33.0
612- Fixes double-free bug in cipher_default_plaintext_header_size
@@ -171,7 +177,9 @@ All notable changes to this project will be documented in this file.
171177### Security
172178- Change KDF iteration length from 4,000 to 64,000
173179
174- [ unreleased ] : https://github.com/sqlcipher/sqlcipher/compare/v4.4.1...prerelease
180+ [ unreleased ] : https://github.com/sqlcipher/sqlcipher/compare/v4.4.2...prerelease
181+ [ 4.4.2 ] : https://github.com/sqlcipher/sqlcipher/tree/v4.4.2
182+ [ 4.4.2 changes ] : https://github.com/sqlcipher/sqlcipher/compare/v4.4.0...v4.4.2
175183[ 4.4.1 ] : https://github.com/sqlcipher/sqlcipher/tree/v4.4.1
176184[ 4.4.1 changes ] : https://github.com/sqlcipher/sqlcipher/compare/v4.4.0...v4.4.1
177185[ 4.4.0 ] : https://github.com/sqlcipher/sqlcipher/tree/v4.4.0
Original file line number Diff line number Diff line change 1515 "requires_arc" : false ,
1616 "source" : {
1717 "git" : " https://github.com/sqlcipher/sqlcipher.git" ,
18- "tag" : " v4.4.1 "
18+ "tag" : " v4.4.2 "
1919 },
2020 "summary" : " Full Database Encryption for SQLite." ,
21- "version" : " 4.4.1 " ,
21+ "version" : " 4.4.2 " ,
2222 "subspecs" : [
2323 {
2424 "compiler_flags" : [
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ void sqlite3pager_reset(Pager *pPager);
5959#define CIPHER_STR (s ) #s
6060
6161#ifndef CIPHER_VERSION_NUMBER
62- #define CIPHER_VERSION_NUMBER 4.4.1
62+ #define CIPHER_VERSION_NUMBER 4.4.2
6363#endif
6464
6565#ifndef CIPHER_VERSION_BUILD
You can’t perform that action at this time.
0 commit comments