Skip to content

Commit 9dd168c

Browse files
Update changelog header links
1 parent 8fe2c34 commit 9dd168c

File tree

1 file changed

+73
-42
lines changed

1 file changed

+73
-42
lines changed

CHANGELOG.md

Lines changed: 73 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SQLCipher Change Log
22
All notable changes to this project will be documented in this file.
33

4-
## [4.1.0] - [unreleased]
4+
## [4.1.0] - (March 2019 - [4.1.0 changes])
55
- Defer reading salt from header until key derivation is triggered
66
- Clarify usage of sqlite3_rekey for plaintext databases in header
77
- 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.
1414
- Disable backup API for encrypted databases (this was previously documented as not-working and non-supported, but will now explicitly error out on initialization)
1515
- Updates baseline to upstream SQLite 3.27.2
1616

17-
## [4.0.1] - 2018-12-17
17+
## [4.0.1] - (December 2018 - [4.0.1 changes])
1818
- Based on upstream SQLite 3.26.0 (addresses SQLite “Magellan” issue)
1919
- Adds PRAGMA cipher_compatibility and cipher_default_compatibility which take automatcially configure appropriate compatibility settings for the specified SQLCipher major version number
2020
- Filters attach statements with KEY parameters from readline history
2121
- Fixes crash in command line shell with empty input (i.e. ^D)
2222
- Fixes warnings when compiled with strict-prototypes
2323

24-
## [4.0.0] - 2018-11-30
24+
## [4.0.0] - (November 2018 - [4.0.0 changes])
2525
### Changed
2626
- Default page size for databases increased to 4096 bytes (up from 1024) *
2727
- 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.
5454
- Fixes compilation with --disable-amalgamation
5555
- Removes sqlcipher.xcodeproj build support
5656

57-
## [3.4.2] - 2017-12-21
57+
## [3.4.2] - (December 2017 - [3.4.2 changes])
5858
### Added
5959
- Added support for building with LibreSSL
6060

@@ -69,14 +69,14 @@ All notable changes to this project will be documented in this file.
6969
- Guard OpenSSL initialization and cleanup routines
7070
- Allow additional linker options to be passed via command line for Windows platforms
7171

72-
## [3.4.1] - 2016-12-28
72+
## [3.4.1] - (December 2016 - [3.4.1 changes])
7373
### Added
7474
- Added support for OpenSSL 1.1.0
7575

7676
### Changed
7777
- Merged upstream SQLite 3.15.2
7878

79-
## [3.4.0] - 2016-04-05
79+
## [3.4.0] - (April 2016 - [3.4.0 changes])
8080
### Added
8181
- Added `PRAGMA cipher_provider_version`
8282

@@ -86,45 +86,45 @@ All notable changes to this project will be documented in this file.
8686
### Deprecated
8787
- Deprecated `PRAGMA cipher` command
8888

89-
## [3.3.1] - 2015-07-13
89+
## [3.3.1] - (July 2015 - [3.3.1 changes])
9090
### Changed
9191
- Merge upstream SQLite 3.8.10.2
9292
- Fixed segfault when provided an invalid cipher name
9393
- Check for codec context when performing `PRAGMA cipher_store_pass`
9494
- Remove extraneous null check in `PRAGMA cipher_migrate`
9595

96-
## [3.3.0] - 2015-03-25
96+
## [3.3.0] - (March 2015 - [3.3.0 changes])
9797
### Added
9898
- Added FIPS API calls within the OpenSSL crypto provider
9999
- `PRAGMA cipher_default_page_size` - support for attaching non-default page sizes
100100

101101
### Changed
102102
- Merged upstream SQLite 3.8.8.3
103103

104-
## [3.2.0] - 2014-09-30
104+
## [3.2.0] - (September 2014 - [3.2.0 changes])
105105
### Added
106106
- Added `PRAGMA cipher_store_pass`
107107

108108
### Changed
109109
- Merged upstream SQLite 3.8.6
110110
- Renmed README to README.md
111111

112-
## [3.1.0] - 2014-04-23
112+
## [3.1.0] - (April 2014 - [3.1.0 changes])
113113
### Added
114114
- Added `PRAGMA cipher_profile`
115115

116116
### Changed
117117
- Merged upstream SQLite 3.8.4.3
118118

119-
## [3.0.1] - 2013-12-06
119+
## [3.0.1] - (December 2013 - [3.0.1 changes])
120120
### Added
121121
- Added `PRAGMA cipher_add_random` to source external entropy
122122

123123
### Changed
124124
- Fix `PRAGMA cipher_migrate` to handle passphrases longer than 64 characters & raw keys
125125
- Improvements to the libtomcrypt provider
126126

127-
## [3.0.0] - 2013-11-05
127+
## [3.0.0] - (November 2013 - [3.0.0 changes])
128128
### Added
129129
- Added `PRAGMA cipher_migrate` to migrate older database file formats
130130

@@ -139,33 +139,64 @@ All notable changes to this project will be documented in this file.
139139
### Security
140140
- Change KDF iteration length from 4,000 to 64,000
141141

142-
[unreleased]: https://github.com/sqlcipher/sqlcipher/compare/v4.0.1...prerelease
143-
[4.0.1]: https://github.com/sqlcipher/sqlcipher/compare/v4.0.0...v4.0.1
144-
[4.0.0]: https://github.com/sqlcipher/sqlcipher/compare/v3.4.2...v4.0.0
145-
[3.4.2]: https://github.com/sqlcipher/sqlcipher/compare/v3.4.1...v3.4.2
146-
[3.4.1]: https://github.com/sqlcipher/sqlcipher/compare/v3.4.0...v3.4.1
147-
[3.4.0]: https://github.com/sqlcipher/sqlcipher/compare/v3.3.1...v3.4.0
148-
[3.3.1]: https://github.com/sqlcipher/sqlcipher/compare/v3.3.0...v3.3.1
149-
[3.3.0]: https://github.com/sqlcipher/sqlcipher/compare/v3.2.0...v3.3.0
150-
[3.2.0]: https://github.com/sqlcipher/sqlcipher/compare/v3.1.0...v3.2.0
151-
[3.1.0]: https://github.com/sqlcipher/sqlcipher/compare/v3.0.1...v3.1.0
152-
[3.0.1]: https://github.com/sqlcipher/sqlcipher/compare/v3.0.0...v3.0.1
153-
[3.0.0]: https://github.com/sqlcipher/sqlcipher/compare/v2.2.0...v3.0.0
154-
[2.2.0]: https://github.com/sqlcipher/sqlcipher/compare/v2.1.1...v2.2.0
155-
[2.1.1]: https://github.com/sqlcipher/sqlcipher/compare/v2.1.0...v2.1.1
156-
[2.1.0]: https://github.com/sqlcipher/sqlcipher/compare/v2.0.6...v2.1.0
157-
[2.0.6]: https://github.com/sqlcipher/sqlcipher/compare/v2.0.5...v2.0.6
158-
[2.0.5]: https://github.com/sqlcipher/sqlcipher/compare/v2.0.3...v2.0.5
159-
[2.0.3]: https://github.com/sqlcipher/sqlcipher/compare/v2.0.0...v2.0.3
160-
[2.0.0]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.10...v2.0.0
161-
[1.1.10]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.9...v1.1.10
162-
[1.1.9]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.8...v1.1.9
163-
[1.1.8]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.7...v1.1.8
164-
[1.1.7]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.6...v1.1.7
165-
[1.1.6]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.5...v1.1.6
166-
[1.1.5]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.4...v1.1.5
167-
[1.1.4]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.3...v1.1.4
168-
[1.1.3]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.2...v1.1.3
169-
[1.1.2]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.1...v1.1.1
170-
[1.1.1]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.0...v1.1.1
171-
[1.1.0]: https://github.com/sqlcipher/sqlcipher/compare/617ed01...v1.1.0
142+
[unreleased]: https://github.com/sqlcipher/sqlcipher/compare/v4.1.0...prerelease
143+
[4.1.0]: https://github.com/sqlcipher/sqlcipher/tree/v4.1.0
144+
[4.1.0 changes]: https://github.com/sqlcipher/sqlcipher/compare/v4.0.1...v4.1.0
145+
[4.0.1]: https://github.com/sqlcipher/sqlcipher/tree/v4.0.1
146+
[4.0.1 changes]: https://github.com/sqlcipher/sqlcipher/compare/v4.0.0...v4.0.1
147+
[4.0.0]: https://github.com/sqlcipher/sqlcipher/tree/v4.0.0
148+
[4.0.0 changes]: https://github.com/sqlcipher/sqlcipher/compare/v3.4.2...v4.0.0
149+
[3.4.2]: https://github.com/sqlcipher/sqlcipher/tree/v3.4.2
150+
[3.4.2 changes]: https://github.com/sqlcipher/sqlcipher/compare/v3.4.1...v3.4.2
151+
[3.4.1]: https://github.com/sqlcipher/sqlcipher/tree/v3.4.1
152+
[3.4.1 changes]: https://github.com/sqlcipher/sqlcipher/compare/v3.4.0...v3.4.1
153+
[3.4.0]: https://github.com/sqlcipher/sqlcipher/tree/v3.4.0
154+
[3.4.0 changes]: https://github.com/sqlcipher/sqlcipher/compare/v3.3.1...v3.4.0
155+
[3.3.1]: https://github.com/sqlcipher/sqlcipher/tree/v3.3.1
156+
[3.3.1 changes]: https://github.com/sqlcipher/sqlcipher/compare/v3.3.0...v3.3.1
157+
[3.3.0]: https://github.com/sqlcipher/sqlcipher/tree/v3.3.0
158+
[3.3.0 changes]: https://github.com/sqlcipher/sqlcipher/compare/v3.2.0...v3.3.0
159+
[3.2.0]: https://github.com/sqlcipher/sqlcipher/tree/v3.2.0
160+
[3.2.0 changes]: https://github.com/sqlcipher/sqlcipher/compare/v3.1.0...v3.2.0
161+
[3.1.0]: https://github.com/sqlcipher/sqlcipher/tree/v3.1.0
162+
[3.1.0 changes]: https://github.com/sqlcipher/sqlcipher/compare/v3.0.1...v3.1.0
163+
[3.0.1]: https://github.com/sqlcipher/sqlcipher/tree/v3.0.1
164+
[3.0.1 changes]: https://github.com/sqlcipher/sqlcipher/compare/v3.0.0...v3.0.1
165+
[3.0.0]: https://github.com/sqlcipher/sqlcipher/tree/v3.0.0
166+
[3.0.0 changes]: https://github.com/sqlcipher/sqlcipher/compare/v2.2.0...v3.0.0
167+
[2.2.0]: https://github.com/sqlcipher/sqlcipher/tree/v2.2.0
168+
[2.2.0 changes]: https://github.com/sqlcipher/sqlcipher/compare/v2.1.1...v2.2.0
169+
[2.1.1]: https://github.com/sqlcipher/sqlcipher/tree/v2.1.1
170+
[2.1.1 changes]: https://github.com/sqlcipher/sqlcipher/compare/v2.1.0...v2.1.1
171+
[2.1.0]: https://github.com/sqlcipher/sqlcipher/tree/v2.1.0
172+
[2.1.0 changes]: https://github.com/sqlcipher/sqlcipher/compare/v2.0.6...v2.1.0
173+
[2.0.6]: https://github.com/sqlcipher/sqlcipher/tree/v2.0.6
174+
[2.0.6 changes]: https://github.com/sqlcipher/sqlcipher/compare/v2.0.5...v2.0.6
175+
[2.0.5]: https://github.com/sqlcipher/sqlcipher/tree/v2.0.5
176+
[2.0.5 changes]: https://github.com/sqlcipher/sqlcipher/compare/v2.0.3...v2.0.5
177+
[2.0.3]: https://github.com/sqlcipher/sqlcipher/tree/v2.0.3
178+
[2.0.3 changes]: https://github.com/sqlcipher/sqlcipher/compare/v2.0.0...v2.0.3
179+
[2.0.0]: https://github.com/sqlcipher/sqlcipher/tree/v2.0.0
180+
[2.0.0 changes]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.10...v2.0.0
181+
[1.1.10]: https://github.com/sqlcipher/sqlcipher/tree/v1.1.10
182+
[1.1.10 changes]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.9...v1.1.10
183+
[1.1.9]: https://github.com/sqlcipher/sqlcipher/tree/v1.1.9
184+
[1.1.9 changes]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.8...v1.1.9
185+
[1.1.8]: https://github.com/sqlcipher/sqlcipher/tree/v1.1.8
186+
[1.1.8 changes]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.7...v1.1.8
187+
[1.1.7]: https://github.com/sqlcipher/sqlcipher/tree/v1.1.7
188+
[1.1.7 changes]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.6...v1.1.7
189+
[1.1.6]: https://github.com/sqlcipher/sqlcipher/tree/v1.1.6
190+
[1.1.6 changes]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.5...v1.1.6
191+
[1.1.5]: https://github.com/sqlcipher/sqlcipher/tree/v1.1.5
192+
[1.1.5 changes]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.4...v1.1.5
193+
[1.1.4]: https://github.com/sqlcipher/sqlcipher/tree/v1.1.4
194+
[1.1.4 changes]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.3...v1.1.4
195+
[1.1.3]: https://github.com/sqlcipher/sqlcipher/tree/v1.1.3
196+
[1.1.3 changes]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.2...v1.1.3
197+
[1.1.2]: https://github.com/sqlcipher/sqlcipher/tree/v1.1.2
198+
[1.1.2 changes]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.1...v1.1.1
199+
[1.1.1]: https://github.com/sqlcipher/sqlcipher/tree/v1.1.1
200+
[1.1.1 changes]: https://github.com/sqlcipher/sqlcipher/compare/v1.1.0...v1.1.1
201+
[1.1.0]: https://github.com/sqlcipher/sqlcipher/tree/v1.1.0
202+
[1.1.0 changes]: https://github.com/sqlcipher/sqlcipher/compare/617ed01...v1.1.0

0 commit comments

Comments
 (0)