From 4cc5635f630e88136a7f89fa72a2b33b6850dca2 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 25 Jan 2025 19:56:44 +0000 Subject: [PATCH] Update dependency rules_testing to v0.7.0 (#259) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | rules_testing | bazel_dep | minor | `0.6.0` -> `0.7.0` | | [rules_testing](https://redirect.github.com/bazelbuild/rules_testing) | http_archive | minor | `v0.6.0` -> `v0.7.0` | --- ### Release Notes
bazelbuild/rules_testing (rules_testing) ### [`v0.7.0`](https://redirect.github.com/bazelbuild/rules_testing/releases/tag/v0.7.0) [Compare Source](https://redirect.github.com/bazelbuild/rules_testing/compare/v0.6.0...v0.7.0) WORKSPACE snippet: ```starlark load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "rules_testing", sha256 = "28c2d174471b587bf0df1fd3a10313f22c8906caf4050f8b46ec4648a79f90c3", strip_prefix = "rules_testing-0.7.0", url = "https://github.com/bazelbuild/rules_testing/releases/download/v0.7.0/rules_testing-v0.7.0.tar.gz", ) ``` #### What's Changed ##### Other Changes - Adding Bazel versions to presubmit.yml by [@​comius](https://redirect.github.com/comius) in [https://github.com/bazelbuild/rules_testing/pull/94](https://redirect.github.com/bazelbuild/rules_testing/pull/94) - Copy unittest.bzl from bazel_skylib to rules_testing. by [@​copybara-service](https://redirect.github.com/copybara-service) in [https://github.com/bazelbuild/rules_testing/pull/97](https://redirect.github.com/bazelbuild/rules_testing/pull/97) - Update Stardoc to 0.6.2. by [@​lberki](https://redirect.github.com/lberki) in [https://github.com/bazelbuild/rules_testing/pull/100](https://redirect.github.com/bazelbuild/rules_testing/pull/100) - Explicitly enable WORKSPACE in WORKSPACE tests by [@​Wyverald](https://redirect.github.com/Wyverald) in [https://github.com/bazelbuild/rules_testing/pull/105](https://redirect.github.com/bazelbuild/rules_testing/pull/105) - Skip analysis tests when coverage is run. by [@​copybara-service](https://redirect.github.com/copybara-service) in [https://github.com/bazelbuild/rules_testing/pull/107](https://redirect.github.com/bazelbuild/rules_testing/pull/107) - Upgrade workspace rules_java to 7.11.1 by [@​copybara-service](https://redirect.github.com/copybara-service) in [https://github.com/bazelbuild/rules_testing/pull/110](https://redirect.github.com/bazelbuild/rules_testing/pull/110) - Update changelog for 0.7.0 release by [@​copybara-service](https://redirect.github.com/copybara-service) in [https://github.com/bazelbuild/rules_testing/pull/116](https://redirect.github.com/bazelbuild/rules_testing/pull/116) #### New Contributors - [@​comius](https://redirect.github.com/comius) made their first contribution in [https://github.com/bazelbuild/rules_testing/pull/94](https://redirect.github.com/bazelbuild/rules_testing/pull/94) - [@​lberki](https://redirect.github.com/lberki) made their first contribution in [https://github.com/bazelbuild/rules_testing/pull/100](https://redirect.github.com/bazelbuild/rules_testing/pull/100) - [@​Wyverald](https://redirect.github.com/Wyverald) made their first contribution in [https://github.com/bazelbuild/rules_testing/pull/105](https://redirect.github.com/bazelbuild/rules_testing/pull/105) **Full Changelog**: https://github.com/bazelbuild/rules_testing/compare/v0.6.0...v0.7.0
--- ### Configuration 📅 **Schedule**: Branch creation - "* 0-3 * * 1" (UTC), 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 these updates again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/lalten/rules_appimage). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- MODULE.bazel | 2 +- deps.bzl | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/MODULE.bazel b/MODULE.bazel index 48c9136..142a457 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -11,7 +11,7 @@ bazel_dep(name = "rules_python", version = "1.1.0") bazel_dep(name = "squashfs-tools", version = "4.6.1") bazel_dep(name = "zstd", version = "1.5.6") -bazel_dep(name = "rules_testing", version = "0.6.0", dev_dependency = True) +bazel_dep(name = "rules_testing", version = "0.7.0", dev_dependency = True) bazel_dep(name = "with_cfg.bzl", version = "0.9.0", dev_dependency = True) rules_appimage = use_extension("//:extensions.bzl", "appimage_ext_dependencies") diff --git a/deps.bzl b/deps.bzl index 26b4da3..b00cd69 100644 --- a/deps.bzl +++ b/deps.bzl @@ -63,9 +63,9 @@ def rules_appimage_development_deps(): maybe( http_archive, name = "rules_testing", - sha256 = "02c62574631876a4e3b02a1820cb51167bb9cdcdea2381b2fa9d9b8b11c407c4", - strip_prefix = "rules_testing-0.6.0", - url = "https://github.com/bazelbuild/rules_testing/releases/download/v0.6.0/rules_testing-v0.6.0.tar.gz", + sha256 = "28c2d174471b587bf0df1fd3a10313f22c8906caf4050f8b46ec4648a79f90c3", + strip_prefix = "rules_testing-0.7.0", + url = "https://github.com/bazelbuild/rules_testing/releases/download/v0.7.0/rules_testing-v0.7.0.tar.gz", ) maybe( http_archive,