Skip to content

Releases: kysely-org/kysely

0.9.4

01 Dec 12:23
Compare
Choose a tag to compare

0.9.3

24 Nov 21:34
Compare
Choose a tag to compare

Added the union and unionAll methods.

0.9.2

24 Nov 15:57
Compare
Choose a tag to compare

Changed the type of CompiledQuery.parameters from any[] to unknown[].

0.9.1

24 Nov 11:04
Compare
Choose a tag to compare
  • Fixed the noWait method
  • General code cleanup

0.9.0

23 Nov 15:29
Compare
Choose a tag to compare

Breaking changes

increments() no longer works on PostgreSQL.

ColumnDefinitionBuilder.increments() no longer converts the column's data type to serial or bigserial on postgres, but instead always adds an auto_increments specifier. This means that you need to remove increments calls in postgres migrations and use the serial or bigserial data type directly. Simply remove the increments call and change int or integer to serial and bigint or biginteger to bigserial on that column.