Skip to content

Conversation

@angular-robot
Copy link
Contributor

@angular-robot angular-robot commented Feb 12, 2025

This PR contains the following updates:

Package Type Update Change
@microsoft/api-extractor (source) dependencies minor 7.49.2 -> 7.50.0
@types/node (source) dependencies patch 22.13.0 -> 22.13.2
aspect_rules_ts http_archive minor v3.4.0 -> v3.5.0
firebase-tools devDependencies minor 13.30.0 -> 13.31.0
prettier (source) dependencies patch 3.5.0 -> 3.5.1
renovate (source) dependencies minor 39.168.0 -> 39.169.3
terser (source) devDependencies minor 5.38.2 -> 5.39.0

Warning

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


Release Notes

microsoft/rushstack (@​microsoft/api-extractor)

v7.50.0

Compare Source

Wed, 12 Feb 2025 01:10:52 GMT

Minor changes
  • Update merge behavior for derived configurations to allow overriding array properties
aspect-build/rules_ts (aspect_rules_ts)

v3.5.0

Compare Source

Using Bzlmod:

Add to your MODULE.bazel file:

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

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 = "4263532b2fb4d16f309d80e3597191a1cb2fb69c19e95d91711bd6b97874705e",
    strip_prefix = "rules_ts-3.5.0",
    url = "https://github.com/aspect-build/rules_ts/releases/download/v3.5.0/rules_ts-v3.5.0.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

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

firebase/firebase-tools (firebase-tools)

v13.31.0

Compare Source

  • Switched Data Connect from v1beta API to v1 API.
  • Added code generation of React hooks for Data Connect
  • Genkit init improvements around gcloud login and flow input values.
  • Added new command apps:init under experimental flag (appsinit) that automatically detects what SDK to download and places the file in the corresponding place.
  • Removed dependencies on some packages and methods that caused deprecation warnings on Node 22.
  • Fixes symbol generation when uploading Unity 6 symbols to Crashlytics. (#​7867)
  • Fixed SSR issues in Angular 19 by adding support for default and reqHandler exports. (#​8145)
  • Added Angular 19 as supported version. (#​8145)
  • Fixed appdistribution:testers:list raising an error when a tester is not part of any group. (#​8191)
  • Updated the Firebase Data Connect local toolkit to v1.8.0, which includes several changes: (#​8210)
    • Adds support for the v1 Data Connect API in the emulator
    • Adds support for generated React SDKs
    • Fixes @check to also be evaluated for admin auth
    • Fixes CEL expressions to be able to access @redact fields
prettier/prettier (prettier)

v3.5.1

Compare Source

diff

Fix CLI crash when cache for old version exists (#​17100 by @​sosukesuzuki)

Prettier 3.5 uses a different cache format than previous versions, Prettier 3.5.0 crashes when reading existing cache file, Prettier 3.5.1 fixed the problem.

Support dockercompose and github-actions-workflow in VSCode (#​17101 by @​remcohaszing)

Prettier now supports the dockercompose and github-actions-workflow languages in Visual Studio Code.

renovatebot/renovate (renovate)

v39.169.3

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.40.3 (#​34195) (0817e19)

v39.169.2

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.40.2 (#​34194) (9c68d75)

v39.169.1

Compare Source

Bug Fixes

v39.169.0

Compare Source

Features

v39.168.1

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.40.1 (#​34186) (1b87364)
Code Refactoring
terser/terser (terser)

v5.39.0

Compare Source

  • Remove unnecessary console.assert calls (#​1590)

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 Feb 12, 2025
@angular-robot angular-robot bot added the area: build & ci Related the build and CI infrastructure of the project label Feb 12, 2025
@angular-robot angular-robot force-pushed the ng-renovate/all-non-major-dependencies branch 6 times, most recently from e367c2a to 4e25a43 Compare February 13, 2025 13:09
@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
/bin/sh: 1: pnpm: not found

@angular-robot angular-robot force-pushed the ng-renovate/all-non-major-dependencies branch from 4e25a43 to b4008db Compare February 13, 2025 14:08
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 002a34e.

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 Mar 16, 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