|
1 | | -0.14.0 (tbd), [diff][diff-0.14.0] |
| 1 | +0.15.3 (19-04-2024), [diff][diff-0.15.3] |
2 | 2 | ======================================== |
| 3 | +* Update `podspec` to include privacy manifest ([#1265][]) |
| 4 | + |
| 5 | +0.15.2 (16-04-2024), [diff][diff-0.15.2] |
| 6 | +======================================== |
| 7 | +* fix: visionos to cocoapods ([#1260][]) |
| 8 | + |
| 9 | +0.15.1 (14-04-2024), [diff][diff-0.15.1] |
| 10 | +======================================== |
| 11 | + |
| 12 | +* Update CoreFunctions.swift fix typo ([#1249][]) |
| 13 | +* Fix #1247 support nil case when decoding optionals ([#1248][]) |
| 14 | +* Change deployment targets for Xcode 15 and add dependency on custom Cocoapods fork ([#1255][]) |
| 15 | +* Add VisionOS support ([#1237][]) |
| 16 | + |
| 17 | +0.15.0 (24-02-2024), [diff][diff-0.15.0] |
| 18 | +======================================== |
| 19 | + |
| 20 | +* Fix incorrect behavior when preparing `SELECT *` preceded by a `WITH` ([#1179][]) |
| 21 | +* Adds support for returning extended error codes ([#1178][]) |
| 22 | +* Fix typos ([#1182][]) |
| 23 | +* fix Xcode build error ([#1192][]) |
| 24 | +* Make the IndexDefinition properties public ([#1196][]) |
| 25 | +* Fix GitHub Actions build badge ([#1200][]) |
| 26 | +* Run CI on macOS 13 ([#1206][]) |
| 27 | +* SchemaReader: return the correct column definition for a composite primary key ([#1217][]) |
| 28 | +* Add optional support for decoding ([#1224][]) |
| 29 | +* make fromDatatypeValue throw ([#1242][]) |
| 30 | +* Implements built-in window functions ([#1228][]) |
| 31 | +* Fix column affinity parsing to match how SQLite determines affinity ([#1218][]) |
| 32 | +* Handle FK definitions w/o key references ([#1210][]) |
| 33 | +* Add privacy manifest ([#1245][]) |
| 34 | +* New minimum deployment targets: iOS/tvOS 11.0, watchOS 4.0 |
| 35 | + |
| 36 | +0.14.1 (01-11-2022), [diff][diff-0.14.1] |
| 37 | +======================================== |
| 38 | + |
| 39 | +* Reverted `Blob` changes (See [#1167][] for rationale). |
| 40 | + |
| 41 | +0.14.0 (27-10-2022), [diff][diff-0.14.0] |
| 42 | +======================================== |
| 43 | +For breaking changes, see [Upgrading.md](Documentation/Upgrading.md). |
3 | 44 |
|
4 | 45 | * Support more complex schema changes and queries ([#1073][], [#1146][] [#1148][]) |
5 | 46 | * Support `ATTACH`/`DETACH` ([#30][], [#1142][]) |
| 47 | +* Expose connection flags (via `URIQueryParameter`) to open db ([#1074][]) |
6 | 48 | * Support `WITH` clause ([#1139][]) |
7 | 49 | * Add `Value` conformance for `NSURL` ([#1110][], [#1141][]) |
8 | 50 | * Add decoding for `UUID` ([#1137][]) |
|
127 | 169 | [diff-0.13.2]: https://github.com/stephencelis/SQLite.swift/compare/0.13.1...0.13.2 |
128 | 170 | [diff-0.13.3]: https://github.com/stephencelis/SQLite.swift/compare/0.13.2...0.13.3 |
129 | 171 | [diff-0.14.0]: https://github.com/stephencelis/SQLite.swift/compare/0.13.3...0.14.0 |
| 172 | +[diff-0.14.1]: https://github.com/stephencelis/SQLite.swift/compare/0.14.0...0.14.1 |
| 173 | +[diff-0.15.0]: https://github.com/stephencelis/SQLite.swift/compare/0.14.0...0.15.0 |
| 174 | +[diff-0.15.1]: https://github.com/stephencelis/SQLite.swift/compare/0.15.0...0.15.1 |
| 175 | +[diff-0.15.2]: https://github.com/stephencelis/SQLite.swift/compare/0.15.1...0.15.2 |
130 | 176 |
|
131 | 177 | [#30]: https://github.com/stephencelis/SQLite.swift/issues/30 |
132 | 178 | [#142]: https://github.com/stephencelis/SQLite.swift/issues/142 |
|
164 | 210 | [#881]: https://github.com/stephencelis/SQLite.swift/pull/881 |
165 | 211 | [#919]: https://github.com/stephencelis/SQLite.swift/pull/919 |
166 | 212 | [#1073]: https://github.com/stephencelis/SQLite.swift/issues/1073 |
| 213 | +[#1074]: https://github.com/stephencelis/SQLite.swift/issues/1074 |
167 | 214 | [#1075]: https://github.com/stephencelis/SQLite.swift/pull/1075 |
168 | 215 | [#1077]: https://github.com/stephencelis/SQLite.swift/issues/1077 |
169 | 216 | [#1094]: https://github.com/stephencelis/SQLite.swift/pull/1094 |
|
192 | 239 | [#1146]: https://github.com/stephencelis/SQLite.swift/pull/1146 |
193 | 240 | [#1148]: https://github.com/stephencelis/SQLite.swift/pull/1148 |
194 | 241 | [#1167]: https://github.com/stephencelis/SQLite.swift/pull/1167 |
| 242 | +[#1179]: https://github.com/stephencelis/SQLite.swift/pull/1179 |
| 243 | +[#1178]: https://github.com/stephencelis/SQLite.swift/pull/1178 |
| 244 | +[#1182]: https://github.com/stephencelis/SQLite.swift/pull/1182 |
| 245 | +[#1192]: https://github.com/stephencelis/SQLite.swift/pull/1192 |
| 246 | +[#1196]: https://github.com/stephencelis/SQLite.swift/pull/1196 |
| 247 | +[#1200]: https://github.com/stephencelis/SQLite.swift/pull/1200 |
| 248 | +[#1206]: https://github.com/stephencelis/SQLite.swift/pull/1206 |
| 249 | +[#1217]: https://github.com/stephencelis/SQLite.swift/pull/1217 |
| 250 | +[#1224]: https://github.com/stephencelis/SQLite.swift/pull/1224 |
| 251 | +[#1242]: https://github.com/stephencelis/SQLite.swift/pull/1242 |
| 252 | +[#1228]: https://github.com/stephencelis/SQLite.swift/pull/1228 |
| 253 | +[#1218]: https://github.com/stephencelis/SQLite.swift/pull/1218 |
| 254 | +[#1210]: https://github.com/stephencelis/SQLite.swift/pull/1210 |
| 255 | +[#1245]: https://github.com/stephencelis/SQLite.swift/pull/1245 |
| 256 | +[#1249]: https://github.com/stephencelis/SQLite.swift/pull/1249 |
| 257 | +[#1248]: https://github.com/stephencelis/SQLite.swift/pull/1248 |
| 258 | +[#1255]: https://github.com/stephencelis/SQLite.swift/pull/1255 |
| 259 | +[#1237]: https://github.com/stephencelis/SQLite.swift/pull/1237 |
| 260 | +[#1260]: https://github.com/stephencelis/SQLite.swift/pull/1260 |
| 261 | +[#1265]: https://github.com/stephencelis/SQLite.swift/pull/1265 |
0 commit comments