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

chore(deps): update dependency aspect_rules_lint to v1.0.8 #2007

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 31, 2024

This PR contains the following updates:

Package Type Update Change
aspect_rules_lint http_archive patch v1.0.2 -> v1.0.8

Release Notes

aspect-build/rules_lint (aspect_rules_lint)

v1.0.8

Compare Source

Using Bzlmod with Bazel 6

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "aspect_rules_lint", version = "1.0.8")

### Next, follow the install instructions for
### - linting: https://github.com/aspect-build/rules_lint/blob/v1.0.8/docs/linting.md

### - formatting: https://github.com/aspect-build/rules_lint/blob/v1.0.8/docs/formatting.md

Using WORKSPACE

Paste this snippet into your file:

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "aspect_rules_lint",
    sha256 = "93ed7039eeb4c1dc4c5a1fe4ef0d0b489eaa46baa956b0cfec3f417878c2d72a",
    strip_prefix = "rules_lint-1.0.8",
    url = "https://github.com/aspect-build/rules_lint/releases/download/v1.0.8/rules_lint-v1.0.8.tar.gz",
)

### aspect_rules_lint depends on aspect_bazel_lib.
http_archive(
    name = "aspect_bazel_lib",
    sha256 = "6d758a8f646ecee7a3e294fbe4386daafbe0e5966723009c290d493f227c390b",
    strip_prefix = "bazel-lib-2.7.7",
    url = "https://github.com/aspect-build/bazel-lib/releases/download/v2.7.7/bazel-lib-v2.7.7.tar.gz",
)

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

### aspect_bazel_lib depends on bazel_skylib
aspect_bazel_lib_dependencies()

load(
    "@​aspect_rules_lint//format:repositories.bzl",

### Fetch additional formatter binaries you need:
    "fetch_java_format",
    "fetch_ktfmt",
    "fetch_swiftformat",
    "rules_lint_dependencies",
)

rules_lint_dependencies()

fetch_java_format()

fetch_ktfmt()

fetch_swiftformat()

load("@​aspect_rules_lint//lint:checkstyle.bzl", "fetch_checkstyle")

fetch_checkstyle()

load("@​aspect_rules_lint//lint:pmd.bzl", "fetch_pmd")

fetch_pmd()

load("@​aspect_rules_lint//lint:vale.bzl", "fetch_vale")

fetch_vale()

load("@​aspect_rules_lint//lint:ktlint.bzl", "fetch_ktlint")

fetch_ktlint()

load("@​aspect_rules_lint//lint:spotbugs.bzl", "fetch_spotbugs")

fetch_spotbugs()

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

### Optional: multitool provides defaults for some tools such as yamlfmt
### If you do not set up multitool, you must provide these tools yourself
load("@​rules_multitool//multitool:multitool.bzl", "multitool")

multitool(
    name = "multitool",
    lockfiles = [
        "@​aspect_rules_lint//format:multitool.lock.json",
        "@​aspect_rules_lint//lint:multitool.lock.json",
    ],
)

What's Changed

New Contributors

Full Changelog: aspect-build/rules_lint@v1.0.7...v1.0.8

v1.0.7

Compare Source

Using Bzlmod with Bazel 6

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "aspect_rules_lint", version = "1.0.7")

### Next, follow the install instructions for
### - linting: https://github.com/aspect-build/rules_lint/blob/v1.0.7/docs/linting.md

### - formatting: https://github.com/aspect-build/rules_lint/blob/v1.0.7/docs/formatting.md

Using WORKSPACE

Paste this snippet into your file:

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "aspect_rules_lint",
    sha256 = "61badeff2d4e479ab58c0258c729944aeea7ebbc800076a95903e97b7b21463b",
    strip_prefix = "rules_lint-1.0.7",
    url = "https://github.com/aspect-build/rules_lint/releases/download/v1.0.7/rules_lint-v1.0.7.tar.gz",
)

### aspect_rules_lint depends on aspect_bazel_lib.
http_archive(
    name = "aspect_bazel_lib",
    sha256 = "6d758a8f646ecee7a3e294fbe4386daafbe0e5966723009c290d493f227c390b",
    strip_prefix = "bazel-lib-2.7.7",
    url = "https://github.com/aspect-build/bazel-lib/releases/download/v2.7.7/bazel-lib-v2.7.7.tar.gz",
)

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

### aspect_bazel_lib depends on bazel_skylib
aspect_bazel_lib_dependencies()

load(
    "@​aspect_rules_lint//format:repositories.bzl",

### Fetch additional formatter binaries you need:
    "fetch_java_format",
    "fetch_ktfmt",
    "fetch_swiftformat",
    "rules_lint_dependencies",
)

rules_lint_dependencies()

fetch_java_format()

fetch_ktfmt()

fetch_swiftformat()

load("@​aspect_rules_lint//lint:checkstyle.bzl", "fetch_checkstyle")

fetch_checkstyle()

load("@​aspect_rules_lint//lint:pmd.bzl", "fetch_pmd")

fetch_pmd()

load("@​aspect_rules_lint//lint:vale.bzl", "fetch_vale")

fetch_vale()

load("@​aspect_rules_lint//lint:ktlint.bzl", "fetch_ktlint")

fetch_ktlint()

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

### Optional: multitool provides defaults for some tools such as yamlfmt
### If you do not set up multitool, you must provide these tools yourself
load("@​rules_multitool//multitool:multitool.bzl", "multitool")

multitool(
    name = "multitool",
    lockfiles = [
        "@​aspect_rules_lint//format:multitool.lock.json",
        "@​aspect_rules_lint//lint:multitool.lock.json",
    ],
)

What's Changed

Full Changelog: aspect-build/rules_lint@v1.0.6...v1.0.7

v1.0.6

Compare Source

Using Bzlmod with Bazel 6

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "aspect_rules_lint", version = "1.0.6")

### Next, follow the install instructions for
### - linting: https://github.com/aspect-build/rules_lint/blob/v1.0.6/docs/linting.md

### - formatting: https://github.com/aspect-build/rules_lint/blob/v1.0.6/docs/formatting.md

Using WORKSPACE

Paste this snippet into your file:

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "aspect_rules_lint",
    sha256 = "3d8375a6f5f835d303fb30a453aa75747298e3eb92ef5927e2b7d5f0fbfaf8a5",
    strip_prefix = "rules_lint-1.0.6",
    url = "https://github.com/aspect-build/rules_lint/releases/download/v1.0.6/rules_lint-v1.0.6.tar.gz",
)

### aspect_rules_lint depends on aspect_bazel_lib.
http_archive(
    name = "aspect_bazel_lib",
    sha256 = "6d758a8f646ecee7a3e294fbe4386daafbe0e5966723009c290d493f227c390b",
    strip_prefix = "bazel-lib-2.7.7",
    url = "https://github.com/aspect-build/bazel-lib/releases/download/v2.7.7/bazel-lib-v2.7.7.tar.gz",
)

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

### aspect_bazel_lib depends on bazel_skylib
aspect_bazel_lib_dependencies()

load(
    "@​aspect_rules_lint//format:repositories.bzl",

### Fetch additional formatter binaries you need:
    "fetch_java_format",
    "fetch_ktfmt",
    "fetch_swiftformat",
    "rules_lint_dependencies",
)

rules_lint_dependencies()

fetch_java_format()

fetch_ktfmt()

fetch_swiftformat()

load("@​aspect_rules_lint//lint:checkstyle.bzl", "fetch_checkstyle")

fetch_checkstyle()

load("@​aspect_rules_lint//lint:pmd.bzl", "fetch_pmd")

fetch_pmd()

load("@​aspect_rules_lint//lint:vale.bzl", "fetch_vale")

fetch_vale()

load("@​aspect_rules_lint//lint:ktlint.bzl", "fetch_ktlint")

fetch_ktlint()

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

### Optional: multitool provides defaults for some tools such as yamlfmt
### If you do not set up multitool, you must provide these tools yourself
load("@​rules_multitool//multitool:multitool.bzl", "multitool")

multitool(
    name = "multitool",
    lockfiles = [
        "@​aspect_rules_lint//format:multitool.lock.json",
        "@​aspect_rules_lint//lint:multitool.lock.json",
    ],
)

What's Changed

Full Changelog: aspect-build/rules_lint@v1.0.5...v1.0.6

v1.0.5

Compare Source

Using Bzlmod with Bazel 6

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "aspect_rules_lint", version = "ain")

### Next, follow the install instructions for
### - linting: https://github.com/aspect-build/rules_lint/blob/main/docs/linting.md

### - formatting: https://github.com/aspect-build/rules_lint/blob/main/docs/formatting.md

Using WORKSPACE

Paste this snippet into your file:

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "aspect_rules_lint",
    sha256 = "52989f805647f7e5f0e6b1156d88d972f43d1220f7bc934c8038291861419801",
    strip_prefix = "rules_lint-ain",
    url = "https://github.com/aspect-build/rules_lint/releases/download/main/rules_lint-main.tar.gz",
)

### aspect_rules_lint depends on aspect_bazel_lib.
http_archive(
    name = "aspect_bazel_lib",
    sha256 = "6d758a8f646ecee7a3e294fbe4386daafbe0e5966723009c290d493f227c390b",
    strip_prefix = "bazel-lib-2.7.7",
    url = "https://github.com/aspect-build/bazel-lib/releases/download/v2.7.7/bazel-lib-v2.7.7.tar.gz",
)

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

### aspect_bazel_lib depends on bazel_skylib
aspect_bazel_lib_dependencies()

load(
    "@​aspect_rules_lint//format:repositories.bzl",

### Fetch additional formatter binaries you need:
    "fetch_java_format",
    "fetch_ktfmt",
    "fetch_swiftformat",
    "rules_lint_dependencies",
)

rules_lint_dependencies()

fetch_java_format()

fetch_ktfmt()

fetch_swiftformat()

load("@​aspect_rules_lint//lint:checkstyle.bzl", "fetch_checkstyle")

fetch_checkstyle()

load("@​aspect_rules_lint//lint:pmd.bzl", "fetch_pmd")

fetch_pmd()

load("@​aspect_rules_lint//lint:vale.bzl", "fetch_vale")

fetch_vale()

load("@​aspect_rules_lint//lint:ktlint.bzl", "fetch_ktlint")

fetch_ktlint()

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

### Optional: multitool provides defaults for some tools such as yamlfmt
### If you do not set up multitool, you must provide these tools yourself
load("@​rules_multitool//multitool:multitool.bzl", "multitool")

multitool(
    name = "multitool",
    lockfiles = [
        "@​aspect_rules_lint//format:multitool.lock.json",
        "@​aspect_rules_lint//lint:multitool.lock.json",
    ],
)

What's Changed

New Contributors

Full Changelog: aspect-build/rules_lint@v1.0.4...v1.0.5

v1.0.4

Compare Source

Using Bzlmod with Bazel 6

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "aspect_rules_lint", version = "ain")

### Next, follow the install instructions for
### - linting: https://github.com/aspect-build/rules_lint/blob/main/docs/linting.md

### - formatting: https://github.com/aspect-build/rules_lint/blob/main/docs/formatting.md

Using WORKSPACE

Paste this snippet into your file:

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "aspect_rules_lint",
    sha256 = "6baeabfdc4ac78a9e55c8c95b5547daf042ff4a666403ece23f073fb6043f15e",
    strip_prefix = "rules_lint-ain",
    url = "https://github.com/aspect-build/rules_lint/releases/download/main/rules_lint-main.tar.gz",
)

### aspect_rules_lint depends on aspect_bazel_lib.
http_archive(
    name = "aspect_bazel_lib",
    sha256 = "6d758a8f646ecee7a3e294fbe4386daafbe0e5966723009c290d493f227c390b",
    strip_prefix = "bazel-lib-2.7.7",
    url = "https://github.com/aspect-build/bazel-lib/releases/download/v2.7.7/bazel-lib-v2.7.7.tar.gz",
)

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

### aspect_bazel_lib depends on bazel_skylib
aspect_bazel_lib_dependencies()

load(
    "@​aspect_rules_lint//format:repositories.bzl",

### Fetch additional formatter binaries you need:
    "fetch_java_format",
    "fetch_ktfmt",
    "fetch_swiftformat",
    "rules_lint_dependencies",
)

rules_lint_dependencies()

fetch_java_format()

fetch_ktfmt()

fetch_swiftformat()

load("@​aspect_rules_lint//lint:checkstyle.bzl", "fetch_checkstyle")

fetch_checkstyle()

load("@​aspect_rules_lint//lint:pmd.bzl", "fetch_pmd")

fetch_pmd()

load("@​aspect_rules_lint//lint:vale.bzl", "fetch_vale")

fetch_vale()

load("@​aspect_rules_lint//lint:ktlint.bzl", "fetch_ktlint")

fetch_ktlint()

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

### Optional: multitool provides defaults for some tools such as yamlfmt
### If you do not set up multitool, you must provide these tools yourself
load("@​rules_multitool//multitool:multitool.bzl", "multitool")

multitool(
    name = "multitool",
    lockfiles = [
        "@​aspect_rules_lint//format:multitool.lock.json",
        "@​aspect_rules_lint//lint:multitool.lock.json",
    ],
)

What's Changed

Full Changelog: aspect-build/rules_lint@v1.0.3...v1.0.4

v1.0.3

Compare Source

Using Bzlmod with Bazel 6

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "aspect_rules_lint", version = "1.0.3")

### Next, follow the install instructions for
### - linting: https://github.com/aspect-build/rules_lint/blob/v1.0.3/docs/linting.md

### - formatting: https://github.com/aspect-build/rules_lint/blob/v1.0.3/docs/formatting.md

Using WORKSPACE

Paste this snippet into your file:

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "aspect_rules_lint",
    sha256 = "998535cb5f8fbd596e171fa8cf2b4cd6fa7d64223fa54d7840af221a36cb10d6",
    strip_prefix = "rules_lint-1.0.3",
    url = "https://github.com/aspect-build/rules_lint/releases/download/v1.0.3/rules_lint-v1.0.3.tar.gz",
)

### aspect_rules_lint depends on aspect_bazel_lib.
http_archive(
    name = "aspect_bazel_lib",
    sha256 = "6d758a8f646ecee7a3e294fbe4386daafbe0e5966723009c290d493f227c390b",
    strip_prefix = "bazel-lib-2.7.7",
    url = "https://github.com/aspect-build/bazel-lib/releases/download/v2.7.7/bazel-lib-v2.7.7.tar.gz",
)

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

### aspect_bazel_lib depends on bazel_skylib
aspect_bazel_lib_dependencies()

load(
    "@​aspect_rules_lint//format:repositories.bzl",

### Fetch additional formatter binaries you need:
    "fetch_java_format",
    "fetch_ktfmt",
    "fetch_swiftformat",
    "rules_lint_dependencies",
)

rules_lint_dependencies()

fetch_java_format()

fetch_ktfmt()

fetch_swiftformat()

load("@​aspect_rules_lint//lint:checkstyle.bzl", "fetch_checkstyle")

fetch_checkstyle()

load("@​aspect_rules_lint//lint:pmd.bzl", "fetch_pmd")

fetch_pmd()

load("@​aspect_rules_lint//lint:vale.bzl", "fetch_vale")

fetch_vale()

load("@​aspect_rules_lint//lint:ktlint.bzl", "fetch_ktlint")

fetch_ktlint()

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

### Optional: multitool provides defaults for some tools such as yamlfmt
### If you do not set up multitool, you must provide these tools yourself
load("@​rules_multitool//multitool:multitool.bzl", "multitool")

multitool(
    name = "multitool",
    lockfiles = [
        "@​aspect_rules_lint//format:multitool.lock.json",
        "@​aspect_rules_lint//lint:multitool.lock.json",
    ],
)

What's Changed

Full Changelog: aspect-build/rules_lint@v1.0.2...v1.0.3


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 is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the deps Renovate PRs label Oct 31, 2024
Copy link

aspect-workflows bot commented Oct 31, 2024

Test

All tests were cache hits

212 tests (100.0%) were fully cached saving 38s.


Test

e2e/bzlmod

All tests were cache hits

5 tests (100.0%) were fully cached saving 782ms.


Test

e2e/gyp_no_install_script

All tests were cache hits

2 tests (100.0%) were fully cached saving 138ms.


Test

e2e/js_image_oci

All tests were cache hits

1 test (100.0%) was fully cached saving 6s.


Test

e2e/npm_link_package

All tests were cache hits

3 tests (100.0%) were fully cached saving 555ms.


Test

e2e/npm_link_package-esm

All tests were cache hits

3 tests (100.0%) were fully cached saving 575ms.


Test

e2e/npm_translate_lock

All tests were cache hits

1 test (100.0%) was fully cached saving 26ms.


Test

e2e/npm_translate_lock_empty

All tests were cache hits

1 test (100.0%) was fully cached saving 26ms.


Test

e2e/npm_translate_lock_multi

All tests were cache hits

2 tests (100.0%) were fully cached saving 97ms.


Test

e2e/npm_translate_lock_partial_clone

All tests were cache hits

1 test (100.0%) was fully cached saving 22ms.


Test

e2e/npm_translate_lock_replace_packages

All tests were cache hits

3 tests (100.0%) were fully cached saving 317ms.


Test

e2e/npm_translate_lock_subdir_patch

All tests were cache hits

1 test (100.0%) was fully cached saving 93ms.


Test

e2e/npm_translate_package_lock

All tests were cache hits

1 test (100.0%) was fully cached saving 26ms.


Test

e2e/npm_translate_yarn_lock

All tests were cache hits

1 test (100.0%) was fully cached saving 26ms.


Test

e2e/package_json_module

All tests were cache hits

1 test (100.0%) was fully cached saving 362ms.


Test

e2e/pnpm_lockfiles

All tests were cache hits

40 tests (100.0%) were fully cached saving 3s.


Test

e2e/pnpm_workspace

All tests were cache hits

10 tests (100.0%) were fully cached saving 2s.


Test

e2e/pnpm_workspace_rerooted

All tests were cache hits

12 tests (100.0%) were fully cached saving 2s.


Test

e2e/repo_mapping

All tests were cache hits

2 tests (100.0%) were fully cached saving 276ms.


Test

e2e/rules_foo

All tests were cache hits

2 tests (100.0%) were fully cached saving 263ms.


Test

e2e/runfiles

All tests were cache hits

1 test (100.0%) was fully cached saving 100ms.


Test

e2e/vendored_node

All tests were cache hits

1 test (100.0%) was fully cached saving 181ms.


Buildifier      Format

@renovate renovate bot force-pushed the renovate/aspect branch 6 times, most recently from c364441 to 825ffe4 Compare November 8, 2024 21:48
@renovate renovate bot force-pushed the renovate/aspect branch 2 times, most recently from a08f9b8 to cf162b4 Compare November 10, 2024 00:48
@renovate renovate bot force-pushed the renovate/aspect branch 3 times, most recently from a96eb52 to 7cf7027 Compare November 25, 2024 16:40
@renovate renovate bot changed the title chore(deps): update dependency aspect_rules_lint to v1.0.3 chore(deps): update dependency aspect_rules_lint to v1.0.4 Nov 25, 2024
@renovate renovate bot force-pushed the renovate/aspect branch from 7cf7027 to 4421d7a Compare December 2, 2024 17:21
@renovate renovate bot changed the title chore(deps): update dependency aspect_rules_lint to v1.0.4 chore(deps): update dependency aspect_rules_lint to v1.0.5 Dec 2, 2024
@renovate renovate bot changed the title chore(deps): update dependency aspect_rules_lint to v1.0.5 chore(deps): update dependency aspect_rules_lint to v1.0.6 Dec 3, 2024
@renovate renovate bot force-pushed the renovate/aspect branch 5 times, most recently from b3c4e40 to fa5848e Compare December 9, 2024 05:16
@renovate renovate bot changed the title chore(deps): update dependency aspect_rules_lint to v1.0.6 chore(deps): update dependency aspect_rules_lint to v1.0.7 Dec 9, 2024
@renovate renovate bot force-pushed the renovate/aspect branch 3 times, most recently from 48203b6 to f3faa55 Compare December 18, 2024 18:40
@renovate renovate bot changed the title chore(deps): update dependency aspect_rules_lint to v1.0.7 chore(deps): update dependency aspect_rules_lint to v1.0.8 Dec 18, 2024
@renovate renovate bot force-pushed the renovate/aspect branch 2 times, most recently from 5a02ab6 to 0e13e84 Compare December 21, 2024 00:04
@renovate renovate bot force-pushed the renovate/aspect branch from 0e13e84 to 40abd64 Compare December 30, 2024 13:06
@renovate renovate bot force-pushed the renovate/aspect branch 2 times, most recently from b68c9e8 to 9ce5466 Compare January 4, 2025 15:38
@renovate renovate bot force-pushed the renovate/aspect branch from 9ce5466 to 48f4920 Compare January 4, 2025 15:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
deps Renovate PRs
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants