Releases: vapor/sqlite-kit
Releases · vapor/sqlite-kit
SQLite 3.2.0
Fixed:
- Each new
SQLiteConnection
created bySQLiteDatabase
now gets its own file handle. (#50)
SQLite 3.1.0
Merge pull request #49 from vapor/sql-2-1 sql 2.1 updates
SQLite 3.0.0
SQLite 3.0 is here 🎉
🔵 SQLite 3 wrapper for Swift
Docs:
docs.vapor.codes/3.0/sqlite/getting-started/
API Docs:
api.vapor.codes/sqlite/latest/SQLite
Changes since last RC:
New:
- Updated to official vapor/sql 2.0.0 release.
SQLite 3.0.0 RC 4.1.1
Merge pull request #44 from FredericRuaudel/fix-empty-array-crash Fix empty array encoding crash
SQLite 3.0.0 RC 4.1
New:
- New methods for creating and dropping indexes (#43).
conn.create(index: "test_idx", on: \Planet.name).unique.run()
conn.drop(index: "test_idx").run()
SQLite 3.0.0 RC 4.0.1
3.0.0-rc.4.0.1 use sql foreign key action
SQLite 3.0.0 RC 4
New:
- Updated to
vapor/sql
2.0.
SQLite 3.0.0 RC 3.0.1
Fixed:
- Add missing
OrderBy
methods.
SQLite 3.0.0 RC 3
New:
- SQLite now supports opening multiple connections to the same in-memory DB and multiple in-memory DBs per program / machine (#38).
- Encoders / decoders have been improved to better support nested data structures (#38).
- SQLite's blocking IO work is now done on a configurable NIO
BlockingIOThreadPool
(#38). - New
SQLiteQuery
type allows for type-safe construction and serialization of SQLite-specific SQL queries (more information on this soon) (#38).
Fixed:
- Lots of bugs.
SQLite 3.0.0 RC 2.4
Fixed:
- Fixed
Bool
not conforming toSQLiteDataConvertible
to allowBool
s to be used as fields. (#36)