Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Dec 4, 2025

This PR contains the following updates:

Package Change Age Confidence
@navikt/aksel-icons (source) 7.33.0 -> 7.35.1 age confidence
@playwright/test (source) 1.56.1 -> 1.57.0 age confidence
@reduxjs/toolkit (source) 2.9.2 -> 2.11.1 age confidence
@types/node (source) 22.19.0 -> 22.19.2 age confidence
@types/react (source) 19.2.2 -> 19.2.7 age confidence
@types/react-dom (source) 19.2.2 -> 19.2.3 age confidence
eslint (source) 9.39.0 -> 9.39.1 age confidence
i18next (source) 25.6.0 -> 25.7.2 age confidence
msw (source) 2.11.6 -> 2.12.4 age confidence
prettier (source) 3.6.2 -> 3.7.4 age confidence
react (source) 19.2.0 -> 19.2.1 age confidence
react-dom (source) 19.2.0 -> 19.2.1 age confidence
react-router-dom (source) 7.9.5 -> 7.10.1 age confidence
typescript-eslint (source) 8.46.2 -> 8.49.0 age confidence
yarn (source) 4.10.3 -> 4.12.0 age confidence

Release Notes

navikt/aksel (@​navikt/aksel-icons)

v7.35.1

Compare Source

v7.35.0

Compare Source

v7.34.0

Compare Source

Minor Changes
  • Icons: 🎉 New icons PhoneSlash and BellSlash. (#​4310)

v7.33.5

Compare Source

v7.33.4

Compare Source

v7.33.3

Compare Source

v7.33.2

Compare Source

v7.33.1

Compare Source

microsoft/playwright (@​playwright/test)

v1.57.0

Compare Source

reduxjs/redux-toolkit (@​reduxjs/toolkit)

v2.11.1

Compare Source

v2.11.0

Compare Source

v2.10.1

Compare Source

This bugfix release fixes an issue with window access breaking in SSR due to the byte-shaving work in 2.10.

What's Changed

Full Changelog: reduxjs/redux-toolkit@v2.10.0...v2.10.1

v2.10.0

Compare Source

eslint/eslint (eslint)

v9.39.1

Compare Source

i18next/i18next (i18next)

v25.7.2

Compare Source

  • fix: Invalid overwrite of default value for overloadTranslationOptionHandler 2374.

v25.7.1

Compare Source

  • TS: remove wrong signature 2372.

v25.7.0

Compare Source

  • Enhance cloneInstance to create a new interpolator if interpolation options are passed in. This will address 2371.

v25.6.3

Compare Source

  • chore: dependency updates 2368

v25.6.2

Compare Source

  • types: export InterpolationMap

v25.6.1

Compare Source

  • fix: createInstance does not exist on an instance #​2366
mswjs/msw (msw)

v2.12.4

Compare Source

v2.12.4 (2025-12-03)

Bug Fixes

v2.12.3

Compare Source

v2.12.3 (2025-11-23)

Bug Fixes

v2.12.2

Compare Source

v2.12.2 (2025-11-14)

Bug Fixes

v2.12.1

Compare Source

v2.12.1 (2025-11-09)

Bug Fixes

v2.12.0

Compare Source

v2.12.0 (2025-11-05)

Features
prettier/prettier (prettier)

v3.7.4

Compare Source

diff

LWC: Avoid quote around interpolations (#​18383 by @​kovsu)
<!-- Input -->
<div foo={bar}>   </div>

<!-- Prettier 3.7.3 (--embedded-language-formatting off) -->
<div foo="{bar}"></div>

<!-- Prettier 3.7.4 (--embedded-language-formatting off) -->
<div foo={bar}></div>
TypeScript: Fix comment inside union type gets duplicated (#​18393 by @​fisker)
// Input
type Foo = (/** comment */ a | b) | c;

// Prettier 3.7.3
type Foo = /** comment */ (/** comment */ a | b) | c;

// Prettier 3.7.4
type Foo = /** comment */ (a | b) | c;
TypeScript: Fix unstable comment print in union type comments (#​18395 by @​fisker)
// Input
type X = (A | B) & (
  // comment
  A | B
);

// Prettier 3.7.3 (first format)
type X = (A | B) &
  (// comment
  A | B);

// Prettier 3.7.3 (second format)
type X = (
  | A
  | B // comment
) &
  (A | B);

// Prettier 3.7.4
type X = (A | B) &
  // comment
  (A | B);

v3.7.3

Compare Source

diff

API: Fix prettier.getFileInfo() change that breaks VSCode extension (#​18375 by @​fisker)

An internal refactor accidentally broke the VSCode extension plugin loading.

v3.7.2

Compare Source

diff

JavaScript: Fix string print when switching quotes (#​18351 by @​fisker)
// Input
console.log("A descriptor\\'s .kind must be \"method\" or \"field\".")

// Prettier 3.7.1
console.log('A descriptor\\'s .kind must be "method" or "field".');

// Prettier 3.7.2
console.log('A descriptor\\\'s .kind must be "method" or "field".');
JavaScript: Preserve quote for embedded HTML attribute values (#​18352 by @​kovsu)
// Input
const html = /* HTML */ ` <div class="${styles.banner}"></div> `;

// Prettier 3.7.1
const html = /* HTML */ ` <div class=${styles.banner}></div> `;

// Prettier 3.7.2
const html = /* HTML */ ` <div class="${styles.banner}"></div> `;
TypeScript: Fix comment in empty type literal (#​18364 by @​fisker)
// Input
export type XXX = {
  // tbd
};

// Prettier 3.7.1
export type XXX = { // tbd };

// Prettier 3.7.2
export type XXX = {
  // tbd
};

v3.7.1

Compare Source

diff

API: Fix performance regression in doc printer (#​18342 by @​fisker)

Prettier 3.7.1 can be very slow when formatting big files, the regression has been fixed.

v3.7.0

Compare Source

diff

🔗 Release Notes

facebook/react (react)

v19.2.1: 19.2.1 (December 3rd, 2025)

Compare Source

React Server Components
remix-run/react-router (react-router-dom)

v7.10.1

Compare Source

Patch Changes

v7.10.0

Compare Source

Patch Changes

v7.9.6

Compare Source

Patch Changes
typescript-eslint/typescript-eslint (typescript-eslint)

v8.49.0

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.48.1

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.48.0

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.47.0

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.46.4

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.46.3

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

yarnpkg/berry (yarn)

v4.12.0

Compare Source

v4.11.0

Compare Source


Configuration

📅 Schedule: Branch creation - "before 07:00 on Thursday" in timezone Europe/Oslo, 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 Pull requests that update a dependency file label Dec 4, 2025
@renovate renovate bot force-pushed the renovate/npm-minor-patch branch 4 times, most recently from 51bf63b to 54d1820 Compare December 11, 2025 07:37
@renovate renovate bot force-pushed the renovate/npm-minor-patch branch from 54d1820 to ad76e30 Compare December 11, 2025 21:41
@renovate renovate bot force-pushed the renovate/npm-minor-patch branch from ad76e30 to 7dda059 Compare December 12, 2025 05:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants