generated from t3-oss/create-t3-turbo
-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(deps): update dependency kysely to ^0.27.0 #17
Open
renovate
wants to merge
1
commit into
main
Choose a base branch
from
renovate/kysely-0.x
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
⚠ Artifact update problemRenovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is. ♻ Renovate will retry this branch, including artifacts, only when one of the following happens:
The artifact failure details are included below: File name: pnpm-lock.yaml
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
None yet
0 participants
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
Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
kysely-org/kysely (kysely)
v0.27.4
Compare Source
Hey 👋
We've reached 100 contributors AND 1,000 pull requests since our last release! 🍾
Here's all the amazing work done since version 0.27.3...
🚀 Features
clearGroupBy()
by @dswbx in https://github.com/kysely-org/kysely/pull/921objectStrategy
option that allows to not mutate result objects/arrays @ParseJSONResultsPlugin
. by @igalklebanov in https://github.com/kysely-org/kysely/pull/953PostgreSQL 🐘 / SQLite 📘
MySQL 🐬 / MS SQL Server 🥅
PostgreSQL 🐘
MS SQL Server 🥅
OUTPUT
clause support. by @igalklebanov in https://github.com/kysely-org/kysely/pull/828🐞 Bugfixes
preventAwait
toalter-column-builder
.ts. by @igalklebanov in https://github.com/kysely-org/kysely/pull/1031eb
inselectFrom(eb => ...)
is wrong by @koskimas in kysely-org/kysely@873671bPostgreSQL 🐘 / MS SQL Server 🥅
WhenNode
s with a space by @gittgott in https://github.com/kysely-org/kysely/pull/940InferResult
not working for merge queries. by @igalklebanov in https://github.com/kysely-org/kysely/pull/902PostgreSQL 🐘
MS SQL Server 🥅
MssqlDialect
streaming not handling backpressure. by @igalklebanov in https://github.com/kysely-org/kysely/pull/1041MssqlDriver
. by @igalklebanov in https://github.com/kysely-org/kysely/pull/1042📖 Documentation
tedious
support inBun
by @igalklebanov in https://github.com/kysely-org/kysely/pull/1018kysely-ctl
in migrations section. by @igalklebanov in https://github.com/kysely-org/kysely/pull/1035UpdateResult
by @movahhedi in https://github.com/kysely-org/kysely/pull/993📦 CICD & Tooling
🐤 New Contributors
Full Changelog: kysely-org/kysely@0.27.3...0.27.4
v0.27.3
Compare Source
v0.27.2
Compare Source
allowUnorderedMigrations
option for the migrator. #723 Awesome work by @tracehelms ❤️Kysely<any>
.UpdateQueryBuilder#set
andInsertQueryBuilder#values
methods.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 was generated by Mend Renovate. View the repository job log.