This repository has been archived by the owner on Feb 22, 2024. It is now read-only.
fix(deps): update dependency kysely to ^0.27.0 #434
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^0.26.1
->^0.27.0
Release Notes
kysely-org/kysely (kysely)
v0.27.1
Compare Source
$notNull
type helperfor update of table
and friends #683insert into "person" default values
#685limit
andoffset
fn.agg
regression where two type arguments were required #829v0.27.0
Compare Source
json_agg
andto_json
functions to function moduleis distinct from
operator #673set('first_name', 'Jennifer')
variant for update query'sset
method #672as
statement support for createTable #771. Thank you @viraxslot ❤️nulls not distinct
option for constraints #770. Thank you @viraxslot ❤️addIndex
&dropIndex
@ AlterTableBuilder #720. Thank you @Gasperostream()
support for sqlite dialect #754. Thank you @tgriesser ❤️$if
#793. Thank you @igalklebanov ❤️onConflict..doUpdateSet
used select types instead of update types. #792. Thank you @igalklebanov ❤️eb.jsonPath<$>
#791. Thank you @igalklebanov ❤️$narrowType
supports new type tagNotNull
for an easier way to mark columns not nullable manuallymin
andmax
aggregate functions.Breaking changes
selectNoFrom
is removed fromExpressionBuilder
due to severe typescript performance issues.selectNoFrom
still exists in theKysely
instance, and in most cases, you can use that instead. See this example on how to migrate: https://kyse.link/?p=s\&i=sqAZIvTQktxgXYzHGkqX.where('first_name', '=', sql`something`)
. You need to explicitly give a type for thesql
expressions like thissql<string>`something`
eb.cmpr
andeb.bxp
have been removed. Useeb
as a function instead.v0.26.3
Compare Source
select(eb => [autocompletion works here now])
.v0.26.2
Compare Source
from
clause. The function is called selectNoFrom. The function name was selected after a lot of discussion. The most natural name would just beselect
, but new users would find that in a list of autocompletions beforeselectFrom
and naturally use it when trying to create aselect from
query. This would be especially true for people coming from knex where aselect from
query is started using aselect
call. #605and
andor
functions. Allows easywhere(eb => eb.and(object))
filters. #583any
function to function module. #612between
method to expression builder. #602lit
method to expression builder. #600orderBy
. #423 Thank you @igalklebanov ❤️An example of an object
and
call:Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate. View repository job log here.