Update changelog header links
This commit is contained in:
parent
8fe2c3429d
commit
9dd168c7dd
115
CHANGELOG.md
115
CHANGELOG.md
|
@ -1,7 +1,7 @@
|
|||
# SQLCipher Change Log
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
## [4.1.0] - [unreleased]
|
||||
## [4.1.0] - (March 2019 - [4.1.0 changes])
|
||||
- Defer reading salt from header until key derivation is triggered
|
||||
- Clarify usage of sqlite3_rekey for plaintext databases in header
|
||||
- Normalize attach behavior when key is not yet derived
|
||||
|
@ -14,14 +14,14 @@ All notable changes to this project will be documented in this file.
|
|||
- Disable backup API for encrypted databases (this was previously documented as not-working and non-supported, but will now explicitly error out on initialization)
|
||||
- Updates baseline to upstream SQLite 3.27.2
|
||||
|
||||
## [4.0.1] - 2018-12-17
|
||||
## [4.0.1] - (December 2018 - [4.0.1 changes])
|
||||
- Based on upstream SQLite 3.26.0 (addresses SQLite “Magellan” issue)
|
||||
- Adds PRAGMA cipher_compatibility and cipher_default_compatibility which take automatcially configure appropriate compatibility settings for the specified SQLCipher major version number
|
||||
- Filters attach statements with KEY parameters from readline history
|
||||
- Fixes crash in command line shell with empty input (i.e. ^D)
|
||||
- Fixes warnings when compiled with strict-prototypes
|
||||
|
||||
## [4.0.0] - 2018-11-30
|
||||
## [4.0.0] - (November 2018 - [4.0.0 changes])
|
||||
### Changed
|
||||
- Default page size for databases increased to 4096 bytes (up from 1024) *
|
||||
- Default PBKDF2 iterations increased to 256,000 (up from 64,000) *
|
||||
|
@ -54,7 +54,7 @@ All notable changes to this project will be documented in this file.
|
|||
- Fixes compilation with --disable-amalgamation
|
||||
- Removes sqlcipher.xcodeproj build support
|
||||
|
||||
## [3.4.2] - 2017-12-21
|
||||
## [3.4.2] - (December 2017 - [3.4.2 changes])
|
||||
### Added
|
||||
- Added support for building with LibreSSL
|
||||
|
||||
|
@ -69,14 +69,14 @@ All notable changes to this project will be documented in this file.
|
|||
- Guard OpenSSL initialization and cleanup routines
|
||||
- Allow additional linker options to be passed via command line for Windows platforms
|
||||
|
||||
## [3.4.1] - 2016-12-28
|
||||
## [3.4.1] - (December 2016 - [3.4.1 changes])
|
||||
### Added
|
||||
- Added support for OpenSSL 1.1.0
|
||||
|
||||
### Changed
|
||||
- Merged upstream SQLite 3.15.2
|
||||
|
||||
## [3.4.0] - 2016-04-05
|
||||
## [3.4.0] - (April 2016 - [3.4.0 changes])
|
||||
### Added
|
||||
- Added `PRAGMA cipher_provider_version`
|
||||
|
||||
|
@ -86,14 +86,14 @@ All notable changes to this project will be documented in this file.
|
|||
### Deprecated
|
||||
- Deprecated `PRAGMA cipher` command
|
||||
|
||||
## [3.3.1] - 2015-07-13
|
||||
## [3.3.1] - (July 2015 - [3.3.1 changes])
|
||||
### Changed
|
||||
- Merge upstream SQLite 3.8.10.2
|
||||
- Fixed segfault when provided an invalid cipher name
|
||||
- Check for codec context when performing `PRAGMA cipher_store_pass`
|
||||
- Remove extraneous null check in `PRAGMA cipher_migrate`
|
||||
|
||||
## [3.3.0] - 2015-03-25
|
||||
## [3.3.0] - (March 2015 - [3.3.0 changes])
|
||||
### Added
|
||||
- Added FIPS API calls within the OpenSSL crypto provider
|
||||
- `PRAGMA cipher_default_page_size` - support for attaching non-default page sizes
|
||||
|
@ -101,7 +101,7 @@ All notable changes to this project will be documented in this file.
|
|||
### Changed
|
||||
- Merged upstream SQLite 3.8.8.3
|
||||
|
||||
## [3.2.0] - 2014-09-30
|
||||
## [3.2.0] - (September 2014 - [3.2.0 changes])
|
||||
### Added
|
||||
- Added `PRAGMA cipher_store_pass`
|
||||
|
||||
|
@ -109,14 +109,14 @@ All notable changes to this project will be documented in this file.
|
|||
- Merged upstream SQLite 3.8.6
|
||||
- Renmed README to README.md
|
||||
|
||||
## [3.1.0] - 2014-04-23
|
||||
## [3.1.0] - (April 2014 - [3.1.0 changes])
|
||||
### Added
|
||||
- Added `PRAGMA cipher_profile`
|
||||
|
||||
### Changed
|
||||
- Merged upstream SQLite 3.8.4.3
|
||||
|
||||
## [3.0.1] - 2013-12-06
|
||||
## [3.0.1] - (December 2013 - [3.0.1 changes])
|
||||
### Added
|
||||
- Added `PRAGMA cipher_add_random` to source external entropy
|
||||
|
||||
|
@ -124,7 +124,7 @@ All notable changes to this project will be documented in this file.
|
|||
- Fix `PRAGMA cipher_migrate` to handle passphrases longer than 64 characters & raw keys
|
||||
- Improvements to the libtomcrypt provider
|
||||
|
||||
## [3.0.0] - 2013-11-05
|
||||
## [3.0.0] - (November 2013 - [3.0.0 changes])
|
||||
### Added
|
||||
- Added `PRAGMA cipher_migrate` to migrate older database file formats
|
||||
|
||||
|
@ -139,33 +139,64 @@ 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.0.1...prerelease
|
||||
[4.0.1]: https://github.com/sqlcipher/sqlcipher/compare/v4.0.0...v4.0.1
|
||||
[4.0.0]: https://github.com/sqlcipher/sqlcipher/compare/v3.4.2...v4.0.0
|
||||
[3.4.2]: https://github.com/sqlcipher/sqlcipher/compare/v3.4.1...v3.4.2
|
||||
[3.4.1]: https://github.com/sqlcipher/sqlcipher/compare/v3.4.0...v3.4.1
|
||||
[3.4.0]: https://github.com/sqlcipher/sqlcipher/compare/v3.3.1...v3.4.0
|
||||
[3.3.1]: https://github.com/sqlcipher/sqlcipher/compare/v3.3.0...v3.3.1
|
||||
[3.3.0]: https://github.com/sqlcipher/sqlcipher/compare/v3.2.0...v3.3.0
|
||||
[3.2.0]: https://github.com/sqlcipher/sqlcipher/compare/v3.1.0...v3.2.0
|
||||
[3.1.0]: https://github.com/sqlcipher/sqlcipher/compare/v3.0.1...v3.1.0
|
||||
[3.0.1]: https://github.com/sqlcipher/sqlcipher/compare/v3.0.0...v3.0.1
|
||||
[3.0.0]: https://github.com/sqlcipher/sqlcipher/compare/v2.2.0...v3.0.0
|
||||
[2.2.0]: https://github.com/sqlcipher/sqlcipher/compare/v2.1.1...v2.2.0
|
||||
[2.1.1]: https://github.com/sqlcipher/sqlcipher/compare/v2.1.0...v2.1.1
|
||||
[2.1.0]: https://github.com/sqlcipher/sqlcipher/compare/v2.0.6...v2.1.0
|
||||
[2.0.6]: https://github.com/sqlcipher/sqlcipher/compare/v2.0.5...v2.0.6
|
||||
[2.0.5]: https://github.com/sqlcipher/sqlcipher/compare/v2.0.3...v2.0.5
|
||||
[2.0.3]: https://github.com/sqlcipher/sqlcipher/compare/v2.0.0...v2.0.3
|
||||
[2.0.0]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.10...v2.0.0
|
||||
[1.1.10]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.9...v1.1.10
|
||||
[1.1.9]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.8...v1.1.9
|
||||
[1.1.8]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.7...v1.1.8
|
||||
[1.1.7]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.6...v1.1.7
|
||||
[1.1.6]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.5...v1.1.6
|
||||
[1.1.5]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.4...v1.1.5
|
||||
[1.1.4]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.3...v1.1.4
|
||||
[1.1.3]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.2...v1.1.3
|
||||
[1.1.2]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.1...v1.1.1
|
||||
[1.1.1]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.0...v1.1.1
|
||||
[1.1.0]: https://github.com/sqlcipher/sqlcipher/compare/617ed01...v1.1.0
|
||||
[unreleased]: https://github.com/sqlcipher/sqlcipher/compare/v4.1.0...prerelease
|
||||
[4.1.0]: https://github.com/sqlcipher/sqlcipher/tree/v4.1.0
|
||||
[4.1.0 changes]: https://github.com/sqlcipher/sqlcipher/compare/v4.0.1...v4.1.0
|
||||
[4.0.1]: https://github.com/sqlcipher/sqlcipher/tree/v4.0.1
|
||||
[4.0.1 changes]: https://github.com/sqlcipher/sqlcipher/compare/v4.0.0...v4.0.1
|
||||
[4.0.0]: https://github.com/sqlcipher/sqlcipher/tree/v4.0.0
|
||||
[4.0.0 changes]: https://github.com/sqlcipher/sqlcipher/compare/v3.4.2...v4.0.0
|
||||
[3.4.2]: https://github.com/sqlcipher/sqlcipher/tree/v3.4.2
|
||||
[3.4.2 changes]: https://github.com/sqlcipher/sqlcipher/compare/v3.4.1...v3.4.2
|
||||
[3.4.1]: https://github.com/sqlcipher/sqlcipher/tree/v3.4.1
|
||||
[3.4.1 changes]: https://github.com/sqlcipher/sqlcipher/compare/v3.4.0...v3.4.1
|
||||
[3.4.0]: https://github.com/sqlcipher/sqlcipher/tree/v3.4.0
|
||||
[3.4.0 changes]: https://github.com/sqlcipher/sqlcipher/compare/v3.3.1...v3.4.0
|
||||
[3.3.1]: https://github.com/sqlcipher/sqlcipher/tree/v3.3.1
|
||||
[3.3.1 changes]: https://github.com/sqlcipher/sqlcipher/compare/v3.3.0...v3.3.1
|
||||
[3.3.0]: https://github.com/sqlcipher/sqlcipher/tree/v3.3.0
|
||||
[3.3.0 changes]: https://github.com/sqlcipher/sqlcipher/compare/v3.2.0...v3.3.0
|
||||
[3.2.0]: https://github.com/sqlcipher/sqlcipher/tree/v3.2.0
|
||||
[3.2.0 changes]: https://github.com/sqlcipher/sqlcipher/compare/v3.1.0...v3.2.0
|
||||
[3.1.0]: https://github.com/sqlcipher/sqlcipher/tree/v3.1.0
|
||||
[3.1.0 changes]: https://github.com/sqlcipher/sqlcipher/compare/v3.0.1...v3.1.0
|
||||
[3.0.1]: https://github.com/sqlcipher/sqlcipher/tree/v3.0.1
|
||||
[3.0.1 changes]: https://github.com/sqlcipher/sqlcipher/compare/v3.0.0...v3.0.1
|
||||
[3.0.0]: https://github.com/sqlcipher/sqlcipher/tree/v3.0.0
|
||||
[3.0.0 changes]: https://github.com/sqlcipher/sqlcipher/compare/v2.2.0...v3.0.0
|
||||
[2.2.0]: https://github.com/sqlcipher/sqlcipher/tree/v2.2.0
|
||||
[2.2.0 changes]: https://github.com/sqlcipher/sqlcipher/compare/v2.1.1...v2.2.0
|
||||
[2.1.1]: https://github.com/sqlcipher/sqlcipher/tree/v2.1.1
|
||||
[2.1.1 changes]: https://github.com/sqlcipher/sqlcipher/compare/v2.1.0...v2.1.1
|
||||
[2.1.0]: https://github.com/sqlcipher/sqlcipher/tree/v2.1.0
|
||||
[2.1.0 changes]: https://github.com/sqlcipher/sqlcipher/compare/v2.0.6...v2.1.0
|
||||
[2.0.6]: https://github.com/sqlcipher/sqlcipher/tree/v2.0.6
|
||||
[2.0.6 changes]: https://github.com/sqlcipher/sqlcipher/compare/v2.0.5...v2.0.6
|
||||
[2.0.5]: https://github.com/sqlcipher/sqlcipher/tree/v2.0.5
|
||||
[2.0.5 changes]: https://github.com/sqlcipher/sqlcipher/compare/v2.0.3...v2.0.5
|
||||
[2.0.3]: https://github.com/sqlcipher/sqlcipher/tree/v2.0.3
|
||||
[2.0.3 changes]: https://github.com/sqlcipher/sqlcipher/compare/v2.0.0...v2.0.3
|
||||
[2.0.0]: https://github.com/sqlcipher/sqlcipher/tree/v2.0.0
|
||||
[2.0.0 changes]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.10...v2.0.0
|
||||
[1.1.10]: https://github.com/sqlcipher/sqlcipher/tree/v1.1.10
|
||||
[1.1.10 changes]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.9...v1.1.10
|
||||
[1.1.9]: https://github.com/sqlcipher/sqlcipher/tree/v1.1.9
|
||||
[1.1.9 changes]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.8...v1.1.9
|
||||
[1.1.8]: https://github.com/sqlcipher/sqlcipher/tree/v1.1.8
|
||||
[1.1.8 changes]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.7...v1.1.8
|
||||
[1.1.7]: https://github.com/sqlcipher/sqlcipher/tree/v1.1.7
|
||||
[1.1.7 changes]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.6...v1.1.7
|
||||
[1.1.6]: https://github.com/sqlcipher/sqlcipher/tree/v1.1.6
|
||||
[1.1.6 changes]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.5...v1.1.6
|
||||
[1.1.5]: https://github.com/sqlcipher/sqlcipher/tree/v1.1.5
|
||||
[1.1.5 changes]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.4...v1.1.5
|
||||
[1.1.4]: https://github.com/sqlcipher/sqlcipher/tree/v1.1.4
|
||||
[1.1.4 changes]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.3...v1.1.4
|
||||
[1.1.3]: https://github.com/sqlcipher/sqlcipher/tree/v1.1.3
|
||||
[1.1.3 changes]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.2...v1.1.3
|
||||
[1.1.2]: https://github.com/sqlcipher/sqlcipher/tree/v1.1.2
|
||||
[1.1.2 changes]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.1...v1.1.1
|
||||
[1.1.1]: https://github.com/sqlcipher/sqlcipher/tree/v1.1.1
|
||||
[1.1.1 changes]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.0...v1.1.1
|
||||
[1.1.0]: https://github.com/sqlcipher/sqlcipher/tree/v1.1.0
|
||||
[1.1.0 changes]: https://github.com/sqlcipher/sqlcipher/compare/617ed01...v1.1.0
|
||||
|
|
Loading…
Reference in New Issue