Skip to content

Releases: vapor/sqlite-kit

SQLite 3.2.0

06 Feb 15:30
4f5e173
Compare
Choose a tag to compare

Fixed:

  • Each new SQLiteConnection created by SQLiteDatabase now gets its own file handle. (#50)

SQLite 3.1.0

06 Feb 15:29
ad2e9bc
Compare
Choose a tag to compare
Merge pull request #49 from vapor/sql-2-1

sql 2.1 updates

SQLite 3.0.0

17 Jul 00:28
635ad49
Compare
Choose a tag to compare

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

17 Jul 00:26
386a6ed
Compare
Choose a tag to compare
SQLite 3.0.0 RC 4.1.1 Pre-release
Pre-release
Merge pull request #44 from FredericRuaudel/fix-empty-array-crash

Fix empty array encoding crash

SQLite 3.0.0 RC 4.1

22 Jun 22:36
500748e
Compare
Choose a tag to compare
SQLite 3.0.0 RC 4.1 Pre-release
Pre-release

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

22 Jun 22:36
Compare
Choose a tag to compare
SQLite 3.0.0 RC 4.0.1 Pre-release
Pre-release
3.0.0-rc.4.0.1

use sql foreign key action

SQLite 3.0.0 RC 4

19 Jun 22:49
2f04c08
Compare
Choose a tag to compare
SQLite 3.0.0 RC 4 Pre-release
Pre-release

New:

  • Updated to vapor/sql 2.0.

SQLite 3.0.0 RC 3.0.1

19 Jun 22:49
Compare
Choose a tag to compare
SQLite 3.0.0 RC 3.0.1 Pre-release
Pre-release

Fixed:

  • Add missing OrderBy methods.

SQLite 3.0.0 RC 3

15 Jun 03:25
105477b
Compare
Choose a tag to compare
SQLite 3.0.0 RC 3 Pre-release
Pre-release

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

21 May 15:51
3bbf797
Compare
Choose a tag to compare
SQLite 3.0.0 RC 2.4 Pre-release
Pre-release

Fixed:

  • Fixed Bool not conforming to SQLiteDataConvertible to allow Bools to be used as fields. (#36)