update version and change log for 4.4.3

This commit is contained in:
Stephen Lombardo 2021-02-18 10:41:04 -05:00
parent 95c8c6fd49
commit 0663d85002
4 changed files with 15 additions and 6 deletions

View File

@ -1,6 +1,13 @@
# SQLCipher Change Log
All notable changes to this project will be documented in this file.
## [4.4.3] - (February 2021 - [4.4.3 changes])
- Updates baseline to ustream SQLite 3.34.1
- Fixes sqlcipher_export handling of NULL parameters
- Removes randomization of rekey-delete tests to avoid false test failures
- Changes internal usage of sqlite_master to sqlite_schema
- Omits unusued profiling function under certain defines to avoid compiler warnings
## [4.4.2] - (November 2020 - [4.4.2 changes])
- Improve error handling to resolve potential corruption if an encryption operation failed while operating in WAL mode
- Changes to OpenSSL library cryptographic provider to reduce initialization complexity
@ -177,9 +184,11 @@ All notable changes to this project will be documented in this file.
### Security
- Change KDF iteration length from 4,000 to 64,000
[unreleased]: https://github.com/sqlcipher/sqlcipher/compare/v4.4.2...prerelease
[unreleased]: https://github.com/sqlcipher/sqlcipher/compare/v4.4.3...prerelease
[4.4.3]: https://github.com/sqlcipher/sqlcipher/tree/v4.4.3
[4.4.3 changes]: https://github.com/sqlcipher/sqlcipher/compare/v4.4.2...v4.4.3
[4.4.2]: https://github.com/sqlcipher/sqlcipher/tree/v4.4.2
[4.4.2 changes]: https://github.com/sqlcipher/sqlcipher/compare/v4.4.0...v4.4.2
[4.4.2 changes]: https://github.com/sqlcipher/sqlcipher/compare/v4.4.1...v4.4.2
[4.4.1]: https://github.com/sqlcipher/sqlcipher/tree/v4.4.1
[4.4.1 changes]: https://github.com/sqlcipher/sqlcipher/compare/v4.4.0...v4.4.1
[4.4.0]: https://github.com/sqlcipher/sqlcipher/tree/v4.4.0

View File

@ -15,10 +15,10 @@
"requires_arc": false,
"source": {
"git": "https://github.com/sqlcipher/sqlcipher.git",
"tag": "v4.4.2"
"tag": "v4.4.3"
},
"summary": "Full Database Encryption for SQLite.",
"version": "4.4.2",
"version": "4.4.3",
"subspecs": [
{
"compiler_flags": [

View File

@ -59,7 +59,7 @@ void sqlite3pager_reset(Pager *pPager);
#define CIPHER_STR(s) #s
#ifndef CIPHER_VERSION_NUMBER
#define CIPHER_VERSION_NUMBER 4.4.2
#define CIPHER_VERSION_NUMBER 4.4.3
#endif
#ifndef CIPHER_VERSION_BUILD

View File

@ -46,7 +46,7 @@ do_test verify-pragma-cipher-version {
execsql {
PRAGMA cipher_version;
}
} {{4.4.2 community}}
} {{4.4.3 community}}
db close
file delete -force test.db