Skip to content

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

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

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

Conversation

@renovate

@renovate renovate Bot commented Jun 23, 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
prettier (source) ^3.8.4^3.9.6 age confidence
renovate (source) ^43.235.1^43.285.3 age confidence

Release Notes

prettier/prettier (prettier)

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[@&#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

renovatebot/renovate (renovate)

v43.285.3

Compare Source

v43.285.2

Compare Source

v43.285.1

Compare Source

v43.285.0

Compare Source

Features

v43.284.1

Compare Source

v43.284.0

Compare Source

Features
Tests

v43.283.0

Compare Source

Features

v43.282.0

Compare Source

Features
Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v13.77.7 (main) (#​44872) (8971306)
Documentation
Miscellaneous Chores

v43.281.1

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v13.77.6 (main) (#​44860) (866dd56)
Miscellaneous Chores

v43.281.0

Compare Source

Features

v43.280.5

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v13.77.5 (main) (#​44842) (be2ff0d)
  • linters: add rules for filesystem helpers and Date (#​44685) (716baf6)
  • platform/gitlab: retry MR creation on transient source_branch race. (#​44502) (12b2f4f)
Miscellaneous Chores
  • deps: update dependency lint-staged to v17.1.0 (main) (#​44845) (d610624)
  • deps: update dependency pnpm to v11.15.0 (main) (#​44844) (510a850)
  • deps: update ghcr.io/containerbase/devcontainer docker tag to v14.13.10 (main) (#​44841) (439bdd2)
Code Refactoring
  • workers/repository: extract minimumReleaseAge/minimumConfidence checks (#​44825) (927b094)
Continuous Integration

v43.280.4

Compare Source

Miscellaneous Chores
Build System
  • deps: update dependency semantic-release to v25.0.8 (main) (#​44840) (53223e3)

v43.280.3

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v13.77.4 (main) (#​44837) (558fb51)
Miscellaneous Chores
Code Refactoring
  • workers/repository: add isMinimumReleaseAgeApplicable/isMinimumConfidenceApplicable (#​44824) (f1cd516)

v43.280.2

Compare Source

Bug Fixes
  • presets/helpers: ensure that pinGitHubActionDigestsToSemver preset only applies to actions (#​44830) (c33364d)

v43.280.1

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v13.77.3 (main) (#​44829) (5c316be)
Documentation
Miscellaneous Chores

v43.280.0

Compare Source

Features
Documentation
  • minimum-release-age: link to separate issue for pinDigest (#​44821) (6e15862)

v43.279.2

Compare Source

Bug Fixes
  • git: surface GitHub GH013 ruleset rejections as config errors (#​44819) (3cba608)

v43.279.1

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v13.77.2 (main) (#​44816) (ee7285a)
Miscellaneous Chores

v43.279.0

Compare Source

Features
  • deps: update ghcr.io/renovatebot/base-image docker tag to v13.77.0 (main) (#​44802) (609a1be)
Documentation
Miscellaneous Chores
Code Refactoring
Tests

v43.278.5

Compare Source

Bug Fixes
Miscellaneous Chores

v43.278.4

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v13.76.12 (main) (#​44790) (5a400e2)
Miscellaneous Chores
Tests

v43.278.3

Compare Source

Miscellaneous Chores
  • deps: update dependency vitest-mock-extended to v5 (main) (#​44786) (d6f2426)
Build System

v43.278.2

Compare Source

Bug Fixes

v43.278.1

Compare Source

Build System

v43.278.0

Compare Source

Features

v43.277.1

Compare Source

Bug Fixes
  • presets/monorepo: update react and react-native source URLs to react/react org (#​44780) (61e4c9c)
Documentation

v43.277.0

Compare Source

Features
Bug Fixes

v43.276.0

Compare Source

Features
Bug Fixes
Miscellaneous Chores

v43.275.2

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v13.76.11 (main) (#​44775) (381a5b4)
Miscellaneous Chores

v43.275.1

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v13.76.10 (main) (#​44771) (5586073)
Miscellaneous Chores

v43.275.0

Compare Source

Features

v43.274.0

Compare Source

Features
Miscellaneous Chores
  • deps: update github/codeql-action action to v4.37.2 (main) (#​44760) (2f7284f)
Code Refactoring

v43.273.0

Compare Source

Features
  • platform: get all branch update dates in a more performant manner (#​44582) (f932d52)
Code Refactoring
  • config/global: improve type restrictions for GlobalConfig.OPTIONS (#​44636) (d16dc9a)

v43.272.9

Compare Source

Bug Fixes
  • manager/dockerfile: handle single-quoted empty ARG default value (#​44522) (1f5f6da)

v43.272.8

Compare Source

Bug Fixes
  • git-submodule: handle ./ relative paths in URL resolution (#​44742) (bad5e22)

v43.272.7

Compare Source

Bug Fixes
  • gomod: pseudo-version digest updates produce no change when module is absent from go proxy (#​44477) (e5ace74)

v43.272.6

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v13.76.8 (main) (#​44747) (a00c621)
  • deps: update ghcr.io/renovatebot/base-image docker tag to v13.76.9 (main) (#​44748) (d2aa7e3)
Miscellaneous Chores
Tests

v43.272.5

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v13.76.7 (main) (#​44743) (1e7391f)
Miscellaneous Chores
Code Refactoring
Tests
  • linters: add linting rule to enforce v8 ignore reason declaration (#​44726) (91e068f)
Continuous Integration

v43.272.4

Compare Source

Documentation
Tests
Build System

v43.272.3

Compare Source

Bug Fixes

v43.272.2

Compare Source

Bug Fixes
  • platform/azure: evaluate policies before attempting to merge PR (#​44631) (7ac677d)
Code Refactoring

v43.272.1

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v13.76.6 (main) (#​44724) (37372a1)
Documentation
Miscellaneous Chores
Build System
  • deps: update dependency semantic-release to v25.0.7 (main) (#​44722) (365a407)

v43.272.0

Compare Source

Features

v43.271.3

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v13.76.5 (main) (#​44712) (3200bd4)
Miscellaneous Chores
  • deps: update ghcr.io/containerbase/devcontainer docker tag to v14.13.8 (main) (#​44711) (37d4dd2)

v43.271.2

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v13.76.4 (main) (#​44710) (ac8e1d7)
Miscellaneous Chores
  • deps: update ghcr.io/containerbase/devcontainer docker tag to v14.13.7 (main) (#​44709) (61d5247)
Code Refactoring
Tests
  • linters: add linting rule to enforce usage of host rules test util (#​44692) (5ad36a2)

v43.271.1

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v13.76.3 (main) (#​44708) (55df4c7)
Miscellaneous Chores

v43.271.0

Compare Source

Features

v43.270.2

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v13.76.2 (main) (#​44705) (54d839d)
Miscellaneous Chores
  • deps: update ghcr.io/containerbase/devcontainer docker tag to v14.13.5 (main) (#​44704) (fed170a)

v43.270.1

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v13.76.1 (main) (#​44703) (efe4c69)
Miscellaneous Chores
  • deps: update dependency tar to v7.5.20 (main) (#​44702) (aa18088)
  • deps: update dependency tsdown to v0.22.5 (main) (#​44696) (ffa5bbb)
  • deps: update ghcr.io/containerbase/devcontainer docker tag to v14.13.4 (main) (#​44700) (aae1338)

v43.270.0

Compare Source

Features
  • deps: update ghcr.io/renovatebot/base-image docker tag to v13.76.0 (main) (#​44695) (f532fdc)

v43.269.3

[Compare Source](https://redirect.github.com

Note

PR body was truncated to here.


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

This PR was generated by Mend Renovate. View the repository job log.

@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from dafaf48 to a4852ed Compare June 25, 2026 10:32
@renovate renovate Bot changed the title chore(deps): update all non-major dependencies chore(deps): update devdependency renovate to ^43.242.2 Jun 25, 2026
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from a4852ed to bceede9 Compare June 25, 2026 18:05
@renovate renovate Bot changed the title chore(deps): update devdependency renovate to ^43.242.2 chore(deps): update devdependency renovate to ^43.243.0 Jun 25, 2026
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from bceede9 to 9913fa3 Compare June 25, 2026 22:33
@renovate renovate Bot changed the title chore(deps): update devdependency renovate to ^43.243.0 chore(deps): update devdependency renovate to ^43.243.1 Jun 25, 2026
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 9913fa3 to 3aea681 Compare June 26, 2026 02:31
@renovate renovate Bot changed the title chore(deps): update devdependency renovate to ^43.243.1 chore(deps): update devdependency renovate to ^43.243.2 Jun 26, 2026
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 3aea681 to b94e475 Compare June 26, 2026 15:57
@renovate renovate Bot changed the title chore(deps): update devdependency renovate to ^43.243.2 chore(deps): update all non-major dependencies Jun 26, 2026
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 12 times, most recently from b246be1 to 0e49244 Compare June 30, 2026 07:53
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 24 times, most recently from 2301ca9 to 40832fd Compare July 14, 2026 10:16
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from d794335 to 1a6797c Compare July 15, 2026 11:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant