Skip to content

Conversation

@angular-robot
Copy link
Contributor

This PR contains the following updates:

Package Type Update Change
@babel/core (source) dependencies patch 7.26.9 -> 7.26.10
@google-cloud/spanner devDependencies patch 7.19.0 -> 7.19.1
@google-cloud/spanner dependencies patch 7.19.0 -> 7.19.1
@microsoft/api-extractor (source) dependencies minor 7.51.1 -> 7.52.1
@types/node (source) dependencies patch 22.13.10 -> 22.13.11
actions/cache action patch v4.2.2 -> v4.2.3
actions/setup-node action minor v4.2.0 -> v4.3.0
actions/upload-artifact action patch v4.6.1 -> v4.6.2
aspect_rules_ts http_archive patch v3.5.0 -> v3.5.1
esbuild dependencies patch 0.25.0 -> 0.25.1
firebase (source, changelog) devDependencies minor 11.4.0 -> 11.5.0
github/codeql-action action patch v3.28.11 -> v3.28.12
renovate (source) dependencies minor 39.198.1 -> 39.211.0

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

babel/babel (@​babel/core)

v7.26.10

Compare Source

👓 Spec Compliance
🐛 Bug Fix
💅 Polish
🏠 Internal
googleapis/nodejs-spanner (@​google-cloud/spanner)

v7.19.1

Compare Source

Bug Fixes
  • CreateQueryPartition with query params (91f5afd)
microsoft/rushstack (@​microsoft/api-extractor)

v7.52.1

Compare Source

Tue, 11 Mar 2025 02:12:34 GMT

Version update only

v7.52.0

Compare Source

Tue, 11 Mar 2025 00:11:25 GMT

Minor changes
  • Upgrade the bundled compiler engine to TypeScript 5.8.2
actions/cache (actions/cache)

v4.2.3

Compare Source

What's Changed
New Contributors

Full Changelog: actions/cache@v4.2.2...v4.2.3

actions/setup-node (actions/setup-node)

v4.3.0

Compare Source

What's Changed

Dependency updates

New Contributors

Full Changelog: actions/setup-node@v4...v4.3.0

actions/upload-artifact (actions/upload-artifact)

v4.6.2

Compare Source

What's Changed

New Contributors

Full Changelog: actions/upload-artifact@v4...v4.6.2

aspect-build/rules_ts (aspect_rules_ts)

v3.5.1

Compare Source

Using Bzlmod:

Add to your MODULE.bazel file:

bazel_dep(name = "aspect_rules_ts", version = "3.5.1")

rules_ts_ext = use_extension("@​aspect_rules_ts//ts:extensions.bzl", "ext", dev_dependency = True)

rules_ts_ext.deps(
    ts_version_from = "//:package.json",
)

use_repo(rules_ts_ext, "npm_typescript")

Using legacy WORKSPACE

Paste this snippet into your WORKSPACE file:

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "aspect_rules_ts",
    sha256 = "d584e4bc80674d046938563678117d17df962fe105395f6b1efe2e8a248b8100",
    strip_prefix = "rules_ts-3.5.1",
    url = "https://github.com/aspect-build/rules_ts/releases/download/v3.5.1/rules_ts-v3.5.1.tar.gz",
)

##################

### rules_ts setup #
##################

### Fetches the rules_ts dependencies.
### If you want to have a different version of some dependency,

### you should fetch it *before* calling this.
### Alternatively, you can skip calling this function, so long as you've

### already fetched all the dependencies.
load("@​aspect_rules_ts//ts:repositories.bzl", "rules_ts_dependencies")

rules_ts_dependencies(

### This keeps the TypeScript version in-sync with the editor, which is typically best.
    ts_version_from = "//:package.json",

### Alternatively, you could pick a specific version, or use
### load("@​aspect_rules_ts//ts:repositories.bzl", "LATEST_TYPESCRIPT_VERSION")

### ts_version = LATEST_TYPESCRIPT_VERSION
)

load("@​aspect_rules_js//js:repositories.bzl", "rules_js_dependencies")

rules_js_dependencies()

load("@​aspect_rules_js//js:toolchains.bzl", "DEFAULT_NODE_VERSION", "rules_js_register_toolchains")

rules_js_register_toolchains(node_version = DEFAULT_NODE_VERSION)

### Register aspect_bazel_lib toolchains;
### If you use npm_translate_lock or npm_import from aspect_rules_js you can omit this block.
load("@​aspect_bazel_lib//lib:repositories.bzl", "register_copy_directory_toolchains", "register_copy_to_directory_toolchains")

register_copy_directory_toolchains()

register_copy_to_directory_toolchains()

To use rules_ts with bazel-lib 2.x, you must additionally register the coreutils toolchain.

load("@​aspect_bazel_lib//lib:repositories.bzl", "register_coreutils_toolchains")

register_coreutils_toolchains()

What's Changed

New Contributors

Full Changelog: aspect-build/rules_ts@v3.5.0...v3.5.1

evanw/esbuild (esbuild)

v0.25.1

Compare Source

  • Fix incorrect paths in inline source maps (#​4070, #​4075, #​4105)

    This fixes a regression from version 0.25.0 where esbuild didn't correctly resolve relative paths contained within source maps in inline sourceMappingURL data URLs. The paths were incorrectly being passed through as-is instead of being resolved relative to the source file containing the sourceMappingURL comment, which was due to the data URL not being a file URL. This regression has been fixed, and this case now has test coverage.

  • Fix invalid generated source maps (#​4080, #​4082, #​4104, #​4107)

    This release fixes a regression from version 0.24.1 that could cause esbuild to generate invalid source maps. Specifically under certain conditions, esbuild could generate a mapping with an out-of-bounds source index. It was introduced by code that attempted to improve esbuild's handling of "null" entries in source maps (i.e. mappings with a generated position but no original position). This regression has been fixed.

    This fix was contributed by @​jridgewell.

  • Fix a regression with non-file source map paths (#​4078)

    The format of paths in source maps that aren't in the file namespace was unintentionally changed in version 0.25.0. Path namespaces is an esbuild-specific concept that is optionally available for plugins to use to distinguish paths from file paths and from paths meant for other plugins. Previously the namespace was prepended to the path joined with a : character, but version 0.25.0 unintentionally failed to prepend the namespace. The previous behavior has been restored.

  • Fix a crash with switch optimization (#​4088)

    The new code in the previous release to optimize dead code in switch statements accidentally introduced a crash in the edge case where one or more switch case values include a function expression. This is because esbuild now visits the case values first to determine whether any cases are dead code, and then visits the case bodies once the dead code status is known. That triggered some internal asserts that guard against traversing the AST in an unexpected order. This crash has been fixed by changing esbuild to expect the new traversal ordering. Here's an example of affected code:

    switch (x) {
      case '':
        return y.map(z => z.value)
      case y.map(z => z.key).join(','):
        return []
    }
  • Update Go from 1.23.5 to 1.23.7 (#​4076, #​4077)

    This should have no effect on existing code as this version change does not change Go's operating system support. It may remove certain reports from vulnerability scanners that detect which version of the Go compiler esbuild uses.

    This PR was contributed by @​MikeWillCook.

firebase/firebase-js-sdk (firebase)

v11.5.0

Compare Source

For more detailed release notes, see Firebase JavaScript SDK Release Notes.

What's Changed

firebase@11.5.0

Minor Changes
  • 058afa2 #​8741 - Added missing BlockReason and FinishReason enum values.
Patch Changes

@​firebase/vertexai@​1.2.0

Minor Changes
  • 25985ac #​8827 - Add systemInstruction, tools, and generationConfig to CountTokensRequest.

  • 058afa2 #​8741 - Added missing BlockReason and FinishReason enum values.

@​firebase/app@​0.11.3

Patch Changes
  • Update SDK_VERSION.

@​firebase/app-check@​0.8.13

Patch Changes
  • 95b4fc6 #​8842 (fixes #​8822) - Improve error handling in AppCheck. The publicly-exported getToken() will now throw internalError strings it was previously ignoring.

@​firebase/app-check-compat@​0.3.20

Patch Changes

@​firebase/app-compat@​0.2.52

Patch Changes

@​firebase/data-connect@​0.3.2

Patch Changes
  • 43d6b67 #​8820 - Update requests to point to v1 backend endpoints instead of v1beta

@​firebase/database@​1.0.14

Patch Changes

@​firebase/database-compat@​2.0.5

Patch Changes

@​firebase/database-types@​1.0.10

Patch Changes

@​firebase/firestore@​4.7.10

Patch Changes
  • feb2c9d #​8787 - Use lazy encoding in UTF-8 encoded byte comparison for strings.

@​firebase/firestore-compat@​0.3.45

Patch Changes

@​firebase/performance@​0.7.2

Patch Changes
  • 5611175 #​8814 (fixes #​8813) - Modify the retry mechanism to stop when remaining tries is less than or equal to zero, improving the robustness of the retry handling.

@​firebase/performance-compat@​0.2.15

Patch Changes
github/codeql-action (github/codeql-action)

v3.28.12

Compare Source

CodeQL Action Changelog

See the releases page for the relevant changes to the CodeQL CLI and language packs.

3.28.12 - 19 Mar 2025
  • Dependency caching should now cache more dependencies for Java build-mode: none extractions. This should speed up workflows and avoid inconsistent alerts in some cases.
  • Update default CodeQL bundle version to 2.20.7. #​2810

See the full CHANGELOG.md for more information.

renovatebot/renovate (renovate)

v39.211.0

Compare Source

Features
Miscellaneous Chores

v39.210.1

Compare Source

Build System
  • deps: update dependency better-sqlite3 to v11.9.0 (main) (#​34931) (0819479)

v39.210.0

Compare Source

Features

v39.209.0

Compare Source

Features

v39.208.1

Compare Source

Bug Fixes
Miscellaneous Chores
  • deps: update actions/cache action to v4.2.3 (main) (#​34916) (c753c52)
  • deps: update actions/download-artifact action to v4.2.1 (main) (#​34907) (6845132)
  • deps: update actions/upload-artifact action to v4.6.2 (main) (#​34917) (025d0fd)
  • deps: update dependency lint-staged to v15.5.0 (main) (#​34905) (009dbf8)
  • deps: update otel/opentelemetry-collector-contrib docker tag to v0.122.1 (main) (#​34908) (4b3fd06)

v39.208.0

Compare Source

Features
Documentation
  • self-hosted-config: add clarification about regular expression matching template commands in "allowedCommands" config (#​34897) (788cd3f)
Miscellaneous Chores

v39.207.3

Compare Source

Bug Fixes
Miscellaneous Chores

v39.207.2

Compare Source

Bug Fixes

v39.207.1

Compare Source

Bug Fixes
  • deps: update dependency mkdocs-material to v9.6.9 (main) (#​34860) (1e8f437)

v39.207.0

Compare Source

Features

v39.206.0

Compare Source

Features
Bug Fixes
Miscellaneous Chores

v39.205.2

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.50.5 (main) (#​34853) (b063499)
Documentation
  • update references to renovate/renovate to v39.205.1 (main) (#​34847) (1f1d9fd)
Miscellaneous Chores
  • deps: lock file maintenance (main) (#​34843) (65a1ba6)
  • deps: update actions/setup-node action to v4.3.0 (main) (#​34848) (803a5f5)
  • deps: update containerbase/internal-tools action to v3.10.10 (main) (#​34845) (f4a67ec)
  • deps: update containerbase/internal-tools action to v3.10.11 (main) (#​34849) (dcb6b2a)
  • deps: update dependency esbuild to v0.25.1 (main) (#​34850) (8825e74)
  • deps: update dependency renovatebot/github-action to v41.0.16 (main) (#​34851) (eb815a1)
  • deps: update ghcr.io/containerbase/devcontainer docker tag to v13.8.6 (main) (#​34846) (6b556f2)
  • deps: update ghcr.io/containerbase/devcontainer docker tag to v13.8.7 (main) (#​34852) (44fe604)

v39.205.1

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.50.4 (main) (#​34841) (9076b48)
Documentation
Miscellaneous Chores
  • deps: update dependency renovatebot/github-action to v41.0.15 (main) (#​34840) (9439c7b)

v39.205.0

Compare Source

Features

v39.204.0

Compare Source

Features

v39.203.1

Compare Source

Bug Fixes
  • presets): Revert "feat(presets: add workaround for TJ actions" (#​34835) (19fef1c)
Miscellaneous Chores

v39.202.0

Compare Source

Features
Miscellaneous Chores

v39.201.0

Compare Source

Features

v39.200.4

Compare Source

Miscellaneous Chores
  • deps: update dependency eslint-config-prettier to v10.1.1 (main) (#​34807) (ded1e19)
Build System

v39.200.3

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.50.1 (main) (#​34789) (c5c3007)
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.50.2 (main) (#​34792) (846ee2e)
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.50.3 (main) (#​34795) (025e74f)
Miscellaneous Chores
Tests

v39.200.2

Compare Source

Bug Fixes
  • deps: update dependency mkdocs-material to v9.6.8 (main) (#​34577) (a5c4fa2)

v39.200.1

Compare Source

Bug Fixes
  • manager/gomod: perfer to use go version defined as toolchain to update artifacts (#​34564) (ae56cbb)
Documentation
  • config-options: add a reference to special handlers from assignees to reviewers (#​34776) (19d0933)

v39.200.0

Compare Source

Features
Miscellaneous Chores

v39.199.1

Compare Source

Bug Fixes
Build System
  • deps: update dependency graph-data-structure to v4.5.0 (main) (#​34769) (3c2d5e8)

v39.199.0

Compare Source

Features
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.50.0 (main) (#​34768) (725b00d)

Configuration

📅 Schedule: 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 has been generated by Renovate Bot.

@angular-robot angular-robot added action: merge The PR is ready for merge by the caretaker comp: build renovate managed labels Mar 21, 2025
@angular-robot
Copy link
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: bazel/pnpm-lock.yaml
integration/tests/package_mappings       |  WARN  The field "resolutions" was found in /tmp/renovate/repos/github/angular/dev-infra/bazel/integration/tests/package_mappings/package.json. This will not take effect. You should configure "resolutions" at the root of the workspace instead.
Scope: all 15 projects
undefined
/tmp/renovate/repos/github/angular/dev-infra/bazel/integration/tests/package_mappings:
 ERR_PNPM_INVALID_SELECTOR  Cannot parse the "**/fake_pkg" selector

@angular-robot angular-robot bot added the area: build & ci Related the build and CI infrastructure of the project label Mar 21, 2025
Copy link
Member

@josephperrott josephperrott left a comment

Choose a reason for hiding this comment

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

LGTM

@josephperrott
Copy link
Member

This PR was merged into the repository by commit fa1ea81.

The changes were merged into the following branches: main

@angular-automatic-lock-bot
Copy link

This issue has been automatically locked due to inactivity.
Please file a new issue if you are encountering a similar or related problem.

Read more about our automatic conversation locking policy.

This action has been performed automatically by a bot.

@angular-automatic-lock-bot angular-automatic-lock-bot bot locked and limited conversation to collaborators Apr 21, 2025
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

action: merge The PR is ready for merge by the caretaker area: build & ci Related the build and CI infrastructure of the project comp: build renovate managed

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants