forked from bazelbuild/bazel-central-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release: https://github.com/aspect-build/rules_lint/releases/tag/v0.19.0 _Automated by [Publish to BCR](https://github.com/apps/publish-to-bcr)_ Co-authored-by: Alex Eagle <[email protected]>
- Loading branch information
Showing
5 changed files
with
69 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
"Bazel dependencies" | ||
|
||
module( | ||
name = "aspect_rules_lint", | ||
version = "0.19.0", | ||
compatibility_level = 1, | ||
) | ||
|
||
bazel_dep(name = "aspect_bazel_lib", version = "2.5.0") | ||
|
||
# Needed in the root because we use js_lib_helpers in our aspect impl | ||
# Minimum version needs 'chore: bump bazel-lib to 2.0 by @alexeagle in #1311' | ||
# to allow users on bazel-lib 2.0 | ||
bazel_dep(name = "aspect_rules_js", version = "1.40.0") | ||
bazel_dep(name = "bazel_skylib", version = "1.4.2") | ||
bazel_dep(name = "platforms", version = "0.0.7") | ||
bazel_dep(name = "rules_multirun", version = "0.9.0") | ||
bazel_dep(name = "rules_multitool", version = "0.4.0") | ||
|
||
# Needed in the root because we dereference ProtoInfo in our aspect impl | ||
bazel_dep(name = "rules_proto", version = "6.0.0-rc2") | ||
|
||
# Needed in the root because we dereference the toolchain in our aspect impl | ||
bazel_dep(name = "rules_buf", version = "0.1.1") | ||
bazel_dep(name = "toolchains_protoc", version = "0.2.1") | ||
|
||
multitool = use_extension("@rules_multitool//multitool:extension.bzl", "multitool") | ||
multitool.hub(lockfile = "//format:multitool.lock.json") | ||
multitool.hub(lockfile = "//lint:multitool.lock.json") | ||
use_repo(multitool, "multitool") |
14 changes: 14 additions & 0 deletions
14
modules/aspect_rules_lint/0.19.0/patches/module_dot_bazel_version.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
=================================================================== | ||
--- a/MODULE.bazel | ||
+++ b/MODULE.bazel | ||
@@ -1,9 +1,9 @@ | ||
"Bazel dependencies" | ||
|
||
module( | ||
name = "aspect_rules_lint", | ||
- version = "0.0.0", | ||
+ version = "0.19.0", | ||
compatibility_level = 1, | ||
) | ||
|
||
bazel_dep(name = "aspect_bazel_lib", version = "2.5.0") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
bcr_test_module: | ||
module_path: "example" | ||
matrix: | ||
bazel: ["7.x", "6.x"] | ||
platform: ["debian10", "macos", "ubuntu2004"] | ||
tasks: | ||
run_tests: | ||
name: "Run test module" | ||
bazel: ${{ bazel }} | ||
platform: ${{ platform }} | ||
environment: | ||
BAZELISK_BASE_URL: "https://github.com/bazelbuild/bazel/releases/download/" | ||
test_targets: | ||
- "//..." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"integrity": "sha256-XJ7GgsTSW9BaEUDgqF0SDrN51G41v1dwyD/68NtoDDw=", | ||
"strip_prefix": "rules_lint-0.19.0", | ||
"url": "https://github.com/aspect-build/rules_lint/releases/download/v0.19.0/rules_lint-v0.19.0.tar.gz", | ||
"patches": { | ||
"module_dot_bazel_version.patch": "sha256-5CHzO4PoC5fgSKl/HHnMm+10chs5HFEigTnGnBGUoRQ=" | ||
}, | ||
"patch_strip": 1 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,8 @@ | |
"0.15.0", | ||
"0.16.0", | ||
"0.17.0", | ||
"0.18.0" | ||
"0.18.0", | ||
"0.19.0" | ||
], | ||
"yanked_versions": {} | ||
} |