update version to 4.3.0
This commit is contained in:
parent
9bbfd5da3b
commit
924e0ef0f8
15
CHANGELOG.md
15
CHANGELOG.md
|
@ -1,6 +1,17 @@
|
||||||
# SQLCipher Change Log
|
# SQLCipher Change Log
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
## [4.3.0] - (November 2019 - [4.3.0 changes])
|
||||||
|
- Updates baseline to upstream SQLite 3.30.1
|
||||||
|
- PRAGMA key now returns text result value "ok" after execution
|
||||||
|
- Adjusts backup API so that encrypted to encrypted backups are permitted
|
||||||
|
- Adds NSS crypto provider implementation
|
||||||
|
- Fixes OpenSSL provider compatibility with BoringSSL
|
||||||
|
- Separates memory related traces to reduce verbosity of logging
|
||||||
|
- Fixes output of PRAGMA cipher_integrity_check on big endian platforms
|
||||||
|
- Cryptograpic provider interface cleanup
|
||||||
|
- Resolves miscellaneous build warnings
|
||||||
|
|
||||||
## [4.2.0] - (May 2019 - [4.2.0 changes])
|
## [4.2.0] - (May 2019 - [4.2.0 changes])
|
||||||
- Adds PRAGMA cipher_integrity_check to perform independent verification of page HMACs
|
- Adds PRAGMA cipher_integrity_check to perform independent verification of page HMACs
|
||||||
- Updates baseline to upstream SQLite 3.28.0
|
- Updates baseline to upstream SQLite 3.28.0
|
||||||
|
@ -145,7 +156,9 @@ All notable changes to this project will be documented in this file.
|
||||||
### Security
|
### Security
|
||||||
- Change KDF iteration length from 4,000 to 64,000
|
- Change KDF iteration length from 4,000 to 64,000
|
||||||
|
|
||||||
[unreleased]: https://github.com/sqlcipher/sqlcipher/compare/v4.2.0...prerelease
|
[unreleased]: https://github.com/sqlcipher/sqlcipher/compare/v4.3.0...prerelease
|
||||||
|
[4.3.0]: https://github.com/sqlcipher/sqlcipher/tree/v4.3.0
|
||||||
|
[4.3.0 changes]: https://github.com/sqlcipher/sqlcipher/compare/v4.2.0...v4.3.0
|
||||||
[4.2.0]: https://github.com/sqlcipher/sqlcipher/tree/v4.2.0
|
[4.2.0]: https://github.com/sqlcipher/sqlcipher/tree/v4.2.0
|
||||||
[4.2.0 changes]: https://github.com/sqlcipher/sqlcipher/compare/v4.1.0...v4.2.0
|
[4.2.0 changes]: https://github.com/sqlcipher/sqlcipher/compare/v4.1.0...v4.2.0
|
||||||
[4.1.0]: https://github.com/sqlcipher/sqlcipher/tree/v4.1.0
|
[4.1.0]: https://github.com/sqlcipher/sqlcipher/tree/v4.1.0
|
||||||
|
|
|
@ -15,10 +15,10 @@
|
||||||
"requires_arc": false,
|
"requires_arc": false,
|
||||||
"source": {
|
"source": {
|
||||||
"git": "https://github.com/sqlcipher/sqlcipher.git",
|
"git": "https://github.com/sqlcipher/sqlcipher.git",
|
||||||
"tag": "v4.2.0"
|
"tag": "v4.3.0"
|
||||||
},
|
},
|
||||||
"summary": "Full Database Encryption for SQLite.",
|
"summary": "Full Database Encryption for SQLite.",
|
||||||
"version": "4.2.0",
|
"version": "4.3.0",
|
||||||
"subspecs": [
|
"subspecs": [
|
||||||
{
|
{
|
||||||
"compiler_flags": [
|
"compiler_flags": [
|
||||||
|
|
|
@ -59,7 +59,7 @@ void sqlite3pager_reset(Pager *pPager);
|
||||||
#define CIPHER_STR(s) #s
|
#define CIPHER_STR(s) #s
|
||||||
|
|
||||||
#ifndef CIPHER_VERSION_NUMBER
|
#ifndef CIPHER_VERSION_NUMBER
|
||||||
#define CIPHER_VERSION_NUMBER 4.2.0
|
#define CIPHER_VERSION_NUMBER 4.3.0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef CIPHER_VERSION_BUILD
|
#ifndef CIPHER_VERSION_BUILD
|
||||||
|
|
|
@ -46,7 +46,7 @@ do_test verify-pragma-cipher-version {
|
||||||
execsql {
|
execsql {
|
||||||
PRAGMA cipher_version;
|
PRAGMA cipher_version;
|
||||||
}
|
}
|
||||||
} {{4.2.0 community}}
|
} {{4.3.0 community}}
|
||||||
db close
|
db close
|
||||||
file delete -force test.db
|
file delete -force test.db
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue