-
-
Notifications
You must be signed in to change notification settings - Fork 0
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 all non-major dependencies #248
Open
renovate
wants to merge
1
commit into
main
Choose a base branch
from
renovate/all-minor-patch
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
16d4fe3
4107e80
to
16d4fe3
Compare
9d19217
16d4fe3
to
9d19217
Compare
9d19217
to
a741280
Compare
59ebc0b
a741280
to
59ebc0b
Compare
fb3a90f
59ebc0b
to
fb3a90f
Compare
7398afb
fb3a90f
to
7398afb
Compare
fac57e5
to
99d75ed
Compare
0c144a8
to
ee4fb44
Compare
43cc12a
to
e747b99
Compare
672252f
to
2bb2ad0
Compare
43dd919
to
4b210c2
Compare
325227a
to
6dadfe1
Compare
6dadfe1
to
4e4f12d
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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:
^19.5.0
->^19.7.1
^19.5.0
->^19.7.1
^1.9.0
->^1.10.0
^6.0.0
->^6.3.1
^2.0.0
->^2.0.1
^2.6.6
->^2.7.2
^1.7.12
->^1.7.14
^3.17.0
->^3.18.2
^2.1.0
->^2.2.0
^22.8.6
->^22.13.1
v6.9.0
->v6.13.0
v3.7.1
->v3.9.0
^5.2.1
->^5.2.3
^15.2.10
->^15.4.3
22.11.0
->22.13.1
^3.3.3
->^3.4.2
^6.0.0
->^6.3.1
^2.8.0
->^2.8.1
4.5.1
->4.6.0
Release Notes
conventional-changelog/commitlint (@commitlint/cli)
v19.7.1
Compare Source
Note: Version bump only for package @commitlint/cli
conventional-changelog/commitlint (@commitlint/config-conventional)
v19.7.1
Compare Source
Note: Version bump only for package @commitlint/config-conventional
prisma/prisma (@prisma/client)
v6.3.1
Compare Source
This patch releases introduces improvements to the
prisma init
output when invoked to with the--db
option.Run
npx prisma@latest init --db
to get an instant Prisma Postgres database.v6.3.0
Compare Source
Today, we are excited to share the
6.3.0
stable release 🎉🌟 Help us spread the word about Prisma by starring the repo ☝️ or tweeting about the release. 🌟
Highlights
A brand new Prisma Studio
In this release we've included several great improvements to Prisma Studio's developer experience. You can learn all about the changes we've made in our release blog post, but here's a short list:
Prisma Studio is back in the Console
Fans of Prisma Data Browser rejoice! The new Prisma Studio is now in the Prisma Console and is available for all PostgreSQL and MySQL databases.
A new model viewer
Previously, switching from model to model in Prisma Studio would require backing all the way out to the model view, then digging in again. With our new UI, it's easy to switch from model to model while keeping your place.
A new editing experience
If you're trying to edit a given field in a model, Prisma Studio made it quite easy. However, if you're trying to edit every field in a given row, it could get quite annoying to keep scrolling left to right. Our new edit sidebar resolves that with the ability to edit all fields for a given row at once.
Clean up at the click of a button
When editing a number of models, it can get difficult to get back to a clean slate. In the new Prisma Studio, we've added a "Close all" button that puts you back to a fresh start.
Add
limit
toupdateMany()
anddeleteMany()
Previously,
limit
has not existed as a valid option in top levelupdateMany()
anddeleteMany()
queries. In 6.3.0limit
is now available in these queries, bringing their features more in line with other query types.You can use
limit
like the following:This will limit the number of deleted users to 100 at maximum.
Sort
generator
fields deterministicallyIn previous version of Prisma ORM, the fields inside of a
generator
block in your Prisma Schema were not deterministically sorted. This could lead to cases whereprisma db pull
could lead to re-ordering of fields.In 6.3.0, the sorting of fields in this block is now deterministic. You may see re-ordering on the first
prisma db pull
after you upgrade, but it will remain consistent afterwards.Replace
NOT IN
withNOT EXISTS
for PostgreSQL relation filtersIn previous versions of Prisma ORM, when using the
none
orsome
relation filters, the SQL queries generated usedNOT IN
. In many cases this lead to performance issues as the size of the related table grew. In 6.3.0, we’ve replaced these usages ofIN
withEXISTS
in order to improve query performance.A special thank you
We'd like to extend our heartfelt thanks to @loren and his team for the collaboration and trust in our enterprise support plan. Working closely with them allowed us to address important issues like #19249 and #17303. Their insights and partnership have been invaluable in improving our product.
If your team could benefit from dedicated support and tailored solutions, learn more about our enterprise support plan.
Fixes and improvements
Prisma Client
take
orlimit
toupdateMany()
&deleteMany()
Prisma
prisma db pull
non-deterministically sorts generator fieldsno entry found for key
error on views<->model relationsonUpdate
data to the DMMF in@prisma/generator-helper
Credits
Huge thanks to @WhyAsh5114 for their contributions to this release!
sapphiredev/utilities (@sapphire/utilities)
v3.18.2
Compare Source
🐛 Bug Fixes
objectEntries
,objectKeys
andobjectValues
(598c24a) (#857 by @GeniusTimo)docker/build-push-action (docker/build-push-action)
v6.13.0
Compare Source
Full Changelog: docker/build-push-action@v6.12.0...v6.13.0
v6.12.0
Compare Source
Full Changelog: docker/build-push-action@v6.11.0...v6.12.0
v6.11.0
Compare Source
defaultContext
support forbuild-contexts
input by @crazy-max in https://github.com/docker/build-push-action/pull/1283Full Changelog: docker/build-push-action@v6.10.0...v6.11.0
v6.10.0
Compare Source
call
input to set method for evaluating build by @crazy-max in https://github.com/docker/build-push-action/pull/1265Full Changelog: docker/build-push-action@v6.9.0...v6.10.0
docker/setup-buildx-action (docker/setup-buildx-action)
v3.9.0
Compare Source
v3.8.0
Compare Source
lint-staged/lint-staged (lint-staged)
v15.4.3
Compare Source
Patch Changes
cbfed1d
Thanks @tarik02! - Adjust TypeScript types for the default export so that it can be used as a value without error TS2693.v15.4.2
Compare Source
Patch Changes
8827ebf
Thanks @iiroj! - Change lint-staged's dependencies to use caret (^
) ranges instead of tilde (~
). This makes it easier for package managers to perform dependency management when minor-level updates are also permitted instead of just patch-level.nodejs/node (node)
v22.13.1
Compare Source
v22.13.0
Compare Source
v22.12.0
Compare Source
yarnpkg/berry (yarn)
v4.6.0
Compare Source
v4.5.3
Compare Source
v4.5.2
Compare Source
Configuration
📅 Schedule: Branch creation - "before 12pm on Sunday" (UTC), 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.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.