Skip to content

chore(deps): update all non-major dependencies#548

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-minor-patch
Open

chore(deps): update all non-major dependencies#548
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-minor-patch

Conversation

@renovate

@renovate renovate Bot commented Jun 28, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
@types/node (source) ^25.9.4^25.9.5 age confidence
@vitest/coverage-v8 (source) ^4.1.9^4.1.10 age confidence
prettier (source) ^3.8.4^3.9.5 age confidence
tsx (source) ^4.22.4^4.23.0 age confidence
vite (source) ^8.0.16^8.1.4 age confidence
vitest (source) ^4.1.9^4.1.10 age confidence
yarn (source) 4.17.04.17.1 age confidence

Release Notes

vitest-dev/vitest (@​vitest/coverage-v8)

v4.1.10

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
prettier/prettier (prettier)

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

v3.9.3

Compare Source

v3.9.2

Compare Source

v3.9.1

Compare Source

v3.9.0

Compare Source

diff

🔗 Release Notes

v3.8.5

Compare Source

privatenumber/tsx (tsx)

v4.23.0

Compare Source

Bug Fixes
Features

This release is also available on:

v4.22.5

Compare Source

Bug Fixes
  • isolate hook state per async module.register() registration (a305f36)

This release is also available on:

vitejs/vite (vite)

v8.1.4

Compare Source

Features
Bug Fixes
Documentation
Miscellaneous Chores
Code Refactoring
Tests
Build System

v8.1.3

Compare Source

Bug Fixes

v8.1.2

Compare Source

Bug Fixes

v8.1.1

Compare Source

Features
Bug Fixes
Miscellaneous Chores
Code Refactoring
  • css: remove lightningcss null byte bug workaround (#​22822) (2dafd3b)
  • use pre-defined environments variable to avoid duplicate Object.values calls (#​22790) (1113acf)
Tests
  • enable "manual chunk path" test and remove "worker.format error" test (#​22824) (c088511)

v8.1.0

Compare Source

Features
Bug Fixes
Code Refactoring
yarnpkg/berry (yarn)

v4.17.1: v4.17.1

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/yarnpkg/berry/compare/@yarnpkg/cli/4.17.0...@​yarnpkg/cli/4.17.1


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "before 12pm on Sunday"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 enabled auto-merge (squash) June 28, 2026 02:38
renovate-approve[bot]
renovate-approve Bot previously approved these changes Jun 28, 2026
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes Jun 28, 2026
@renovate

renovate Bot commented Jun 28, 2026

Copy link
Copy Markdown
Contributor Author

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: yarn.lock
➤ YN0000: · Yarn 4.17.1
➤ YN0000: ┌ Resolution step
➤ YN0016: │ prettier@npm:^3.9.5: All versions satisfying "^3.9.5" are quarantined
➤ YN0000: └ Completed in 2s 783ms
➤ YN0000: · Failed with errors in 2s 798ms

@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 0a716d8 to 4de96f8 Compare June 29, 2026 17:09
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes Jun 29, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Jun 29, 2026
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 4de96f8 to 74e0cf8 Compare June 30, 2026 03:55
renovate-approve[bot]
renovate-approve Bot previously approved these changes Jun 30, 2026
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes Jun 30, 2026
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 74e0cf8 to 671ca8a Compare June 30, 2026 12:36
renovate-approve[bot]
renovate-approve Bot previously approved these changes Jun 30, 2026
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes Jun 30, 2026
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 671ca8a to d93a470 Compare June 30, 2026 19:45
renovate-approve[bot]
renovate-approve Bot previously approved these changes Jun 30, 2026
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes Jun 30, 2026
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from d93a470 to 0a24a1f Compare July 2, 2026 07:06
renovate-approve[bot]
renovate-approve Bot previously approved these changes Jul 2, 2026
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes Jul 2, 2026
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes Jul 3, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Jul 3, 2026
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 8c110da to 3390134 Compare July 6, 2026 09:10
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes Jul 6, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Jul 6, 2026
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 3390134 to e8036e1 Compare July 8, 2026 09:45
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes Jul 8, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Jul 8, 2026
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from e8036e1 to bd82b8e Compare July 8, 2026 20:03
renovate-approve[bot]
renovate-approve Bot previously approved these changes Jul 8, 2026
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes Jul 8, 2026
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from bd82b8e to f5d4e90 Compare July 9, 2026 06:40
renovate-approve[bot]
renovate-approve Bot previously approved these changes Jul 9, 2026
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes Jul 9, 2026
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from f5d4e90 to 94fa7e1 Compare July 9, 2026 16:45
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