Skip to content

Conversation

@angular-robot
Copy link
Collaborator

@angular-robot angular-robot commented Oct 2, 2025

This PR contains the following updates:

Package Type Update Change
aspect_rules_esbuild bazel_dep minor 0.22.1 -> 0.23.0
aspect_rules_js bazel_dep patch 2.6.0 -> 2.6.2
rules_browsers git_override digest 6749ba4 -> 0e04a54
rules_sass git_override digest 4a54e0e -> 1184a80
tar.bzl bazel_dep minor 0.5.6 -> 0.6.0

Release Notes

bazel-contrib/tar.bzl (tar.bzl)

v0.6.0

Using Bzlmod with Bazel 6 or greater

  1. (Bazel 6 only) Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "tar.bzl", version = "0.6.0")

Using WORKSPACE

Paste this snippet into your WORKSPACE.bazel file:

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "tar.bzl",
    sha256 = "a147d473a359742db2a43c8a9a8e04e31321582e6bb669dafc5ba6b2c59845d1",
    strip_prefix = "tar.bzl-0.6.0",
    url = "https://github.com/bazel-contrib/tar.bzl/releases/download/v0.6.0/tar.bzl-v0.6.0.tar.gz",
)
load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

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

### tar.bzl dependencies #
######################
http_archive(
    name = "bazel_skylib",
    sha256 = "bc283cdfcd526a52c3201279cda4bc298652efa898b10b4db0837dc51652756f",
    urls = [
        "https://github.com/bazelbuild/bazel-skylib/releases/download/1.7.1/bazel-skylib-1.7.1.tar.gz",
        "https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.7.1/bazel-skylib-1.7.1.tar.gz",
    ],
)

http_archive(
    name = "aspect_bazel_lib",
    sha256 = "db7da732db4dece80cd6d368220930950c9306ff356ebba46498fe64e65a3945",
    strip_prefix = "bazel-lib-2.19.3",
    url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.19.3/bazel-lib-v2.19.3.tar.gz",
)

### Back-port https://github.com/bazelbuild/bazel-central-registry/blob/main/modules/gawk/5.3.2.bcr.1/source.json
### to WORKSPACE semantics
http_archive(
    name = "gawk",
    integrity = "sha256-+MNIZQnecFGSE4sA7ywAu73Q6Eww1cB9I/xzqdxMycw=",
    remote_file_integrity = {
        "BUILD.bazel": "sha256-dt89+9IJ3UzQvoKzyXOiBoF6ok/4u4G0cb0Ja+plFy0=",
        "posix/config_darwin.h": "sha256-gPVRlvtdXPw4Ikwd5S89wPPw5AaiB2HTHa1KOtj40mU=",
        "posix/config_linux.h": "sha256-iEaeXYBUCvprsIEEi5ipwqt0JV8d73+rLgoBYTegC6Q=",
    },
    remote_file_urls = {
        f: ["https://raw.githubusercontent.com/bazelbuild/bazel-central-registry/refs/heads/main/modules/gawk/5.3.2.bcr.1/overlay/" + f]
        for f in [
            "BUILD.bazel",
            "posix/config_darwin.h",
            "posix/config_linux.h",
        ]
    },
    strip_prefix = "gawk-5.3.2",
    urls = ["https://ftpmirror.gnu.org/gnu/gawk/gawk-5.3.2.tar.xz"],
)

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

### setup #
######################

load("@​tar.bzl//tar:extensions.bzl", "create_repositories")

create_repositories()

register_toolchains("@​bsd_tar_toolchains//:all")

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

### Required bazel-lib dependencies

aspect_bazel_lib_dependencies()

### Register bazel-lib toolchains

aspect_bazel_lib_register_toolchains()

load("@​bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")
load("@​platforms//host:extension.bzl", "host_platform_repo")

maybe(
    host_platform_repo,
    name = "host_platform",
)

What's Changed

New Contributors

Full Changelog: bazel-contrib/tar.bzl@v0.5.6...v0.6.0


Configuration

📅 Schedule: Branch creation - "after 10:00pm every weekday,before 5:00am every weekday,every weekend" in timezone America/Tijuana, 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 requested a review from a team as a code owner October 2, 2025 10:36
@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 Oct 2, 2025
@angular-robot angular-robot requested review from mmalerba and wagnermaciel and removed request for a team October 2, 2025 10:36
@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 Oct 2, 2025
@angular-robot angular-robot changed the title build: update rules_browsers digest to ad34a4c (main) build: update rules_browsers digest to 69c8855 (main) Oct 2, 2025
@angular-robot angular-robot force-pushed the ng-renovate/main-bazel-dependencies branch from 27c515d to cbaf55f Compare October 2, 2025 12:46
@angular-robot angular-robot changed the title build: update rules_browsers digest to 69c8855 (main) build: update rules_browsers digest to 8d23277 (main) Oct 2, 2025
@angular-robot angular-robot force-pushed the ng-renovate/main-bazel-dependencies branch from cbaf55f to e099d0f Compare October 2, 2025 13:38
@angular-robot angular-robot changed the title build: update rules_browsers digest to 8d23277 (main) build: update rules_browsers digest to 21c730b (main) Oct 2, 2025
@angular-robot angular-robot force-pushed the ng-renovate/main-bazel-dependencies branch 2 times, most recently from 21b7a9f to 78dbcca Compare October 2, 2025 18:05
@angular-robot angular-robot changed the title build: update rules_browsers digest to 21c730b (main) build: update bazel dependencies (main) Oct 2, 2025
@angular-robot angular-robot force-pushed the ng-renovate/main-bazel-dependencies branch 7 times, most recently from 1e9ab2f to a3b51a6 Compare October 9, 2025 10:51
@angular-robot angular-robot force-pushed the ng-renovate/main-bazel-dependencies branch 2 times, most recently from 21c5764 to c27aaa7 Compare October 9, 2025 22:04
@angular-robot angular-robot force-pushed the ng-renovate/main-bazel-dependencies branch from c27aaa7 to eb3eaa2 Compare October 10, 2025 03:17
See associated pull request for more information.
@angular-robot angular-robot force-pushed the ng-renovate/main-bazel-dependencies branch from eb3eaa2 to 3b06c85 Compare October 14, 2025 20:05
@andrewseguin andrewseguin merged commit 8045b12 into angular:main Oct 15, 2025
22 checks passed
@angular-robot angular-robot deleted the ng-renovate/main-bazel-dependencies branch October 15, 2025 18:41
adolgachev pushed a commit to adolgachev/components that referenced this pull request Oct 19, 2025
See associated pull request for more information.
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.

3 participants