Skip to content

Releases: kysely-org/kysely

0.18.1

18 Apr 14:09
Compare
Choose a tag to compare
  • Allow custom migration tables and schema #80
  • Allow an existing pool instance to be passed to MysqlDialect and PostgresDialect #81

0.18.0

16 Apr 08:03
Compare
Choose a tag to compare

Breaking changes

UpdateQueryBuilder now takes four type arguments instead of three. The second argument is new and is the table that will be updated. The third one is a union of all the tables that can be referred to.

This only affects you if you've been using explicit types.

What's new

  • "update set from" queries are now possible because of the from method in UpdateQueryBuilder
  • Raw aliases are now possible when using the as method of a raw sql snippet.

0.17.3

10 Apr 09:49
Compare
Choose a tag to compare
  • Actually fix #73

0.17.2

10 Apr 09:43
Compare
Choose a tag to compare

0.17.1

17 Feb 16:02
Compare
Choose a tag to compare

0.17.0

17 Feb 11:22
Compare
Choose a tag to compare

Breaking changes

db.raw has been replaced with the sql template tag. sql is a free function that can be used with or without a Kysely instance.

See the docs for detailed instructions. Here's how you'd replace the most common use cases of the old db.raw:

import { sql } from 'kysely'

// old
db.raw('select first_name from person where id = ?', [id])

// new
sql`select first_name from person where id = ${id}`
import { sql } from 'kysely'

// old
db.raw('select ?? from person', ['first_name'])

// new
sql`select ${sql.ref('first_name')} from person`
import { sql } from 'kysely'

// old
const result = await db.raw('select first_name from person where id = ?', [id]).execute()

// new
const result = await sql`select first_name from person where id = ${id}`.execute(db)

0.16.11

04 Feb 12:19
Compare
Choose a tag to compare
  • Added orderBy and limit methods for DeleteQueryBuilder

0.16.10

03 Feb 10:44
Compare
Choose a tag to compare

0.16.9

25 Jan 16:38
Compare
Choose a tag to compare

0.16.8

21 Jan 18:23
Compare
Choose a tag to compare
  • Add a RawBuilder constructor that can be easily used without a Kysely instance.