Releases: kysely-org/kysely
Releases Β· kysely-org/kysely
0.19.8
Fix bug where falsy default values didn't set the hasDefaultValue
value to true in ColumnMetadata
.
0.19.6
Added isAutoIncrementing
and hasDefaultValue
to ColumnMetadata
.
0.19.5
Add support for lateral joins
const query = ctx.db
.selectFrom('person')
.innerJoinLateral(
(eb) =>
eb.selectFrom('pet')
.select('name')
.whereRef('pet.owner_id', '=', 'person.id')
.as('p'),
(join) => join.on(sql`true`)
)
.select(['first_name', 'p.name'])
.orderBy('first_name')
0.19.4
Fix join method issues that caused typescript to fail with Type instantiation is excessively deep and possibly infinite.ts(2589)
-
0.19.3
- Enables tree shaking for webpack
- Disables a webpack warning about a dynamic import in
FileMigrationProvider
- Support
.mjs
files in migrations
0.19.1
The addColumn method of AlterTableBuilder
now takes a third callback argument just like CreateTableBuilder.addColumn
.