fix(deps): update all non-major dependencies #453
Merged
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:
^4.20241230.0
->^4.20250109.0
^9.17.0
->^9.18.0
^9.0.2
->^9.0.3
^8.0.3
->^8.0.4
^1.6.12
->^1.6.13
^0.2.8
->^0.2.9
^7.15.2
->^7.15.3
^7.15.2
->^7.15.3
^6.1.0
->^6.2.1
^8.47.0
->^8.48.0
^8.47.0
->^8.48.0
^2.22.7
->^2.23.0
^8.47.0
->^8.48.0
^19.0.2
->^19.0.6
^19.0.2
->^19.0.3
^8.19.0
->^8.19.1
^8.19.0
->^8.19.1
^2.174.0
->^2.175.1
^2.174.0
->^2.175.1
^9.9.2
->^9.10.0
^2.174.0
->^2.175.1
^9.17.0
->^9.18.0
^7.37.3
->^7.37.4
^5.2.0
->^5.2.1
~1.13.0
->~1.13.1
^16.3.0
->^16.5.3
^0.469.0
->^0.471.0
^6.1.0
->^6.2.1
^1.9.3
->^1.9.4
^0.1.82
->^0.1.83
^5.7.2
->^5.7.3
^8.19.0
->^8.19.1
^0.4.212
->^0.4.214
^3.99.0
->^3.101.0
Release Notes
cloudflare/workerd (@cloudflare/workers-types)
v4.20250109.0
Compare Source
eslint/eslint (@eslint/js)
v9.18.0
Compare Source
fastify/middie (@fastify/middie)
v9.0.3
Compare Source
What's Changed
var
withlet
by @Fdawgs in https://github.com/fastify/middie/pull/218node:
prefix for builtins by @Fdawgs in https://github.com/fastify/middie/pull/223Full Changelog: fastify/middie@v9.0.2...v9.0.3
fastify/fastify-static (@fastify/static)
v8.0.4
Compare Source
What's Changed
node:
prefix for builtins by @Fdawgs in https://github.com/fastify/fastify-static/pull/490New Contributors
Full Changelog: fastify/fastify-static@v8.0.3...v8.0.4
floating-ui/floating-ui (@floating-ui/dom)
v1.6.13
Compare Source
Patch Changes
IntersectionObserver
issue that sometimes fails to detect movement of reference element@floating-ui/[email protected]
floating-ui/floating-ui (@floating-ui/utils)
v0.2.9
Compare Source
Patch Changes
translate
,rotate
,scale
shorthand propertiesmantinedev/mantine (@mantine/core)
v7.15.3
Compare Source
What's Changed
[@mantine/charts]
BarChart: FixtextColor
prop being passed down as attribute to the DOM node[@mantine/core]
TypographyStylesProvider: Fix incorrect top and bottom margins of first and last elements (#7334)[@mantine/core]
Transition: Fix some transitions being incompatible with headless mode (#7306)[@mantine/dates]
DateTimePicker: Set milliseconds to 0 on the result date object (#7328)[@mantine/dates]
FixhasNextLevel
prop type leak to DateTimePicker component (#7319)[@mantine/core]
Avatar: Change initials function to use the full name to generate color (#7322)[@mantine/hooks]
use-merged-ref: Add support for ref cleanup function in React 19 (#7304)[@mantine/hooks]
use-debounced-callback: Addflush
method to returned callback (#7272)[@mantine/dates]
Improve compatibility with dayjs plugins in all components (#7302)[@mantine/core]
Update peer dependencies to support React 19 (#7321)New Contributors
Full Changelog: mantinedev/mantine@7.15.2...7.15.3
prisma/prisma (@prisma/client)
v6.2.1
Compare Source
Today we are releasing the 6.2.1 patch release to address an issue with some of the
omitApi
preview feature checks having been accidentally omitted when making the feature GA. Now it is fully functional without the preview feature flag.Changes
v6.2.0
Compare Source
Today we're releasing Prisma ORM version 6.2.0 🎉
🌟 Help us spread the word about Prisma by starring the repo or tweeting about the release. 🌟
We have a number of new features in this version, including support for
json
andenum
fields in SQLite, a newupdateManyAndReturn
function, support for ULID values, as well as the promotion of theomit
feature from Preview to Generally Availability.Highlights
Excluding fields via
omit
is now production-readyOur number one requested feature is out of Preview and Generally Available. In 6.2.0, you no longer need to add
omitApi
to your list of Preview features:generator client { provider = "prisma-client-js" - previewFeatures = ["omitApi"] }
As a refresher:
omit
allows you to exclude certain fields from being returned in the results of your Prisma Client queries.You can either do this locally, on a per-query level:
Or globally, to ensure a field is excluded from all queries of a certain model:
For more information on
omit
, be sure to check our documentation.json
andenum
fields in SQLitePrevious to this version, you could not define
json
andenum
fields in your Prisma schema when using SQLite. The respective GitHub issues have been among the most popular ones in our repo, so with our new approach to open-source governance, we finally got to work and implemented these.Working with JSON and Enum fields works similarly to other database providers, here’s an example:
Support for auto-generated ULID values
Similar to
cuid2
support released in ORM version 6.0.0, we are now adding support for Universally Unique Lexicographically Sortable Identifiers (or short: ULIDs 😄) in version 6.2.0. A ULID value is a 26-character alphanumeric string, e.g.01GZ0GZ3XARH8ZP44A7TQ2W4ZD
.With this new feature, you can now create records with auto-generated ULID values for
String
fields:New batch function:
updateManyAndReturn
updateMany
allows you to update many records in your database, but it only returns the count of the affected rows, not the resulting rows themselves. WithupdateManyAndReturn
you are now able to achieve this:This call to
updateManyAndReturn
will now return the actual records that have been updated in the query:Please note that like
createManyAndReturn
,updateManyAndReturn
is only supported in PostgreSQL, CockroachDB, and SQLite.Fixed runtime error in Node.js v23
While not officially supported, we understand that a lot of you like to be on the latest Node.js version — so we fixed an error that only occurred on Node.js 23. Happy coding ✌️
Prisma is hiring 🤝
Join us at Prisma to work on the most popular TypeScript ORM and other exciting products like the first serverless database built on unikernels!
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.
getsentry/sentry-javascript (@sentry/react)
v8.48.0
Compare Source
Deprecations
feat(v8/core): Deprecate
getDomElement
method (#14799)Deprecates
getDomElement
. There is no replacement.Other changes
continueTrace
implementation in core (#14819)NODE_OPTIONS
is not passed to worker threads (#14825)tagName
when name is not provided toTraceDirective
(#14828)openTelemetrySpanProcessors
option (#14853)Set
as theallRoutes
container. (#14878) (#14884)normalizedRequest
tosamplingContext
(#14903)syncFeedbackIntegration
(#14918)Work in this release was contributed by @arturovt. Thank you for your contribution!
Bundle size 📦
getsentry/sentry-javascript-bundler-plugins (@sentry/vite-plugin)
v2.23.0
Compare Source
globalThis
(#636)Work in this release contributed by @conor-ob. Thank you for your contribution!
typescript-eslint/typescript-eslint (@typescript-eslint/parser)
v8.19.1
Compare Source
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
typescript-eslint/typescript-eslint (@typescript-eslint/utils)
v8.19.1
Compare Source
This was a version bump only for utils to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
aws/aws-cdk (aws-cdk)
v2.175.1
Compare Source
Bug Fixes
Alpha modules (2.175.1-alpha.0)
v2.175.0
Compare Source
Features
cdk destroy
(#32636) (c199378), closes #32545 #27179 40aws-cdk-testing/cli-integ/tests/cli-integ-tests/cli.integtest.ts#L190 aws-cdk-testing/cli-integ/tests/cli-integ-tests/cli.integtest.ts#L286-L291Bug Fixes
CI=false
(#32749) (26b361d)canContainersAccessInstanceRole=false
and also deprecate property (#32763) (bbdd42c), closes #28518Alpha modules (2.175.0-alpha.0)
Features
Configuration
📅 Schedule: Branch creation - "* 0-3 * * 1" (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.