Skip to content

Update NPM Dependencies - #243

Open
red-hat-konflux[bot] wants to merge 1 commit into
release-1.3from
konflux/mintmaker/release-1.3/npm-deps
Open

Update NPM Dependencies#243
red-hat-konflux[bot] wants to merge 1 commit into
release-1.3from
konflux/mintmaker/release-1.3/npm-deps

Conversation

@red-hat-konflux

@red-hat-konflux red-hat-konflux Bot commented Jan 22, 2026

Copy link
Copy Markdown

This PR contains the following updates:

Package Type Update Change Pending
@peculiar/x509 dependencies minor 1.8.41.14.3
@testing-library/user-event devDependencies patch 14.6.114.6.3
@types/react (source) devDependencies patch 18.3.2718.3.31
caniuse-lite devDependencies patch 1.0.300018061.0.30001807 1.0.30001809
eslint-config-prettier devDependencies patch 9.1.09.1.2
js-yaml dependencies patch 4.3.04.3.1
next (source) dependencies patch 15.5.1915.5.23
prettier (source) devDependencies minor 3.8.13.9.6
react-hook-form (source) dependencies minor 7.81.07.84.0 7.85.0

Release Notes

PeculiarVentures/x509 (@​peculiar/x509)

v1.14.3

Compare Source

What's Changed

New Contributors

Full Changelog: PeculiarVentures/x509@v1.14.2...v1.14.3

v1.14.2

Compare Source

What's Changed

New Contributors

Full Changelog: PeculiarVentures/x509@v1.14.1...v1.14.2

v1.14.1

Compare Source

What's Changed

Full Changelog: PeculiarVentures/x509@v1.14.0...v1.14.1

v1.14.0

Compare Source

What's Changed

Full Changelog: PeculiarVentures/x509@v1.13.0...v1.14.0

v1.13.0

Compare Source

Full Changelog: PeculiarVentures/x509@v1.12.4...v1.13.0

v1.12.4

Compare Source

What's Changed

New Contributors

Full Changelog: PeculiarVentures/x509@v1.12.3...v1.12.4

v1.12.3

Compare Source

v1.12.2

Compare Source

v1.12.1

Compare Source

v1.12.0

Compare Source

v1.11.0

Compare Source

v1.10.1

Compare Source

v1.10.0

Compare Source

v1.9.7

Compare Source

v1.9.6

Compare Source

v1.9.5

Compare Source

v1.9.4

Compare Source

v1.9.3

Compare Source

v1.9.2

Compare Source

v1.9.1

Compare Source

v1.9.0

Compare Source

testing-library/user-event (@​testing-library/user-event)

v14.6.3

Compare Source

Bug Fixes
browserslist/caniuse-lite (caniuse-lite)

v1.0.30001807

Compare Source

prettier/eslint-config-prettier (eslint-config-prettier)

v9.1.2

Compare Source

nodeca/js-yaml (js-yaml)

v4.3.1

Compare Source

vercel/next.js (next)

v15.5.23

Compare Source

v15.5.22

Compare Source

What's Changed

Full Changelog: vercel/next.js@v15.5.21...v15.5.22

v15.5.21

Compare Source

This release contains security fixes for the following advisories:

High:

Moderate:

v15.5.20

Compare Source

Contains no changes except publishing @next/swc-wasm-web which was accidentally not published since 15.5.15.

prettier/prettier (prettier)

v3.9.6

Compare Source

diff

TypeScript: Preserve quotes for methods named new (#​19621 by @​kovsu)
// Input
interface Container {
  "new"(id: string): number;
}

// Prettier 3.9.5
interface Container {
  new(id: string): number;
}

// Prettier 3.9.6
interface Container {
  "new"(id: string): number;
}
TypeScript: Support import defer (#​19624, #​19675 by @​fisker)
// Input
import defer * as foo from "foo";

// Prettier 3.9.5
import * as foo from "foo";

// Prettier 3.9.6
import defer * as foo from "foo";
JavaScript: Added a new official plugin @prettier/plugin-yuku (#​19628, #​19629 by @​fisker)

@prettier/plugin-yuku is powered by Yuku (A high-performance JavaScript/TypeScript compiler toolchain written in Zig).

This plugin includes two new parsers: yuku (JavaScript syntax) and yuku-ts (TypeScript syntax).

To use this plugin:

  1. Install the plugin:

    yarn add --dev prettier @​prettier/plugin-yuku
  2. Add it to your .prettierrc:

    plugins:
      - "@​prettier/plugin-yuku"

Due to package size limitations, this plugin is not bundled with the main prettier package and must be installed separately.

For more information, check the package homepage.

Big thanks to @​arshad-yaseen for his excellent work.

v3.9.5

Compare Source

diff

Markdown: Cap ordered list mark at 999,999,999 (#​19351 by @​tats-u)

CommonMark parsers only support ordered list item numbers up to 999,999,999.

With this change, Prettier now caps the ordered list item number at 999,999,999 to ensure that the output is correctly parsed as an ordered list by CommonMark parsers. Numbers larger than 999,999,999 are not parsed as list item numbers and are left unchanged in the output:

<!-- Input -->
999999998. text
999999998. text
999999998. text
999999998. text

1234567890123456789012) text

<!-- Prettier 3.9.4 -->
999999998. text
999999999. text
1000000000. text
1000000001. text

1234567890123456789012) text

<!-- Prettier 3.9.5 -->
999999998. text
999999999. text
999999999. text
999999999. text

1234567890123456789012) text
Markdown: Avoid corrupting empty link with title (#​19487 by @​andersk)

Do not remove <> from an inline link or image with an empty URL and a title, as this removal would change its interpretation.

<!-- Input -->
[link](<> "title")

<!-- Prettier 3.9.4 -->
[link]( "title")

<!-- Prettier 3.9.5 -->
[link](<> "title")
Less: Remove extra spaces after [ in map lookups (#​19503 by @​kovsu)
// Input
.foo {
  color: #theme[ primary];
  color: #theme[@&#8203;name];
  color: #theme[@&#8203;@&#8203;name];
}

// Prettier 3.9.4
.foo {
  color: #theme[ primary];
  color: #theme[ @&#8203;name];
  color: #theme[ @&#8203;@&#8203;name];
}

// Prettier 3.9.5
.foo {
  color: #theme[primary];
  color: #theme[@&#8203;name];
  color: #theme[@&#8203;@&#8203;name];
}
CSS: Prevent addition space in type() with + (#​19516 by @​bigandy)

This fixes the addition space before + in CSS type() declaration. For example type(<number>+) was being converted into type(<number> +) which is invalid CSS and does not work.

/* Input */
div {
  border-radius: attr(br type(<length>+));
}

/* Prettier 3.9.4 */
div {
  border-radius: attr(br type(<length> +));
}

/* Prettier 3.9.5 */
div {
  border-radius: attr(br type(<length>+));
}
Less: Remove spaces between merge markers and colons (#​19517 by @​kovsu)
// Input
a {
  box-shadow  +  : 0 0 1px #&#8203;000;
}

// Prettier 3.9.4
a {
  box-shadow+  : 0 0 1px #&#8203;000;
}

// Prettier 3.9.5
a {
  box-shadow+: 0 0 1px #&#8203;000;
}
Markdown: Preserve wiki links with aliases (#​19527 by @​kovsu)
<!-- Input -->
[[Foo:Bar]]

<!-- Prettier 3.9.4 -->
[[Foo]]

<!-- Prettier 3.9.5 -->
[[Foo:Bar]]
TypeScript: Fix comments being dropped on shorthand type import/export specifiers (#​19565 by @​kirkwaiblinger)
// Input
export { type /* comment */ T } from "foo";
import { type /* comment */ T } from "foo";

// Prettier 3.9.4
Error: Comment "comment" was not printed. Please report this error!

// Prettier 3.9.5
export { type /* comment */ T } from "foo";
import { type /* comment */ T } from "foo";
Miscellaneous: Preserving comments' placement property (#​19567 by @​Janther)

Prettier@​3.9.0 deleted an undocumented property on comments, which was already used by plugins, comment.placement is now available again after comment attach.

Flow: Stop enforcing empty module declaration to break (#​19568 by @​fisker)
// Input
declare module "foo" {}

// Prettier 3.9.4
declare module "foo" {
}

// Prettier 3.9.5
declare module "foo" {}
Angular: Support expression for exhaustive typechecking (#​19571 by @​fisker)
<!-- Input -->
@&#8203;switch (state.mode) {
  @&#8203;default never(state);
}

<!-- Prettier 3.9.4 -->
@&#8203;switch (state.mode) {
  @&#8203;default never;
}

<!-- Prettier 3.9.5 -->
@&#8203;switch (state.mode) {
  @&#8203;default never(state);
}
TypeScript: Ignore comments inside mapped type when checking type parameter comments (#​19572 by @​fisker)
// Input
foo<{
  // comment
  [key in keyof Foo]: number
}>();

// Prettier 3.9.4
foo<
  {
    // comment
    [key in keyof Foo]: number;
  }
>();

// Prettier 3.9.5
foo<{
  // comment
  [key in keyof Foo]: number;
}>();
Less: Fix adjacent block comments being corrupted (#​19574 by @​kovsu)
// Input
/* a *//* b */
/* a */* {
  color: red;
}

// Prettier 3.9.4
/* a */
/* b */
/* a * {
  color: red;
}

// Prettier 3.9.5
/* a */ /* b */
/* a */
* {
  color: red;
}
JavaScript: Handle dangling comments in SwitchStatement (#​19581 by @​fisker)
// Input
switch (foo) {
 // comment
}

// Prettier 3.9.4
switch (
  foo
  // comment
) {
}

// Prettier 3.9.5
switch (foo) {
  // comment
}
TypeScript: Remove space in comment-only object type (#​19583 by @​fisker)
// Input
var foo = {
  /* comment */
};
type Foo = {
  /* comment */
};

// Prettier 3.9.4
var foo = {/* comment */};
type Foo = { /* comment */ };

// Prettier 3.9.5
var foo = {/* comment */};
type Foo = {/* comment */};

v3.9.4

Compare Source

diff

Angular: Format @content(name) -> @content (name) to align with other block syntax (#​19499 by @​fisker)
<!-- Input -->
<FancyButton [label]="title">
  @&#8203;content (icon) {
    <span>Icon!</span>
  }
  @&#8203;content (description) {
    <span>Description text</span>
  }
  <span>Other children</span>
</FancyButton>

<!-- Prettier 3.9.3 -->
<FancyButton [label]="title">
  @&#8203;content(icon) {
    <span>Icon!</span>
  }
  @&#8203;content(description) {
    <span>Description text</span>
  }
  <span>Other children</span>
</FancyButton>

<!-- Prettier 3.9.4 -->
<FancyButton [label]="title">
  @&#8203;content (icon) {
    <span>Icon!</span>
  }
  @&#8203;content (description) {
    <span>Description text</span>
  }
  <span>Other children</span>
</FancyButton>

v3.9.3

Compare Source

diff

Markdown: Fix unexpected removal of characters in liquid syntax (#​19489 by @​seiyab)
// Input
<!-- Input -->
{{ page.title
}} text

<!-- Prettier 3.9.1 -->
{{ page.title
 text

<!-- Prettier 3.9.3 -->
{{ page.title
}} text
TypeScript: Allow decorators to be used with declare on class fields (#​19492 by @​evoactivity)

Extensively used within the Ember ecosystem, decorators with declare on class fields will ignore the babel parser error and allow Prettier to format the code without breaking it.

// Input
export default class ProjectStatusComponent extends Component<ProjectStatusSig> {
  @&#8203;service declare server: ServerService;
}

// Prettier 3.9.1
// SyntaxError: Decorators can't be used with a declare field. (2:3)
//  1 | export default class ProjectStatusComponent extends Component<ProjectStatusSig> {
//> 2 |   @&#8203;service declare server: ServerService;
//    |   ^
//  3 | }

// Prettier 3.9.3
export default class ProjectStatusComponent extends Component<ProjectStatusSig> {
  @&#8203;service declare server: ServerService;
}

v3.9.2

Compare Source

v3.9.1

Compare Source

diff

CLI: Fix ignored file has been cached incorrectly (#​19483 by @​kovsu)

Bug details #​18016

v3.9.0

Compare Source

diff

🔗 Release Notes

v3.8.5

Compare Source

diff

Flow: Support readonly as a variance annotation (#​19022 by @​marcoww6)

Flow now accepts readonly as a property variance annotation, equivalent to + (covariant/read-only).

// Input
type T = {
  readonly foo: string,
};

// Prettier 3.8.4
SyntaxError

// Prettier 3.8.5
type T = {
  readonly foo: string,
};

v3.8.4

Compare Source

diff

Markdown: Fix blank lines between list items and nested sub-lists being removed in Markdown/MDX (#​17746 by @​byplayer)

Prettier was removing blank lines between list items and their nested sub-lists, converting loose lists into tight lists and changing their semantic meaning.

<!-- Input -->
- a

  - b

- c

  - d

<!-- Prettier 3.8.3 -->
- a
  - b
- c
  - d

<!-- Prettier 3.8.4 -->
- a

  - b

- c

  - d

v3.8.3

Compare Source

diff

SCSS: Prevent trailing comma in if() function (#​18471 by @​kovsu)
// Input
$value: if(sass(false): 1; else: -1);

// Prettier 3.8.2
$value: if(
  sass(false): 1; else: -1,
);

// Prettier 3.8.3
$value: if(sass(false): 1; else: -1);

v3.8.2

Compare Source

diff

Angular: Support Angular v21.2 (#​18722, #​19034 by @​fisker)

Exhaustive typechecking with @default never;

<!-- Input -->
@&#8203;switch (foo) {
  @&#8203;case (1) {}
  @&#8203;default never;
}

<!-- Prettier 3.8.1 -->
SyntaxError: Incomplete block "default never". If you meant to write the @&#8203; character, you should use the "&#&#8203;64;" HTML entity instead. (3:3)

<!-- Prettier 3.8.2 -->
@&#8203;switch (foo) {
  @&#8203;case (1) {}
  @&#8203;default never;
}

arrow function and instanceof expressions.

<!-- Input -->
@&#8203;let fn = (a) =>        a?    1:2;

{{ fn ( a         instanceof b)}}

<!-- Prettier 3.8.1 -->
@&#8203;let fn = (a) =>        a?    1:2;

{{ fn ( a         instanceof b)}}

<!-- Prettier 3.8.2 -->
@&#8203;let fn = (a) => (a ? 1 : 2);

{{ fn(a instanceof b) }}
react-hook-form/react-hook-form (react-hook-form)

v7.84.0

Compare Source

Improvements
  • handleSubmit returns the typed result of the onValid callback instead of discarding it
  • <Form /> supports a function-based action (Server Action style) in addition to URL-string actions
  • Improve performance and reduce bundle size
Fixed
  • reset() with resetOptions.keepDirtyValues freezing clean sibling fields in a nested object when another field in that object is dirty
  • Restore missing FieldArray and FormState type exports
  • setValues not notifying useFieldArray subscribers, leaving rendered fields stale

v7.83.0

Compare Source

Improvements
  • Enhance getEventValue to handle file inputs
  • Improve TypeScript performance with a hard cap at 10 levels of recursive type depth
Fixed
  • Clear internal errors state on argument-less clearErrors()
  • Preserve dirtyFields reference stability
  • Old checkbox/radio elements polluting internal field state
  • useController not re-subscribing onChange/onBlur when control changes
  • Allow validation messages to be defined even if their related value is undefined

v7.82.0

Compare Source

Added
  • Opt-in delayError option for setValue to delay validation error updates
Fixed
  • Expose resetDefaultValues through form context
  • setValue with shouldDirty not updating dirty state correctly when the form is disabled
  • Preserve dirtyFields boolean values for registered array fields
  • Restore FieldArray component export
Performance
  • Improve getDirtyFields performance, especially for larger forms and deeply nested values

Configuration

📅 Schedule: (UTC)

  • 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.


  • If you want to rebase/retry this PR, check this box

To execute skipped test pipelines write comment /ok-to-test.


Documentation

Find out how to configure dependency updates in MintMaker documentation or see all available configuration options in Renovate documentation.

@codecov

codecov Bot commented Jan 22, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 87.27%. Comparing base (9ccdeec) to head (51f358f).
⚠️ Report is 1 commits behind head on release-1.3.

Additional details and impacted files
@@             Coverage Diff              @@
##           release-1.3     #243   +/-   ##
============================================
  Coverage        87.27%   87.27%           
============================================
  Files               15       15           
  Lines             1752     1752           
  Branches            97       97           
============================================
  Hits              1529     1529           
+ Misses             223      222    -1     
- Partials             0        1    +1     

☔ View full report in Codecov by Harness.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/mintmaker/release-1.3/npm-deps branch 5 times, most recently from 32b74de to e451927 Compare January 29, 2026 17:35
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/mintmaker/release-1.3/npm-deps branch 7 times, most recently from 14867b0 to c39024d Compare February 6, 2026 13:38
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/mintmaker/release-1.3/npm-deps branch 2 times, most recently from 84ff4bf to e5ca127 Compare February 15, 2026 05:33
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/mintmaker/release-1.3/npm-deps branch 4 times, most recently from 88145f9 to 228da3c Compare February 26, 2026 18:44
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/mintmaker/release-1.3/npm-deps branch 4 times, most recently from cc685a0 to 9f58ec9 Compare March 6, 2026 06:34
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/mintmaker/release-1.3/npm-deps branch 5 times, most recently from 02fab33 to 771dc47 Compare March 17, 2026 07:02
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/mintmaker/release-1.3/npm-deps branch from 771dc47 to df777ae Compare March 22, 2026 06:06
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/mintmaker/release-1.3/npm-deps branch 4 times, most recently from b83c903 to f8093c1 Compare April 22, 2026 10:38
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/mintmaker/release-1.3/npm-deps branch 4 times, most recently from 4652941 to 663897c Compare May 2, 2026 07:21
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/mintmaker/release-1.3/npm-deps branch from 663897c to f1503fb Compare May 6, 2026 12:35
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/mintmaker/release-1.3/npm-deps branch from f1503fb to c5f674f Compare May 19, 2026 02:28
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update npm dependencies chore(deps): lock file maintenance npm dependencies May 19, 2026
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/mintmaker/release-1.3/npm-deps branch 5 times, most recently from 400d574 to 0e660f7 Compare May 28, 2026 02:27
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/mintmaker/release-1.3/npm-deps branch from 0e660f7 to ee5e317 Compare May 29, 2026 02:42
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/mintmaker/release-1.3/npm-deps branch from ee5e317 to 265e377 Compare June 16, 2026 02:57
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/mintmaker/release-1.3/npm-deps branch 2 times, most recently from 58356b7 to 396d896 Compare June 25, 2026 23:11
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): lock file maintenance npm dependencies Update NPM Dependencies Jun 25, 2026
@red-hat-konflux
red-hat-konflux Bot force-pushed the konflux/mintmaker/release-1.3/npm-deps branch 8 times, most recently from f865387 to e2023da Compare July 3, 2026 13:58
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants