Skip to content
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

Add bazel_mod_tidy and extension_metadata_has_reproducible #49

Merged
merged 1 commit into from
Mar 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions features.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,14 @@ _external_deps = struct(
download_has_headers_param = ge("7.1.0"),
# Whether repository_ctx#extract has unicode filename extraction fix (#18448)
extract_supports_unicode_filenames = ge("6.4.0"),
# Whether the `bazel mod tidy` subcommand is available (#19674)
# https://github.com/bazelbuild/bazel/commit/9f0f23211293589d812cb9ea4aaaead52486c52e
# https://github.com/bazelbuild/bazel/commit/9fe80d33e129de521b696c330802aad9782db18f
bazel_mod_tidy = ge_same_major("7.1.0") or ge("8.0.0-pre.20240213.1"),
# Whether module_ctx.extension_metadata has the reproducible parameter (#19674)
# https://github.com/bazelbuild/bazel/commit/c796aba6ee36970956ea32b46a2f121bb4d1818a
# https://github.com/bazelbuild/bazel/commit/e730201e6bf8d6c1c80433b5b42305c3167a8660
extension_metadata_has_reproducible = ge_same_major("7.1.0") or ge("8.0.0-pre.20240213.1"),
)

_flags = struct(
Expand Down
Loading