PR #125 opened: chore(deps): bump the minor-and-patch group across 1 directory with 14 updates
Bumps the minor-and-patch group with 14 updates in the / directory:
| Package | From | To |
|---|---|---|
| @headlessui/react | 2.2.9 | 2.2.10 |
| @inertiajs/react | 3.0.2 | 3.0.3 |
| @sentry/react | 10.47.0 | 10.48.0 |
| globals | 17.4.0 | 17.5.0 |
| laravel-echo | 2.3.3 | 2.3.4 |
| lucide-react | 1.7.0 | 1.8.0 |
| react | 19.2.4 | 19.2.5 |
| react-dom | 19.2.4 | 19.2.5 |
| vite | 8.0.5 | 8.0.8 |
| @types/node | 25.5.2 | 25.6.0 |
| prettier | 3.8.1 | 3.8.2 |
| typescript-eslint | 8.58.0 | 8.58.1 |
| @rollup/rollup-linux-x64-gnu | 4.59.0 | 4.60.1 |
| @rollup/rollup-win32-x64-msvc | 4.59.0 | 4.60.1 |
Updates @headlessui/react from 2.2.9 to 2.2.10
▶Commits
Updates @inertiajs/react from 3.0.2 to 3.0.3
▶Release notes
Sourced from @inertiajs/react's releases.
v3.0.3
What's Changed
- [3.x] Bump Vite and Vitest by
@pascalbaljetin inertiajs/inertia#3046- [3.x] Update TSConfig and bump CI actions by
@pascalbaljetin inertiajs/inertia#3047- [3.x] Infer form data keys in
resetOnSuccessandresetOnErrorby@pascalbaljetin inertiajs/inertia#3048- [3.x] Fix layout props callback misclassifying function-valued props as named layouts by
@pascalbaljetin inertiajs/inertia#3049- [3.x] Fix flash event not firing when response contains errors by
@skryukovin inertiajs/inertia#3038- [3.x] Fire flash event after full reload by
@skryukovin inertiajs/inertia#3041- [3.x] Improve Playwright CI cache by
@pascalbaljetin inertiajs/inertia#3051- [3.x] Add
onHttpException,onNetworkError, and response toonSuccessinuseHttpby@pascalbaljetin inertiajs/inertia#3050Full Changelog: https://github.com/inertiajs/inertia/compare/v3.0.2...v3.0.3
▶Changelog
Sourced from @inertiajs/react's changelog.
v3.0.3 - 2026-04-07
What's Changed
- [3.x] Bump Vite and Vitest by
@pascalbaljetin inertiajs/inertia#3046- [3.x] Update TSConfig and bump CI actions by
@pascalbaljetin inertiajs/inertia#3047- [3.x] Infer form data keys in
resetOnSuccessandresetOnErrorby@pascalbaljetin inertiajs/inertia#3048- [3.x] Fix layout props callback misclassifying function-valued props as named layouts by
@pascalbaljetin inertiajs/inertia#3049- [3.x] Fix flash event not firing when response contains errors by
@skryukovin inertiajs/inertia#3038- [3.x] Fire flash event after full reload by
@skryukovin inertiajs/inertia#3041- [3.x] Improve Playwright CI cache by
@pascalbaljetin inertiajs/inertia#3051- [3.x] Add
onHttpException,onNetworkError, and response toonSuccessinuseHttpby@pascalbaljetin inertiajs/inertia#3050Full Changelog: https://github.com/inertiajs/inertia/compare/v3.0.2...v3.0.3
▶Commits
66241d2v3.0.3a7a499eAdd onHttpException, onNetworkError, and response to onSuccess in useHttp (#3...f757d49Fix flash event not firing when response contains errors (#3038)2fe7751[3.x] Fix layout props callback misclassifying function-valued props as named...ffeef38[3.x] Infer form data keys inresetOnSuccessandresetOnError(#3048)5083325[3.x] Update TSConfig and bump CI actions (#3047)0d0d99f[3.x] Bump Vite and Vitest (#3046)- See full diff in compare view
Updates @sentry/react from 10.47.0 to 10.48.0
▶Release notes
Sourced from @sentry/react's releases.
10.48.0
Important Changes
feat(aws-serverless): Ship Lambda extension in npm package for container image Lambdas (#20133)
The Sentry Lambda extension is now included in the npm package, enabling container image-based Lambda functions to use it. Copy the extension files into your Docker image and set the
tunneloption:RUN mkdir -p /opt/sentry-extension COPY node_modules/@sentry/aws-serverless/build/lambda-extension/sentry-extension /opt/extensions/sentry-extension COPY node_modules/@sentry/aws-serverless/build/lambda-extension/index.mjs /opt/sentry-extension/index.mjs RUN chmod +x /opt/extensions/sentry-extension /opt/sentry-extension/index.mjsSentry.init({ dsn: '__DSN__', tunnel: 'http://localhost:9000/envelope', });This works with any Sentry SDK (
@sentry/aws-serverless,@sentry/sveltekit,@sentry/node, etc.).feat(cloudflare): Support basic WorkerEntrypoint (#19884)
withSentrynow supports instrumenting classes extending Cloudflare'sWorkerEntrypoint. This instrumentsfetch,scheduled,queue, andtailhandlers.import * as Sentry from '@sentry/cloudflare'; import { WorkerEntrypoint } from 'cloudflare:workers';class MyWorker extends WorkerEntrypoint {
async fetch(request: Request): Promise<Response> {
return new Response('Hello World!');
}
}
export default Sentry.withSentry(env => ({ dsn: env.SENTRY_DSN, tracesSampleRate: 1.0 }), MyWorker);
ref(core): Unify .do* span ops to
gen_ai.generate_content(#20074)All Vercel AI
do*spans (ai.generateText.doGenerate,ai.streamText.doStream,ai.generateObject.doGenerate,ai.streamObject.doStream) now use a single unified span opgen_ai.generate_contentinstead of separate ops likegen_ai.generate_text,gen_ai.stream_text,gen_ai.generate_object, andgen_ai.stream_object.ref(core): Remove provider-specific AI span attributes in favor of
gen_aiattributes in sentry conventions (#20011)The following provider-specific span attributes have been removed from the OpenAI and Anthropic AI integrations. Use the standardized
gen_ai.*equivalents instead:
Removed attribute Replacement
... (truncated)
▶Changelog
Sourced from @sentry/react's changelog.
10.48.0
Important Changes
feat(aws-serverless): Ship Lambda extension in npm package for container image Lambdas (#20133)
The Sentry Lambda extension is now included in the npm package, enabling container image-based Lambda functions to use it. Copy the extension files into your Docker image and set the
tunneloption:RUN mkdir -p /opt/sentry-extension COPY node_modules/@sentry/aws-serverless/build/lambda-extension/sentry-extension /opt/extensions/sentry-extension COPY node_modules/@sentry/aws-serverless/build/lambda-extension/index.mjs /opt/sentry-extension/index.mjs RUN chmod +x /opt/extensions/sentry-extension /opt/sentry-extension/index.mjsSentry.init({ dsn: '__DSN__', tunnel: 'http://localhost:9000/envelope', });This works with any Sentry SDK (
@sentry/aws-serverless,@sentry/sveltekit,@sentry/node, etc.).feat(cloudflare): Support basic WorkerEntrypoint (#19884)
withSentrynow supports instrumenting classes extending Cloudflare'sWorkerEntrypoint. This instrumentsfetch,scheduled,queue, andtailhandlers.import * as Sentry from '@sentry/cloudflare'; import { WorkerEntrypoint } from 'cloudflare:workers';class MyWorker extends WorkerEntrypoint {
async fetch(request: Request): Promise<Response> {
return new Response('Hello World!');
}
}
export default Sentry.withSentry(env => ({ dsn: env.SENTRY_DSN, tracesSampleRate: 1.0 }), MyWorker);
ref(core): Unify .do* span ops to
gen_ai.generate_content(#20074)All Vercel AI
do*spans (ai.generateText.doGenerate,ai.streamText.doStream,ai.generateObject.doGenerate,ai.streamObject.doStream) now use a single unified span opgen_ai.generate_contentinstead of separate ops likegen_ai.generate_text,gen_ai.stream_text,gen_ai.generate_object, andgen_ai.stream_object.ref(core): Remove provider-specific AI span attributes in favor of
gen_aiattributes in sentry conventions (#20011)The following provider-specific span attributes have been removed from the OpenAI and Anthropic AI integrations. Use the standardized
gen_ai.*equivalents instead:| Removed attribute | Replacement |
... (truncated)
▶Commits
a67df4drelease: 10.48.0e0732ffMerge pull request #20172 from getsentry/prepare-release/10.48.0d1ee40fmeta(changelog): Update changelog for 10.48.02897297feat(nuxt): Exclude tracing meta tags on cached pages in Nuxt 5 (#20168)1cc3dd0chore(deps-dev): Bump effect from 3.20.0 to 3.21.0 (#19999)c273167fix(core): FixwithStreamedSpantyping error add missing exports (#20124)b6f7b86feat(core): ApplyignoreSpansto streamed spans (#19934)7bd8449test(node,node-core): Add span streaming integration tests (#19806)51fc6d1feat(node-core): Add POtel server-side span streaming implementation (#19741)77357c7fix(core): Replace global interval with trace-specific interval based flushin...- Additional commits viewable in compare view
Updates globals from 17.4.0 to 17.5.0
▶Release notes
Sourced from globals's releases.
v17.5.0
- Update globals (2026-04-12) (#342) 5d84602
https://github.com/sindresorhus/globals/compare/v17.4.0...v17.5.0
▶Commits
Updates laravel-echo from 2.3.3 to 2.3.4
▶Release notes
Sourced from laravel-echo's releases.
v2.3.4
What's Changed
- Bump vite from 6.4.1 to 6.4.2 by
@dependabot[bot] in laravel/echo#486Full Changelog: https://github.com/laravel/echo/compare/v2.3.3...v2.3.4
▶Changelog
Sourced from laravel-echo's changelog.
v2.3.4 - 2026-04-07
What's Changed
- Bump vite from 6.4.1 to 6.4.2 by
@dependabot[bot] in laravel/echo#486Full Changelog: https://github.com/laravel/echo/compare/v2.3.3...v2.3.4
▶Commits
b6460f6v2.3.47f46b96Bump vite from 6.4.1 to 6.4.2 (#486)68c1014Update CHANGELOG- See full diff in compare view
Updates lucide-react from 1.7.0 to 1.8.0
▶Release notes
Sourced from lucide-react's releases.
Version 1.8.0
What's Changed
- docs(packages/angular): add packageDirname for
@lucide/angularby@rhutchisonin lucide-icons/lucide#4211- chore(icons): Username change knarlix to RajnishKMehta by
@RajnishKMehtain lucide-icons/lucide#4208- ci(
@lucide/angular): Fix publishing problem by@ericfennisin lucide-icons/lucide#4213- docs: fix broken links in pull_request_template.md (got 404 page) by
@whoisBugsbunnyin lucide-icons/lucide#4224- fix(lucide-static): add viewBox to sprite symbol elements by
@TomaTVin lucide-icons/lucide#4223- docs: Fix link to icon design principles in statement by
@whoisBugsbunnyin lucide-icons/lucide#4225- feat(docs): add Zephyr Cloud to Hero Backers tier by
@karsa-mistmerein lucide-icons/lucide#4226- fix(icons): fixes gap issues in radio-off.svg by
@karsa-mistmerein lucide-icons/lucide#4227- fix(icons): renamed
text-selecttosquare-dashed-textby@jguddasin lucide-icons/lucide#3943- fix(docs): improve mobile layout of v1 banner by
@karsa-mistmerein lucide-icons/lucide#4254- fix(
@lucide/svelte): aria-hidden="true" was never set by@blt-rin lucide-icons/lucide#4234- fix(icons): remove ui/ux tag from heart-minus, add delete instead by
@karsa-mistmerein lucide-icons/lucide#4266- chore(deps-dev): bump vite from 7.3.1 to 7.3.2 by
@dependabot[bot] in lucide-icons/lucide#4276- chore(deps): bump lodash-es from 4.17.23 to 4.18.1 by
@dependabot[bot] in lucide-icons/lucide#4251- chore(deps): bump vite from 5.4.21 to 6.4.2 by
@dependabot[bot] in lucide-icons/lucide#4286- feat(docs): use
initOnMounted: trueforuseSessionStorageinCarbonAdOverlayby@karsa-mistmerein lucide-icons/lucide#4275- feat(icons): added
bookmark-officon by@ZeenatLawalin lucide-icons/lucide#4283New Contributors
@rhutchisonmade their first contribution in lucide-icons/lucide#4211@whoisBugsbunnymade their first contribution in lucide-icons/lucide#4224@TomaTVmade their first contribution in lucide-icons/lucide#4223@blt-rmade their first contribution in lucide-icons/lucide#4234@ZeenatLawalmade their first contribution in lucide-icons/lucide#4283Full Changelog: https://github.com/lucide-icons/lucide/compare/1.7.0...1.8.0
▶Commits
7623e23feat(docs): add Zephyr Cloud to Hero Backers tier & rework updateSponsors scr...- See full diff in compare view
Updates react from 19.2.4 to 19.2.5
▶Release notes
Sourced from react's releases.
19.2.5 (April 8th, 2026)
React Server Components
- Add more cycle protections (#36236 by
@eps1lonand@unstubbable)
▶Commits
23f4f9f19.2.5- See full diff in compare view
Updates react-dom from 19.2.4 to 19.2.5
▶Release notes
Sourced from react-dom's releases.
19.2.5 (April 8th, 2026)
React Server Components
- Add more cycle protections (#36236 by
@eps1lonand@unstubbable)
▶Commits
23f4f9f19.2.5- See full diff in compare view
Updates vite from 8.0.5 to 8.0.8
▶Release notes
Sourced from vite's releases.
v8.0.8
Please refer to CHANGELOG.md for details.
v8.0.7
Please refer to CHANGELOG.md for details.
v8.0.6
Please refer to CHANGELOG.md for details.
▶Changelog
Sourced from vite's changelog.
8.0.8 (2026-04-09)
Features
Bug Fixes
- avoid
dns.getDefaultResultOrdertemporary (#22202) (15f1c15)- ssr: class property keys hoisting matching imports (#22199) (e137601)
8.0.7 (2026-04-07)
Bug Fixes
8.0.6 (2026-04-07)
Features
Bug Fixes
- css: avoid mutating sass error multiple times (#22115) (d5081c2)
- optimize-deps: hoist CJS interop assignment (#22156) (17a8f9e)
Performance Improvements
Miscellaneous Chores
▶Commits
6e585dcrelease: v8.0.8e137601fix(ssr): class property keys hoisting matching imports (#22199)15f1c15fix: avoiddns.getDefaultResultOrdertemporary (#22202)6baf587feat: update rolldown to 1.0.0-rc.15 (#22201)fdb2e6frelease: v8.0.75c05b04fix: use sync dns.getDefaultResultOrder instead of dns.promises (#22185)7b3086frelease: v8.0.6af71fb2chore: replace remaining prettier script (#22179)51d3e48feat: update rolldown to 1.0.0-rc.13 (#22097)17a8f9efix(optimize-deps): hoist CJS interop assignment (#22156)- Additional commits viewable in compare view
Updates @types/node from 25.5.2 to 25.6.0
▶Commits
- See full diff in compare view
Updates prettier from 3.8.1 to 3.8.2
▶Changelog
Sourced from prettier's changelog.
3.8.2
Angular: Support Angular v21.2 (#18722, #19034 by
@fisker)Exhaustive typechecking with
@default never;<!-- Input --> @switch (foo) { @case (1) {} @default never; }<!-- Prettier 3.8.1 --> SyntaxError: Incomplete block "default never". If you meant to write the @ character, you should use the "@" HTML entity instead. (3:3)
<!-- Prettier 3.8.2 -->@switch(foo) {@case(1) {}@defaultnever; }
arrow functionandinstanceofexpressions.<!-- Input --> @let fn = (a) => a? 1:2;{{ fn ( a instanceof b)}}
<!-- Prettier 3.8.1 -->
@letfn = (a) => a? 1:2;{{ fn ( a instanceof b)}}
<!-- Prettier 3.8.2 -->
@letfn = (a) => (a ? 1 : 2);
{{ fn(a instanceof b) }}
▶Commits
Updates typescript-eslint from 8.58.0 to 8.58.1
▶Release notes
Sourced from typescript-eslint's releases.
v8.58.1
8.58.1 (2026-04-08)
🩹 Fixes
- eslint-plugin: [no-unused-vars] fix false negative for type predicate parameter (#12004)
❤️ Thank You
- MinJae
@Ju-MINJAESee GitHub Releases for more information.
You can read about our versioning strategy and releases on our website.
▶Changelog
Sourced from typescript-eslint's changelog.
8.58.1 (2026-04-08)
This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.
See GitHub Releases for more information.
You can read about our versioning strategy and releases on our website.
▶Commits
5311ed3chore(release): publish 8.58.1- See full diff in compare view
Updates @rollup/rollup-linux-x64-gnu from 4.59.0 to 4.60.1
▶Release notes
Sourced from @rollup/rollup-linux-x64-gnu's releases.
v4.60.1
4.60.1
2026-03-30
Bug Fixes
- Resolve a situation where side effect imports could be dropped due to a caching issue (#6286)
Pull Requests
- #6286: fix: skip dropping side-effects on namespaceReexportsByName cache hit (#6274) (
@littlegrayss,@TrickyPi)- #6317: chore(deps): pin dependencies (
@renovate[bot],@lukastaegert)- #6318: chore(deps): update msys2/setup-msys2 digest to cafece8 (
@renovate[bot],@lukastaegert)- #6319: chore(deps): update minor/patch updates (
@renovate[bot],@lukastaegert)- #6320: chore(deps): pin dependency typescript to v5 (
@renovate[bot],@lukastaegert)- #6321: chore(deps): update openharmony-rs/setup-ohos-sdk action to v1 (
@renovate[bot],@lukastaegert)- #6322: fix(deps): update swc monorepo (major) (
@renovate[bot],@lukastaegert)- #6323: chore(deps): lock file maintenance (
@renovate[bot])- #6324: chore(deps): lock file maintenance (
@renovate[bot],@lukastaegert)v4.60.0
4.60.0
2026-03-22
Features
- Support source phase imports as long as they are external (#6279)
Pull Requests
- #6279: feat: external only Source Phase imports support (
@guybedford,@lukastaegert)v4.59.1
4.59.1
2026-03-21
Bug Fixes
- Fix a crash when using lazy dynamic imports with moduleSideEffects:false (#6306)
Pull Requests
- #6281: fix(deps): update minor/patch updates (
@renovate[bot],@lukastaegert)- #6282: chore(deps): update github artifact actions (major) (
@renovate[bot],@lukastaegert)- #6283: chore(deps): update dependency nyc to v18 (
@renovate[bot],@lukastaegert)- #6284: fix(deps): update swc monorepo (major) (
@renovate[bot])- #6285: chore(deps): lock file maintenance (
@renovate[bot])
... (truncated)
▶Changelog
Sourced from @rollup/rollup-linux-x64-gnu's changelog.
4.60.1
2026-03-30
Bug Fixes
- Resolve a situation where side effect imports could be dropped due to a caching issue (#6286)
Pull Requests
- #6286: fix: skip dropping side-effects on namespaceReexportsByName cache hit (#6274) (
@littlegrayss,@TrickyPi)- #6317: chore(deps): pin dependencies (
@renovate[bot],@lukastaegert)- #6318: chore(deps): update msys2/setup-msys2 digest to cafece8 (
@renovate[bot],@lukastaegert)- #6319: chore(deps): update minor/patch updates (
@renovate[bot],@lukastaegert)- #6320: chore(deps): pin dependency typescript to v5 (
@renovate[bot],@lukastaegert)- #6321: chore(deps): update openharmony-rs/setup-ohos-sdk action to v1 (
@renovate[bot],@lukastaegert)- #6322: fix(deps): update swc monorepo (major) (
@renovate[bot],@lukastaegert)- #6323: chore(deps): lock file maintenance (
@renovate[bot])- #6324: chore(deps): lock file maintenance (
@renovate[bot],@lukastaegert)4.60.0
2026-03-22
Features
- Support source phase imports as long as they are external (#6279)
Pull Requests
- #6279: feat: external only Source Phase imports support (
@guybedford,@lukastaegert)4.59.1
2026-03-21
Bug Fixes
- Fix a crash when using lazy dynamic imports with moduleSideEffects:false (#6306)
Pull Requests
- #6281: fix(deps): update minor/patch updates (
@renovate[bot],@lukastaegert)- #6282: chore(deps): update github artifact actions (major) (
@renovate[bot],@lukastaegert)- #6283: chore(deps): update dependency nyc to v18 (
@renovate[bot],@lukastaegert)- #6284: fix(deps): update swc monorepo (major) (
@renovate[bot])- #6285: chore(deps): lock file maintenance (
@renovate[bot])- #6290: chore(deps): update minor/patch updates (
@renovate[bot],@lukastaegert)- #6291: chore(deps): update dependency
@shikijs/vitepress-twoslashto v4 (@renovate[bot])- #6292: chore(deps): lock file maintenance (
@renovate[bot])
... (truncated)
▶Commits
ae871d74.60.151f8f60fix: skip dropping side-effects on namespaceReexportsByName cache hit (#6274)...ca55406chore(deps): pin dependency typescript to v5 (#6320)fe50d86chore(deps): pin dependencies (#6317)42785ffchore(deps): update minor/patch updates (#6319)65e82a9chore(deps): update msys2/setup-msys2 digest to cafece8 (#6318)c336205chore(deps): update openharmony-rs/setup-ohos-sdk action to v1 (#6321)b25d25efix(deps): update swc monorepo (major) (#6322)119abdbchore(deps): lock file maintenance (#6324)5598a66chore(deps): lock file maintenance (#6323)- Additional commits viewable in compare view
Updates @rollup/rollup-win32-x64-msvc from 4.59.0 to 4.60.1
▶Release notes
Sourced from @rollup/rollup-win32-x64-msvc's releases.
v4.60.1
4.60.1
2026-03-30
Bug Fixes
- Resolve a situation where side effect imports could be dropped due to a caching issue (#6286)
Pull Requests
- #6286: fix: skip dropping side-effects on namespaceReexportsByName cache hit (#6274) (
@littlegrayss,@TrickyPi)- #6317: chore(deps): pin dependencies (
@renovate[bot],@lukastaegert)- #6318: chore(deps): update msys2/setup-msys2 digest to cafece8 (
@renovate[bot],@lukastaegert)- #6319: chore(deps): update minor/patch updates (
@renovate[bot],@lukastaegert)- #6320: chore(deps): pin dependency typescript to v5 (
@renovate[bot],@lukastaegert)- #6321: chore(deps): update openharmony-rs/setup-ohos-sdk action to v1 (
@renovate[bot],@lukastaegert)- #6322: fix(deps): update swc monorepo (major) (
@renovate[bot],@lukastaegert)- #6323: chore(deps): lock file maintenance (
@renovate[bot])- #6324: chore(deps): lock file maintenance (
@renovate[bot],@lukastaegert)v4.60.0
4.60.0
2026-03-22
Features
- Support source phase imports as long as they are external (#6279)
Pull Requests
- #6279: feat: external only Source Phase imports support (
@guybedford,@lukastaegert)v4.59.1
4.59.1
2026-03-21
Bug Fixes
- Fix a crash when using lazy dynamic imports with moduleSideEffects:false (#6306)
Pull Requests
- #6281: fix(deps): update minor/patch updates (
@renovate[bot],@lukastaegert)- #6282: chore(deps): update github artifact actions (major) (
@renovate[bot],@lukastaegert)- #6283: chore(deps): update dependency nyc to v18 (
@renovate[bot],@lukastaegert)- #6284: fix(deps): update swc monorepo (major) (
@renovate[bot])- #6285: chore(deps): lock file maintenance (
@renovate[bot])
... (truncated)
▶Changelog
Sourced from @rollup/rollup-win32-x64-msvc's changelog.
4.60.1
2026-03-30
Bug Fixes
- Resolve a situation where side effect imports could be dropped due to a caching issue (#6286)
Pull Requests
- #6286: fix: skip dropping side-effects on namespaceReexportsByName cache hit (#6274) (
@littlegrayss,@TrickyPi)- #6317: chore(deps): pin dependencies (
@renovate[bot],@lukastaegert)- #6318: chore(deps): update msys2/setup-msys2 digest to cafece8 (
@renovate[bot],@lukastaegert)- #6319: chore(deps): update minor/patch updates (
@renovate[bot],@lukastaegert)- #6320: chore(deps): pin dependency typescript to v5 (
@renovate[bot],@lukastaegert)- #6321: chore(deps): update openharmony-rs/setup-ohos-sdk action to v1 (
@renovate[bot],@lukastaegert)- #6322: fix(deps): update swc monorepo (major) (
@renovate[bot],@lukastaegert)- #6323: chore(deps): lock file maintenance (
@renovate[bot])- #6324<...
Description has been truncated