Skip to content

fix(deps): update all non-major dependencies - #989

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

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

Conversation

@renovate

@renovate renovate Bot commented May 17, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@sapphire/framework (source) ^5.5.0^5.5.1 age confidence
@types/lodash (source) ^4.17.24^4.17.25 age confidence
@types/node (source) ^24.12.3^24.13.6 age confidence
@vitest/coverage-v8 (source) ^4.1.5^4.1.11 age confidence
concurrently ^9.2.1^9.2.4 age confidence
discord.js (source) ^14.26.4^14.27.0 age confidence
eslint-plugin-prettier ^5.5.5^5.5.6 age confidence
msw (source) ^2.14.5^2.15.0 age confidence
prettier (source) ^3.8.3^3.9.8 age confidence
tsx (source) ^4.21.0^4.23.13 age confidence
turbo (source) ^2.9.12^2.11.2 age confidence
vite (source) ^7.3.3^7.3.6 age confidence
vitest (source) ^4.1.5^4.1.11 age confidence
yarn (source) 4.14.14.18.0 age confidence

Release Notes

sapphiredev/framework (@​sapphire/framework)

v5.5.1

Compare Source

🐛 Bug Fixes

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

v4.1.11

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v4.1.10

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v4.1.9

Compare Source

🐞 Bug Fixes
  • Fix importOriginal with optimizer and query import [backport to v4] - by Hiroshi Ogawa, David Harris, Codexand Vladimir in #​10546 (a5180)
  • browser:
    • Wait for orchestrator readiness before resolving browser sessions [backport to v4] - by Vladimir and Séamus O'Connor in #​10555 (7fb29)
    • Wait for iframe tester readiness before preparing [backport to v4] - by Vladimir and Séamus O'Connor in #​10497 and #​10556 (fbc62)
  • mocker:
    • Hoist vi.mock() for vite-plus/test imports [backport to v4] - by Hiroshi Ogawa, LongYinan, Claude Opus 4.8 and Vladimir in #​10548 (2c955)
  • pool:
    • Prevent test run hang on worker crash [backport to v4] - by Ari Perkkiö and Jattioui Ismail in #​10543 and #​10564 (934b0)
View changes on GitHub

v4.1.8

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v4.1.7

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v4.1.6

Compare Source

   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub
open-cli-tools/concurrently (concurrently)

v9.2.4

Compare Source

Full Changelog: open-cli-tools/concurrently@v9.2.3...v9.2.4

v9.2.3

Compare Source

Full Changelog: open-cli-tools/concurrently@v9.2.2...v9.2.3

discordjs/discord.js (discord.js)

v14.27.0

Compare Source

Bug Fixes

Documentation

Features

Refactor

Typings

  • WebhookMessageCreateOptions: Omit sharedClientTheme (b816b79)
  • Message: Specify rawData arg type (#​11123) (c4531d4)
  • UserManager: Fix send() return type to Promise<Message> (#​11337) (07c4127)

v14.26.5

Compare Source

Bug Fixes

prettier/eslint-plugin-prettier (eslint-plugin-prettier)

v5.5.6

Compare Source

Patch Changes
mswjs/msw (msw)

v2.15.0

Compare Source

v2.15.0 (2026-07-08)

Features

v2.14.7

Compare Source

v2.14.7 (2026-07-07)

Bug Fixes

v2.14.6

Compare Source

v2.14.6 (2026-05-11)

Bug Fixes
prettier/prettier (prettier)

v3.9.8

Compare Source

v3.9.7

Compare Source

  • Support Angular 22.2
  • Fix regressions in v3.9

🔗 Changelog

v3.9.6

Compare Source

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[@name];
  color: #theme[@@name];
}

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

// Prettier 3.9.5
.foo {
  color: #theme[primary];
  color: #theme[@name];
  color: #theme[@@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 -->
@switch (state.mode) {
  @default never(state);
}

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

<!-- Prettier 3.9.5 -->
@switch (state.mode) {
  @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

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
privatenumber/tsx (tsx)

v4.23.13

Compare Source

v4.23.12

Compare Source

Bug Fixes

This release is also available on:

v4.23.11

Compare Source

v4.23.10

Compare Source

Bug Fixes

This release is also available on:

v4.23.9

Compare Source

Bug Fixes
  • map Node test locations (2f55884)
  • support data URLs in tsImport (b94f46f)

This release is also available on:

v4.23.8

Compare Source

Bug Fixes
  • preserve package subpath resolution (be1315e)
  • preserve typeless ESM dependency exports (70dfc5e)

This release is also available on:

v4.23.7

Compare Source

Bug Fixes
  • prevent tsImport cache collisions (4e5a138)

This release is also available on:

v4.23.6

Compare Source

v4.23.5

Compare Source

v4.23.4

Compare Source

Bug Fixes
  • cli: allow async process.once() signal handlers to finish (#​827) (2afc7bb)

This release is also available on:

v4.23.3

Compare Source

Bug Fixes

This release is also available on:

v4.23.2

Compare Source

v4.23.1

Compare Source

Bug Fixes
  • support tsImport after global preload (8d4ffc2)
  • watch: avoid clearing piped output (95d0672)
  • watch: treat script and dependency paths literally (79fddde)
Performance Improvements
  • index transform cache lazily (e818ad6)
  • load esbuild lazily in CLI (d067938)
  • map Node TypeScript formats directly (cdcc623)
  • use sync module hooks on Node v22.22.3+ (f8992f1)

This release is also available on:

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:

v4.22.4

Compare Source

Bug Fixes
  • resolve CommonJS directory requires inside dependencies (#​803) (1ce8463)

This release is also available on:

v4.22.3

Compare Source

Bug Fixes
  • decode typed loader source (dce02fc)
  • preserve entrypoint with TypeScript preload hooks (68f72f3)

This release is also available on:

v4.22.2

Compare Source

Bug Fixes
  • preserve CJS JSON require in ESM hooks (35b700b)
  • preserve named exports from CommonJS TypeScript (11de737)
  • support module.exports require(esm) interop (cf8f199)

This release is also available on:

v4.22.1

Compare Source

Bug Fixes
  • resolve tsconfig path aliases containing a colon (#​780) (6979f28)

This release is also available on:

v4.22.0

Compare Source

Features

This release is also available on:

v4.21.1

Compare Source

Bug Fixes
  • support Node 20.11/21.2 import.meta paths (acf3d8f)
  • support Node.js 24.15.0 (c1d2d45)
  • support Node.js 26.1.0 and 25.9.0 (1d7e528)

This release is also available on:

vercel/turborepo (turbo)

v2.11.2: Turborepo v2.11.2

Compare Source

What's Changed

Changelog

Full Changelog: vercel/turborepo@v2.11.1...v2.11.2

v2.11.1: Turborepo v2.11.1

Compare Source

What's Changed

Changelog

Full Changelog: vercel/turborepo@v2.11.0...v2.11.1

v2.11.0: Turborepo v2.11.0

Compare Source

What's Changed

Changelog

Important

✂ PR body was truncated to here.


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) May 17, 2026 01:40
renovate-approve[bot]
renovate-approve Bot previously approved these changes May 17, 2026
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes May 17, 2026
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 0635991 to bbf0dd6 Compare May 17, 2026 05:11
renovate-approve[bot]
renovate-approve Bot previously approved these changes May 17, 2026
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes May 17, 2026
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from bbf0dd6 to 2080ca1 Compare May 18, 2026 15:39
renovate-approve[bot]
renovate-approve Bot previously approved these changes May 18, 2026
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes May 18, 2026
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 2080ca1 to 663889f Compare May 19, 2026 11:03
renovate-approve[bot]
renovate-approve Bot previously approved these changes May 19, 2026
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes May 19, 2026
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 663889f to 1885b21 Compare May 20, 2026 00:42
renovate-approve[bot]
renovate-approve Bot previously approved these changes May 20, 2026
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes May 20, 2026
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 1885b21 to a7f1389 Compare May 20, 2026 08:42
renovate-approve[bot]
renovate-approve Bot previously approved these changes May 20, 2026
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes May 20, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Aug 10, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Aug 14, 2026
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes Aug 14, 2026
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes Aug 18, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Aug 18, 2026
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes Aug 22, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Aug 22, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Aug 25, 2026
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes Aug 25, 2026
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes Aug 30, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Aug 30, 2026
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes Sep 2, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Sep 2, 2026
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes Sep 7, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Sep 7, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Sep 9, 2026
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes Sep 9, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Sep 14, 2026
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes Sep 14, 2026
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes Sep 16, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Sep 16, 2026
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes Sep 16, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Sep 16, 2026
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes Sep 18, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Sep 18, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Sep 18, 2026
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes Sep 18, 2026
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