Skip to content

build: update all non-major dependencies#3835

Open
angular-robot wants to merge 1 commit into
angular:mainfrom
angular-robot:ng-renovate/all-non-major-dependencies
Open

build: update all non-major dependencies#3835
angular-robot wants to merge 1 commit into
angular:mainfrom
angular-robot:ng-renovate/all-non-major-dependencies

Conversation

@angular-robot

@angular-robot angular-robot commented Jul 9, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@conventional-changelog/git-client (source) 3.0.23.1.0 age adoption passing confidence
@types/node (source) 24.13.224.13.3 age adoption passing confidence
conventional-commits-parser (source) 7.0.17.1.0 age adoption passing confidence
firebase (source, changelog) 12.15.012.16.0 age adoption passing confidence
prettier (source) 3.9.43.9.5 age adoption passing confidence
renovate (source) 43.251.343.256.2 age adoption passing confidence

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

Release Notes

conventional-changelog/conventional-changelog (@​conventional-changelog/git-client)

v3.1.0

Features
conventional-changelog/conventional-changelog (conventional-commits-parser)

v7.1.0

Compare Source

Features
firebase/firebase-js-sdk (firebase)

v12.16.0

Compare Source

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 */};
renovatebot/renovate (renovate)

v43.256.2

Compare Source

Miscellaneous Chores
  • deps: update dependency markdownlint-cli2 to v0.23.0 (main) (#​44439) (aea2d02)
  • deps: update github/codeql-action action to v4.37.0 (main) (#​44440) (8f68bd6)
Build System

v43.256.1

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v13.71.8 (main) (#​44437) (4a38e4a)
Miscellaneous Chores

v43.256.0

Compare Source

Features
  • manager/mint: add support for fully qualified urls for Mint packages (#​44305) (191cf7c)

v43.255.2

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v13.71.6 (main) (#​44404) (399c163)

v43.255.1

Compare Source

Bug Fixes
  • datasource/npm: require public Cache-Control to cache responses (#​42822) (371412d)
  • datasource/repology: honor abortOnError instead of aborting the run on every error (#​44326) (8a8f830)
Code Refactoring

v43.255.0

Compare Source

Features
  • replacements: corentinmusard/otel-cicd-action transferred to dash0hq (#​44386) (c759c30)

v43.254.0

Compare Source

Features

v43.253.2

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v13.71.5 (main) (#​44402) (bf46988)
Miscellaneous Chores
  • deps: update astral-sh/setup-uv action to v8.3.1 (main) (#​44403) (1136f24)
  • deps: update ghcr.io/containerbase/devcontainer docker tag to v14.12.6 (main) (#​44401) (e0e414d)

v43.253.1

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v13.71.2 (main) (#​44400) (b18cff0)

v43.253.0

Compare Source

Features
  • deps: update ghcr.io/renovatebot/base-image docker tag to v13.71.1 (main) (#​44399) (345eb15)

v43.252.8

Compare Source

Miscellaneous Chores
Build System

v43.252.7

Compare Source

Miscellaneous Chores
Build System

v43.252.6

Compare Source

Miscellaneous Chores
Build System

v43.252.5

Compare Source

Build System

v43.252.4

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v13.70.1 (main) (#​44384) (d893930)
Miscellaneous Chores
  • deps: update ghcr.io/containerbase/devcontainer docker tag to v14.12.5 (main) (#​44383) (534352b)
Build System

v43.252.3

Compare Source

Bug Fixes

v43.252.2

Compare Source

Documentation
Build System

v43.252.1

Compare Source

Miscellaneous Chores
Build System

v43.252.0

Compare Source

Features
Miscellaneous Chores

@angular-robot angular-robot added action: merge The PR is ready for merge by the caretaker area: build & ci Related the build and CI infrastructure of the project target: automation This PR is targeted to only merge into the branch defined in Github [bot use only] labels Jul 9, 2026

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request updates dependencies across the repository, upgrading renovate to version 43.255.2 in the Renovate configuration and @conventional-changelog/git-client to version 3.1.0 in ng-dev, along with corresponding lockfile updates. I have no feedback to provide as there are no review comments or issues identified in these dependency updates.

@angular-robot angular-robot force-pushed the ng-renovate/all-non-major-dependencies branch 6 times, most recently from e31c8d6 to 1212f0c Compare July 10, 2026 17:02
See associated pull request for more information.
@angular-robot angular-robot force-pushed the ng-renovate/all-non-major-dependencies branch from 1212f0c to 45d336d Compare July 10, 2026 19:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

action: merge The PR is ready for merge by the caretaker area: build & ci Related the build and CI infrastructure of the project target: automation This PR is targeted to only merge into the branch defined in Github [bot use only]

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant