Skip to content
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
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 3, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@commitlint/cli (source) ^19.5.0 -> ^19.6.1 age adoption passing confidence devDependencies patch
@commitlint/config-conventional (source) ^19.5.0 -> ^19.6.0 age adoption passing confidence devDependencies patch
@discordjs/builders (source) ^1.9.0 -> ^1.10.0 age adoption passing confidence dependencies patch
@prisma/client (source) ^6.0.0 -> ^6.3.0 age adoption passing confidence dependencies minor
@sapphire/iterator-utilities (source) ^2.0.0 -> ^2.0.1 age adoption passing confidence dependencies patch
@sapphire/result (source) ^2.6.6 -> ^2.7.2 age adoption passing confidence dependencies patch
@sapphire/time-utilities (source) ^1.7.12 -> ^1.7.14 age adoption passing confidence dependencies patch
@sapphire/utilities (source) ^3.17.0 -> ^3.18.1 age adoption passing confidence dependencies patch
@skyra/http-framework (source) ^2.1.0 -> ^2.2.0 age adoption passing confidence dependencies patch
@types/node (source) ^22.8.6 -> ^22.12.0 age adoption passing confidence devDependencies minor
docker/build-push-action v6.9.0 -> v6.13.0 age adoption passing confidence action minor
docker/setup-buildx-action v3.7.1 -> v3.8.0 age adoption passing confidence action minor
eslint-plugin-prettier ^5.2.1 -> ^5.2.3 age adoption passing confidence devDependencies patch
lint-staged ^15.2.10 -> ^15.4.3 age adoption passing confidence devDependencies patch
node (source) 22.11.0 -> 22.13.1 age adoption passing confidence volta minor
prettier (source) ^3.3.3 -> ^3.4.2 age adoption passing confidence devDependencies patch
prisma (source) ^6.0.0 -> ^6.3.0 age adoption passing confidence devDependencies minor
tslib (source) ^2.8.0 -> ^2.8.1 age adoption passing confidence dependencies patch
yarn (source) 4.5.1 -> 4.6.0 age adoption passing confidence packageManager minor

Release Notes

prisma/prisma (@​prisma/client)

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
Add limit to updateMany() and deleteMany()

Previously, limit has not existed as a valid option in top level updateMany() and deleteMany() queries. In 6.3.0 limit is now available in these queries, bringing their features more in line with other query types.

You can use limit like the following:

await prisma.user.deleteMany({
  where: { column: 'value' },
  limit: 100,
});

This will limit the number of deleted users to 100 at maximum.

Sort generator fields deterministically

In 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 where prisma 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 with NOT EXISTS for PostgreSQL relation filters

In previous versions of Prisma ORM, when using the none or some relation filters, the SQL queries generated used NOT 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 of IN with EXISTS 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
Prisma
Credits

Huge thanks to @​WhyAsh5114 for their contributions to this release!

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

Full Changelog: docker/build-push-action@v6.10.0...v6.11.0

v6.10.0

Compare Source

Full Changelog: docker/build-push-action@v6.9.0...v6.10.0

docker/setup-buildx-action (docker/setup-buildx-action)

v3.8.0

Compare Source

lint-staged/lint-staged (lint-staged)

v15.4.3

Compare Source

Patch Changes
  • #​1512 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
  • #​1509 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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies label Nov 3, 2024
@renovate renovate bot enabled auto-merge (rebase) November 3, 2024 01:48
renovate-approve[bot]
renovate-approve bot previously approved these changes Nov 3, 2024
renovate-approve-2[bot]
renovate-approve-2 bot previously approved these changes Nov 3, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4107e80 to 16d4fe3 Compare November 3, 2024 07:49
renovate-approve[bot]
renovate-approve bot previously approved these changes Nov 3, 2024
renovate-approve-2[bot]
renovate-approve-2 bot previously approved these changes Nov 3, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 16d4fe3 to 9d19217 Compare November 3, 2024 11:43
renovate-approve[bot]
renovate-approve bot previously approved these changes Nov 3, 2024
renovate-approve-2[bot]
renovate-approve-2 bot previously approved these changes Nov 3, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9d19217 to a741280 Compare November 4, 2024 16:34
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a741280 to 59ebc0b Compare November 5, 2024 03:28
renovate-approve-2[bot]
renovate-approve-2 bot previously approved these changes Nov 5, 2024
renovate-approve[bot]
renovate-approve bot previously approved these changes Nov 5, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 59ebc0b to fb3a90f Compare November 5, 2024 16:28
renovate-approve-2[bot]
renovate-approve-2 bot previously approved these changes Nov 5, 2024
renovate-approve[bot]
renovate-approve bot previously approved these changes Nov 5, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from fb3a90f to 7398afb Compare November 9, 2024 12:16
renovate-approve[bot]
renovate-approve bot previously approved these changes Nov 9, 2024
renovate-approve-2[bot]
renovate-approve-2 bot previously approved these changes Nov 9, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from db9b658 to 1963a40 Compare December 4, 2024 07:32
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Dec 10, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 1f52fa6 to fac57e5 Compare December 16, 2024 12:25
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from fac57e5 to 99d75ed Compare December 17, 2024 20:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 0c144a8 to ee4fb44 Compare January 3, 2025 10:42
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 43cc12a to e747b99 Compare January 15, 2025 15:01
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 672252f to 2bb2ad0 Compare January 21, 2025 17:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 8aaea1a to fe6d63f Compare January 28, 2025 05:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from fe6d63f to 43dd919 Compare January 28, 2025 17:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants