fix(deps): update likely non breaking dependencies #537
+888
−584
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:
2.2.434→2.2.4378.3.13→8.3.148.3.13→8.3.148.3.13→8.3.148.3.13→8.3.148.3.13→8.3.148.3.13→8.3.141.3.0→1.3.311.1.12→11.1.134.0.2→4.0.311.1.12→11.1.1311.1.12→11.1.1311.2.5→11.2.611.1.12→11.1.137.2.0→7.2.17.2.0→7.2.11.157.18→1.159.51.157.18→1.159.51.157.18→1.159.525.1.0→25.2.219.2.10→19.2.138.54.0→8.55.05.1.2→5.1.4^0.4.23→^0.5.00.15.0→0.16.00.5.1→0.5.37.10.1→7.12.010.28.2→10.29.28.54.0→8.55.0Release Notes
iconify/icon-sets (@iconify/json)
v2.2.437Compare Source
v2.2.436Compare Source
v2.2.435Compare Source
mantinedev/mantine (@mantine/core)
v8.3.14Compare Source
What's Changed
[@mantine/core]Switch: Fix checkbox not being recognized by Playwright (#8370, #8645)[@mantine/core]MultiSelect: Fix click on chevron not opening dropdown when clearable is enabled (#8641)[@mantine/modals]Fix types of context modals inferred incorrectly (#8625)[@mantine/core]MultiSelect: Fix clear button overlapping with pills (#8634)New Contributors
Full Changelog: mantinedev/mantine@8.3.13...8.3.14
nanostores/persistent (@nanostores/persistent)
v1.3.3Compare Source
v1.3.2Compare Source
persistentJSON(by @d8corp).v1.3.1Compare Source
persistentBooleanrestoring onpageshow(by @d8corp).nestjs/nest (@nestjs/common)
v11.1.13Compare Source
v11.1.13 (2026-02-03)
Bug fixes
commonEnhancements
microservicescommonDependencies
platform-fastifyplatform-expressCommitters: 6
nestjs/config (@nestjs/config)
v4.0.3Compare Source
What's Changed
Full Changelog: nestjs/config@4.0.2...4.0.3
nestjs/swagger (@nestjs/swagger)
v11.2.6Compare Source
What's Changed
servers[*]entry by @micalevisk in #3715New Contributors
Full Changelog: nestjs/swagger@11.2.5...11.2.6
gperdomor/nx-tools (@nx-tools/container-metadata)
v7.2.1Compare Source
🩹 Fixes
🏡 Chore
gperdomor/nx-tools (@nx-tools/nx-container)
v7.2.1Compare Source
🏡 Chore
❤️ Thank You
TanStack/router (@tanstack/react-router)
v1.159.5Compare Source
Version 1.159.5 - 2/9/26, 1:08 PM
Changes
Perf
641720f) by Birk SkyumPackages
v1.159.4Compare Source
Version 1.159.4 - 2/9/26, 12:55 AM
Changes
Fix
5c923e4) by Lee Jong KyungPackages
v1.159.3Compare Source
Version 1.159.3 - 2/8/26, 8:07 PM
Changes
Perf
7927dcd) by Birk SkyumPackages
v1.158.4Compare Source
Version 1.158.4 - 2/7/26, 12:01 AM
Changes
Fix
40ed683) by Nico LynzaadDocs
172fa05) by Alexander ZuevPackages
v1.158.1Compare Source
Version 1.158.1 - 2/5/26, 1:50 AM
Changes
Fix
28b0e8b) by LeeDocs
f7eaede) by @codersjj03c1165) by @KonseptDesign5e30ea1) by Pavan Shinde6049fd3) by Pavan ShindePackages
v1.158.0Compare Source
Version 1.158.0 - 2/3/26, 12:16 AM
Changes
Feat
a894baa) by Manuel SchillerFix
serverproperty in interpolatePath (#6580) (ebd96af) by Manuel Schiller77b18bb) by Manuel SchillerPackages
typescript-eslint/typescript-eslint (@typescript-eslint/parser)
v8.55.0Compare Source
This was a version bump only for parser 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.
vitejs/vite-plugin-react (@vitejs/plugin-react)
v5.1.4Compare Source
Fix
canSkipBabelnot accounting forbabel.overrides(#1098)When configuring
babel.overrideswithout top-level plugins or presets, Babel was incorrectly skipped. ThecanSkipBabelfunction now checks foroverrides.lengthto ensure override configurations are processed.v5.1.3Compare Source
ArnaudBarre/eslint-plugin-react-refresh (eslint-plugin-react-refresh)
v0.5.0Compare Source
Breaking changes
reactRefreshexport is available and prefered over the default export. It's an object with two properties:plugin: The plugin object with the rulesconfigs: An object containing configuration presets, each exposed as a function. These functions accept your custom options, merge them with sensible defaults for that config, and return the final config object.customHOCsoption was renamed toextraHOCsextraHOCsoptionConfig example:
Config example without config:
Why
This version follows a revamp of the internal logic to better make the difference between random call expressions like
export const Enum = Object.keys(Record)and actual React HOC calls likeexport const MemoComponent = memo(Component). (fixes #93)The rule now handles ternaries and patterns like
export default customHOC(props)(Component)which makes it able to correctly support files like this one given this config:{ "react-refresh/only-export-components": [ "warn", { "extraHOCs": ["createRootRouteWithContext"] } ] }Because I'm not 100% sure this new logic doesn't introduce any false positive, this is done in a major-like version. This also give me the occasion to remove the hardcoded
connectfrom the rule. If you are usingconnectfromreact-redux, you should now add it toextraHOCslike this:{ "react-refresh/only-export-components": ["warn", { "extraHOCs": ["connect"] }] }openapi-ts/openapi-typescript (openapi-fetch)
v0.16.0Compare Source
Minor Changes
9002418Thanks @luxass! - Added support for setting a custom path serializers either globally or per request. This allows you to customize how path parameters are serialized in the URL. E.g. you can use a custom serializer to prevent encoding of a path parameter, if you need to pass a value that should not be encoded.v0.15.2Compare Source
Patch Changes
89843b0Thanks @srbarba! - Use text() when no content-length is provided to avoid errors parsing empty bodies (200 witConfiguration
📅 Schedule: Branch creation - At any time (no schedule defined), 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.