Releases: kysely-org/kysely
Releases · kysely-org/kysely
0.11.3
0.11.2
0.11.1
0.11.0
Added support for SQLite using the better-sqlite3 library.
Breaking changes
- insert queries now return an InsertResult instead of
number | undefined
- update queries now return an UpdateResult instead of
number
- delete queries now return a DeleteResult instead of
number
- Number fields in QueryResult are now of type
bigint
to support large integers. Also theQueryResult. insertedPrimaryKey
field has been renamed toinsertId
.QueryResult
is only returned by completely raw queries likeawait db.raw('select * from person')
.
0.10.1
0.10.0
- Add support for materialized views
Breaking changes
increments
method in the schema module is now called autoIncrement. You need to go through your migrations and use the new method.- Harmonised operation node flag names. Booleans like
isPrimaryKey
are now renamed toprimaryKey
. This only affects you if you've implemented your own plugins that transform the operation node tree.