-
-
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
4e4f12d
to
b2597af
Compare
2b1a510
to
44a3c96
Compare
0800aff
to
8d43920
Compare
747e621
to
ec9f0e0
Compare
e5f48cd
to
90b41e4
Compare
90b41e4
to
2559f02
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.8.0
^19.5.0
->^19.8.0
^1.9.0
->^1.10.1
^6.0.0
->^6.5.0
^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.10
v6.9.0
->v6.15.0
v3.3.0
->v3.4.0
v3.7.1
->v3.10.0
^10.0.1
->^10.1.1
^5.2.1
->^5.2.3
^15.2.10
->^15.5.0
22.11.0
->22.14.0
^3.3.3
->^3.5.3
^6.0.0
->^6.5.0
^2.8.0
->^2.8.1
4.5.1
->4.7.0
Release Notes
conventional-changelog/commitlint (@commitlint/cli)
v19.8.0
Compare Source
Performance Improvements
node:
prefix to bypass require.cache call for builtins (#4302) (0cd8f41)19.7.1 (2025-02-02)
Note: Version bump only for package @commitlint/cli
19.6.1 (2024-12-15)
Note: Version bump only for package @commitlint/cli
v19.7.1
Compare Source
Note: Version bump only for package @commitlint/cli
conventional-changelog/commitlint (@commitlint/config-conventional)
v19.8.0
Compare Source
Performance Improvements
node:
prefix to bypass require.cache call for builtins (#4302) (0cd8f41)19.7.1 (2025-02-02)
Note: Version bump only for package @commitlint/config-conventional
v19.7.1
Compare Source
Note: Version bump only for package @commitlint/config-conventional
discordjs/discord.js (@discordjs/builders)
v1.10.1
Compare Source
Bug Fixes
name
andvalue
on fields (#10747) (49ef3a8)prisma/prisma (@prisma/client)
v6.5.0
Compare Source
Today, we are excited to share the
6.5.0
stable release 🎉🌟 Help us spread the word about Prisma by starring the repo ☝️ or tweeting about the release. 🌟
Highlights
Databases can only be reset manually and explicitly
In previous versions, if Prisma ORM determined that a
migrate
command could not be applied cleanly to the underlying database, you would get a message like this one:While "no" was the default, we've determined that having this prompt in the first place was a mistake. In this version we're removing the prompt entirely and instead exiting with an appropriate error message.
To get the previous behavior, you will need to run
prisma migrate reset
directly.Support for
prisma.config.ts
in Prisma StudioWe've expanded support for our
prisma.config.ts
file to include Prisma Studio!To use the new config file, including the ability to connect to driver adapter enabled databases with Prisma Studio, add a
studio
block to yourprisma.config.ts
file:Notice how this looks a little different from last release! Instead of an
@prisma/config
package there’s now two different options:defineConfig
helper exported byprisma/config
.PrismaConfig
utility type exported byPrisma
.All the relevant info for the
prisma.config.ts
file, including these new ways of defining your config, can be found in our docs.Allow for chaining
$on
and$extends
.In previous versions of Prisma ORM, the return type of the
$on
client method wasvoid
. This did not allow for chaining$on()
and$extends()
calls, as$on
is not available on extended clients.In this version we've resolved this issue and
$on
will now return the modified Prisma Client.Community fixes
We have a number of community-submitted fixes that improve Prisma ORM:
Prisma is hiring
Join us at Prisma and work on our TypeScript ORM (now faster than ever) and our Cloud products like Prisma Postgres (now in GA!)
We currently have two open roles in our Engineering team:
If these don’t fit, you can still check out our jobs page and send a general application.
Enterprise support
Prisma offers an enterprise support plan for Prisma ORM. Get direct help from our team and a joint slack channel! With Prisma ORM 7 on the horizon this is a great time to upgrade your support today.
Credits
v6.4.1
Compare Source
Today, we are issuing the 6.4.1 patch release. It fixes a few issues with the NPS survey and makes it respect the
--no-hints
CLI flag.Fixes
Prisma CLI
v6.4.0
Compare Source
Today, we are excited to share the
6.4.0
stable release 🎉🌟 Help us spread the word about Prisma by starring the repo ☝️ or tweeting about the release. 🌟
Highlights
TypeScript-based configuration with
prisma.config.ts
(Early Access)In this release, we're introducing an Early Access version of a TypeScript-based configuration file for Prisma ORM:
prisma.config.ts
.This file will serve as a central configuration point for Prisma ORM:
With this file you are able to run any arbitrary code needed to get values required by Prisma ORM, such as database URLs from a secret store or fine-grained control of settings. It needs to live in the current working directory from where you're executing Prisma CLI commands (typically, the root of your project).
Learn more about the new
prisma.config.ts
file in the docs.Case-insensitive mode in JSON filters
You can now do case-insensitive filtering on JSON data.
Just use the new
mode
option when filtering usingstring_contains
,string_starts_with
orstring_ends_with
in a JSON object and set it to"insensitive"
:The above query returns all users where the
favorites.catBreed
value contains"Van"
or"van"
.Thanks to @lubosmato who implemented this feature 🎉
Improved CockroachDB migration speed
In this release we found some inefficiencies in our migration engine that was impacting CockroachDB migrations. In 6.4.0, CockroachDB migrations should be significantly faster.
Calling all devs: Give us your feedback!
Prisma ORM's community keeps us going. To make sure that we're focused on what the community needs, we would like to get your feedback via our online feedback form.
Credits
Huge thanks to @lubosmato, @notomo, @Mayureshd-18, @mydea, @omar-dulaimi and @Hazmi35 for helping out with this release!
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.15.0
Compare Source
Full Changelog: docker/build-push-action@v6.14.0...v6.15.0
v6.14.0
Compare Source
Full Changelog: docker/build-push-action@v6.13.0...v6.14.0
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/login-action (docker/login-action)
v3.4.0
Compare Source
docker/setup-buildx-action (docker/setup-buildx-action)
v3.10.0
Compare Source
Full Changelog: docker/setup-buildx-action@v3.9.0...v3.10.0
v3.9.0
Compare Source
Full Changelog: docker/setup-buildx-action@v3.8.0...v3.9.0
v3.8.0
Compare Source
Full Changelog: docker/setup-buildx-action@v3.7.1...v3.8.0
prettier/eslint-config-prettier (eslint-config-prettier)
v10.1.1
Compare Source
Patch Changes
#309
eb56a5e
Thanks @JounQin! - fix: separate the/flat
entry for compatibilityFor flat config users, the previous
"eslint-config-prettier"
entry still works, but"eslint-config-prettier/flat"
adds a newname
property for config-inspector, we just can't add it for the default entry for compatibility.See also #308
v10.1.0
Compare Source
Minor Changes
56e2e34
Thanks @JounQin! - feat: migrate to exports fieldv10.0.3
Compare Source
Patch Changes
#294
8dbbd6d
Thanks @FloEdelmann! - feat: add name to config#280
cba5737
Thanks @zanminkian! - feat: add declaration filev10.0.2
Compare Source
Patch Changes
e750edc
Thanks @Fdawgs! - chore(package): explicitly declare js module typelint-staged/lint-staged (lint-staged)
v15.5.0
Compare Source
Minor Changes
630af5f
Thanks @iiroj! - Lint-staged no longer resets to the original state when preventing an empty git commit. This happens when your configured tasks reset all the staged changes, typically when trying to commit formatting changes which conflict with your linter setup like ESLint or Prettier.Example with Prettier
By default Prettier prefers double quotes.
Previously
file.js
with only double quotes"
changed to'
git commit -am "I don't like double quotes"
prettier --write file.js
, converting all the'
back to"
'
are stagedNow
file.js
with only double-quotes"
changed to'
git commit -am "I don't like double quotes"
prettier --write file.js
, converting all the'
back to"
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.14.0
: 2025-02-11, Version 22.14.0 'Jod' (LTS), @aduh95Compare Source
Notable Changes
82a9000e9e
] - crypto: update root certificates to NSS 3.107 (Node.js GitHub Bot) #56566b7fe54fc88
] - (SEMVER-MINOR) fs: allowexclude
option in globs to accept glob patterns (Daeyeon Jeong) #564893ac92ef607
] - (SEMVER-MINOR) lib: add typescript support to STDIN eval (Marco Ippolito) #563591614e8e7bc
] - (SEMVER-MINOR) module: add ERR_UNSUPPORTED_TYPESCRIPT_SYNTAX (Marco Ippolito) #566106d6cffa9cc
] - (SEMVER-MINOR) module: addfindPackageJSON
util (Jacob Smith) #55412d35333ae18
] - (SEMVER-MINOR) process: add process.ref() and process.unref() methods (James M Snell) #5640007ff3ddcb5
] - (SEMVER-MINOR) sqlite: support TypedArray and DataView inStatementSync
(Alex Yang) #5638594d3fe1b62
] - (SEMVER-MINOR) src: add --disable-sigusr1 to prevent signal i/o thread (Rafael Gonzaga) #564415afffb4415
] - (SEMVER-MINOR) src,worker: add isInternalWorker (Carlos Espa) #56469697a851fb3
] - (SEMVER-MINOR) test_runner: add TestContext.prototype.waitFor() (Colin Ihrig) #56595047537b48c
] - (SEMVER-MINOR) test_runner: add t.assert.fileSnapshot() (Colin Ihrig) #56459926cf84e95
] - (SEMVER-MINOR) test_runner: add assert.register() API (Colin Ihrig) #56434c658a8afdf
] - (SEMVER-MINOR) worker: add eval ts input (Marco Ippolito) #56394Commits
bad1ad8650
] - assert: make myers_diff function more performant (Giovanni Bucci) #56303e222e36f3b
] - assert: make partialDeepStrictEqual work with urls and File prototypes (Giovanni Bucci) #56231e232789fe2
] - assert: show diff when doing partial comparisons (Giovanni Bucci) #56211c99de1fdcf
] - assert: make partialDeepStrictEqual throw when comparing [0] with [-0] (Giovanni) #562372386fd5840
] - benchmark: add validateStream to styleText bench (Rafael Gonzaga) #56556b197dfa7ec
] - build: fix GN build for ngtcp2 (Cheng) #563002a3cdd34ff
] - build: test macos-13 on GitHub actions (Michaël Zasso) #5630712f716be0a
] - build: build v8 with -fvisibility=hidden on macOS (Joyee Cheung) #56275c5ca15bd34
] - child_process: fix parsing messages with splitted length field (Maksim Gorkov) #561068346b8fc2c
] - crypto: add missing return value check (Michael Dawson) #5661582a9000e9e
] - crypto: update root certificates to NSS 3.107 (Node.js GitHub Bot) #56566890eef20a1
] - crypto: fix checkPrime crash with large buffers (Santiago Gimeno) #565595edb7b5e87
] - crypto: fix warning of ignoring return value (Cheng) #56527b89f123a0b
] - crypto: make generatePrime/checkPrime interruptible (James M Snell) #5646063c1859e01
] - deps: update corepack to 0.31.0 (Node.js GitHub Bot) #56795a48430d4d3
] - deps: move inspector_protocol to deps (Chengzhong Wu) #5664974cccc824f
] - deps: macro ENODATA is deprecated in libc++ (Cheng) #56698fa869ea0f2
] - deps: fixup some minor coverity warnings (James M Snell) #566121a4fa2b015
] - deps: update amaro to 0.3.0 (Node.js GitHub Bot) #56568b47076fd82
] - deps: update amaro to 0.2.2 (Node.js GitHub Bot) #5656846bd4b8731
] - deps: update simdutf to 6.0.3 (Node.js GitHub Bot) #565678ead9c693b
] - deps: update simdutf to 5.7.2 (Node.js GitHub Bot) #5638818d4b502af
] - deps: update amaro to 0.2.1 (Node.js GitHub Bot) #56390d938d7cc86
] - deps: update googletest to7d76a23
(Node.js GitHub Bot) #563879761e7dccb
] - deps: update googletest toe54519b
(Node.js GitHub Bot) #563708319dc6bc5
] - deps: update ngtcp2 to 1.10.0 (Node.js GitHub Bot) [#56334](https://redirect.gConfiguration
📅 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.