Skip to content

build: update all non-major dependencies #2733

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Conversation

angular-robot
Copy link
Collaborator

@angular-robot angular-robot commented Apr 11, 2025

This PR contains the following updates:

Package Type Update Change
@google-cloud/spanner devDependencies minor 7.19.1 -> 7.21.0
@google-cloud/spanner dependencies minor 7.19.1 -> 7.21.0
@microsoft/api-extractor (source) dependencies patch 7.52.3 -> 7.52.5
@pnpm/dependency-path (source) devDependencies patch 1000.0.7 -> 1000.0.8
@types/node (source) dependencies patch 22.14.0 -> 22.14.1
actions/setup-node action minor v4.3.0 -> v4.4.0
aspect_rules_js http_archive patch v2.3.4 -> v2.3.6
firebase-tools devDependencies minor 14.1.0 -> 14.2.0
github/codeql-action action patch v3.28.13 -> v3.28.15
marocchino/sticky-pull-request-comment action patch v2.9.1 -> v2.9.2
nock devDependencies patch 14.0.2 -> 14.0.4
renovate (source) dependencies minor 39.233.3 -> 39.254.1
typescript (source) dependencies patch 5.8.2 -> 5.8.3

Warning

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


Release Notes

googleapis/nodejs-spanner (@​google-cloud/spanner)

v7.21.0

Compare Source

Features
Bug Fixes
  • Adding span attributes for request tag and transaction tag (#​2236) (3f69dad)

v7.20.0

Compare Source

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

v7.52.5

Compare Source

Mon, 21 Apr 2025 22:24:25 GMT

Version update only

v7.52.4

Compare Source

Thu, 17 Apr 2025 00:11:21 GMT

Patches
  • Update documentation for extends
actions/setup-node (actions/setup-node)

v4.4.0

Compare Source

What's Changed

Bug fixes:
Enhancement:
Dependency update:

New Contributors

Full Changelogactions/setup-node@v4...v4.4.0

aspect-build/rules_js (aspect_rules_js)

v2.3.6

Compare Source

Many companies are successfully building with rules_js.
If you're getting value from the project, please let us know!
Just comment on our Adoption Discussion.

Using Bzlmod with Bazel 6:

Add to your MODULE.bazel file:

bazel_dep(name = "aspect_rules_js", version = "2.3.6")

####### Node.js version #########

### By default you get the node version from DEFAULT_NODE_VERSION in @​rules_nodejs//nodejs:repositories.bzl
### Optionally you can pin a different node version:
bazel_dep(name = "rules_nodejs", version = "6.3.0")
node = use_extension("@​rules_nodejs//nodejs:extensions.bzl", "node", dev_dependency = True)
node.toolchain(node_version = "16.14.2")

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

npm = use_extension("@​aspect_rules_js//npm:extensions.bzl", "npm", dev_dependency = True)

npm.npm_translate_lock(
    name = "npm",
    pnpm_lock = "//:pnpm-lock.yaml",
    verify_node_modules_ignored = "//:.bazelignore",
)

use_repo(npm, "npm")

pnpm = use_extension("@​aspect_rules_js//npm:extensions.bzl", "pnpm")

### Allows developers to use the matching pnpm version, for example:
### bazel run -- @​pnpm --dir /home/runner/work/rules_js/rules_js install
use_repo(pnpm, "pnpm")

Using WORKSPACE

Paste this snippet into your WORKSPACE file:

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "aspect_rules_js",
    sha256 = "080aad0a6e6532a9825be54155e4f148e7e472219cd0dc9869a10563eddaf332",
    strip_prefix = "rules_js-2.3.6",
    url = "https://github.com/aspect-build/rules_js/releases/download/v2.3.6/rules_js-v2.3.6.tar.gz",
)

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)

load("@​aspect_rules_js//npm:repositories.bzl", "npm_translate_lock")

npm_translate_lock(
    name = "npm",
    npmrc = "//:.npmrc",
    pnpm_lock = "//:pnpm-lock.yaml",
    verify_node_modules_ignored = "//:.bazelignore",
)

load("@​npm//:repositories.bzl", "npm_repositories")

npm_repositories()

What's Changed

Full Changelog: aspect-build/rules_js@v2.3.5...v2.3.6

v2.3.5

Compare Source

Many companies are successfully building with rules_js.
If you're getting value from the project, please let us know!
Just comment on our Adoption Discussion.

Using Bzlmod with Bazel 6:

Add to your MODULE.bazel file:

bazel_dep(name = "aspect_rules_js", version = "2.3.5")

####### Node.js version #########

### By default you get the node version from DEFAULT_NODE_VERSION in @​rules_nodejs//nodejs:repositories.bzl
### Optionally you can pin a different node version:
bazel_dep(name = "rules_nodejs", version = "6.3.0")
node = use_extension("@​rules_nodejs//nodejs:extensions.bzl", "node", dev_dependency = True)
node.toolchain(node_version = "16.14.2")

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

npm = use_extension("@​aspect_rules_js//npm:extensions.bzl", "npm", dev_dependency = True)

npm.npm_translate_lock(
    name = "npm",
    pnpm_lock = "//:pnpm-lock.yaml",
    verify_node_modules_ignored = "//:.bazelignore",
)

use_repo(npm, "npm")

pnpm = use_extension("@​aspect_rules_js//npm:extensions.bzl", "pnpm")

### Allows developers to use the matching pnpm version, for example:
### bazel run -- @​pnpm --dir /home/runner/work/rules_js/rules_js install
use_repo(pnpm, "pnpm")

Using WORKSPACE

Paste this snippet into your WORKSPACE file:

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "aspect_rules_js",
    sha256 = "1be1a3ec3d3baec4a71bc09ce446eb59bb48ae31af63016481df1532a0d81aee",
    strip_prefix = "rules_js-2.3.5",
    url = "https://github.com/aspect-build/rules_js/releases/download/v2.3.5/rules_js-v2.3.5.tar.gz",
)

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)

load("@​aspect_rules_js//npm:repositories.bzl", "npm_translate_lock")

npm_translate_lock(
    name = "npm",
    npmrc = "//:.npmrc",
    pnpm_lock = "//:pnpm-lock.yaml",
    verify_node_modules_ignored = "//:.bazelignore",
)

load("@​npm//:repositories.bzl", "npm_repositories")

npm_repositories()

What's Changed

Full Changelog: aspect-build/rules_js@v2.3.4...v2.3.5

firebase/firebase-tools (firebase-tools)

v14.2.0

Compare Source

  • Fixed an issue in the extensions emulator where parameter default values would not be substitued into resource definitions.
  • Keep artifact registry dry run off for policy changes (#​8419)
  • Allowed users to create paid Cloud SQL instances for Data Connect when the free trial has already been used.
  • Updated the Firebase Data Connect local toolkit to v2.2.0, which contains the following changes: (#​8434)
    • Added support for aggregate functions on singular fields.
    • Added the ability to get an operation name without calling the ref function in generated web SDK.
    • Properly enforced one-of validation on inc, dec, append, and prepend update transforms. Existing deployed connectors that violate this constraint will still work, but will need to be fixed to use list syntax before being re-deployed.
    • Fixed an issue so that when using mutations with no variables, correct types are passed in.
github/codeql-action (github/codeql-action)

v3.28.15

Compare Source

CodeQL Action Changelog

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

3.28.15 - 07 Apr 2025
  • Fix bug where the action would fail if it tried to produce a debug artifact with more than 65535 files. #​2842

See the full CHANGELOG.md for more information.

v3.28.14

Compare Source

CodeQL Action Changelog

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

3.28.14 - 07 Apr 2025
  • Update default CodeQL bundle version to 2.21.0. #​2838

See the full CHANGELOG.md for more information.

marocchino/sticky-pull-request-comment (marocchino/sticky-pull-request-comment)

v2.9.2

Compare Source

What's Changed

Full Changelog: marocchino/sticky-pull-request-comment@v2.9.1...v2.9.2

nock/nock (nock)

v14.0.4

Compare Source

Bug Fixes

v14.0.3

Compare Source

Bug Fixes
renovatebot/renovate (renovate)

v39.254.1

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.60.6 (main) (#​35476) (5fb89cd)

v39.254.0

Compare Source

Features
Bug Fixes

v39.253.5

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.60.5 (main) (#​35472) (da5e355)

v39.253.4

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.60.4 (main) (#​35471) (5fe91f6)

v39.253.3

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.60.3 (main) (#​35470) (1d28a69)
Miscellaneous Chores

v39.253.2

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.60.2 (main) (#​35462) (472d0ee)
Build System

v39.253.1

Compare Source

Bug Fixes
  • deps: update ghcr.io/containerbase/sidecar docker tag to v13.8.15 (main) (#​35458) (8f222df)
Miscellaneous Chores
  • deps: update ghcr.io/containerbase/devcontainer docker tag to v13.8.15 (main) (#​35457) (e62ab02)

v39.253.0

Compare Source

Features
Documentation
Miscellaneous Chores

v39.252.0

Compare Source

Features

v39.251.3

Compare Source

Bug Fixes

v39.251.2

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.60.1 (main) (#​35450) (25faac7)

v39.251.1

Compare Source

Bug Fixes
  • deps: update ghcr.io/containerbase/sidecar docker tag to v13.8.14 (main) (#​35448) (595caf4)
Documentation
Miscellaneous Chores

v39.251.0

Compare Source

Features
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.60.0 (main) (#​35436) (a0b1816)
Miscellaneous Chores

v39.250.3

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.59.3 (main) (#​35433) (f3bd0f7)

v39.250.2

Compare Source

Build System

v39.250.1

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.59.2 (main) (#​35430) (231bfec)

v39.250.0

Compare Source

Features

v39.249.0

Compare Source

Features
  • gradle: add support for exclusiveContent() repository definitions (#​35421) (4137244)
Bug Fixes

v39.248.4

Compare Source

Bug Fixes

v39.248.3

Compare Source

Bug Fixes
  • deps: update dependency mkdocs-material to v9.6.12 (main) (#​35426) (d8c0466)
Miscellaneous Chores
  • deps: update dependency eslint-config-prettier to v10.1.2 (main) (#​35425) (af5a5e8)

v39.248.2

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.59.1 (main) (#​35424) (f275132)

v39.248.1

Compare Source

Build System

v39.248.0

Compare Source

Features
  • datasource/github-runners: mark Windows Server 2019 as deprecated (#​35408) (e6bc269)
Bug Fixes
  • manager/pixi: do not pick pixi version based on lockfile (#​35389) (4b772e1)

v39.247.0

Compare Source

Features
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.59.0 (main) (#​35416) (9c6e11a)

v39.246.1

Compare Source

Build System

v39.246.0

Compare Source

Features
Documentation
  • nuget: document changelog fallback behaviour for partial V3 API server implementations (#​35402) (1a1bc9e)

v39.245.3

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.58.7 (main) (#​35407) (a28a5e0)
Miscellaneous Chores

v39.245.2

Compare Source

Build System

v39.245.1

Compare Source

Bug Fixes
Miscellaneous Chores
  • deps: update docker/dockerfile docker tag to v1.15.0 (main) (#​35397) (93a4a82)

v39.245.0

Compare Source

Features

v39.244.3

Compare Source

Bug Fixes
Miscellaneous Chores

v39.244.2

Compare Source

Bug Fixes
Tests

v39.244.1

Compare Source

Bug Fixes
Miscellaneous Chores

v39.244.0

Compare Source

Features
Build System

v39.243.0

Compare Source

Features
Miscellaneous Chores
  • deps: update codecov/codecov-action action to v5.4.2 (main) (#​35378) (d2140fd)

v39.242.2

Compare Source

Bug Fixes
  • gerrit: hourly prs limit not being applied outside of execution (#​35377) (1ec3e7c)

v39.242.1

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.58.6 (main) (#​35376) (2f1a2b3)
Miscellaneous Chores

v39.242.0

Compare Source

Features

v39.241.2

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.58.5 (main) (#​35369) (b628d72)

v39.241.1

Compare Source

Bug Fixes
Miscellaneous Chores

v39.241.0

Compare Source

Features
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.58.4 (main) (#​35186) (d4c3f60)
Miscellaneous Chores
Code Refactoring
Continuous Integration

v39.240.1

Compare Source

Build System

v39.240.0

Compare Source

Features
  • datasource/azure-pipelines-tasks: add built-in tasks changelog url (#​35325) (5091b14)
Miscellaneous Chores

v39.239.0

Compare Source

Features
Miscellaneous Chores
  • deps: update dependency vite to v6.2.6 [security] (main) (#​35331) (3bdbd76)

v39.238.2

Compare Source

Bug Fixes

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 Apr 11, 2025
@angular-robot angular-robot bot added the area: build & ci Related the build and CI infrastructure of the project label Apr 11, 2025
@angular-robot angular-robot force-pushed the ng-renovate/all-non-major-dependencies branch 26 times, most recently from 1fa7134 to bc01c35 Compare April 13, 2025 01:57
@angular-robot angular-robot force-pushed the ng-renovate/all-non-major-dependencies branch 24 times, most recently from 2bd4ad7 to acb9745 Compare April 22, 2025 12:16
@angular-robot angular-robot force-pushed the ng-renovate/all-non-major-dependencies branch from acb9745 to e86a470 Compare April 22, 2025 13:22
@josephperrott
Copy link
Member

This PR was merged into the repository by commit 9488b2f.

The changes were merged into the following branches: main

@angular-robot
Copy link
Collaborator 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: .github/ng-renovate/yarn.lock
node:internal/modules/cjs/loader:1215
  throw err;
  ^

Error: Cannot find module '/tmp/renovate/repos/github/angular/dev-infra/.yarn/releases/yarn-4.8.1.cjs'
    at Module._resolveFilename (node:internal/modules/cjs/loader:1212:15)
    at Module._load (node:internal/modules/cjs/loader:1043:27)
    at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:164:12)
    at node:internal/main/run_main_module:28:49 {
  code: 'MODULE_NOT_FOUND',
  requireStack: []
}

Node.js v20.19.0

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 comp: build renovate managed
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants