Skip to content

Commit

Permalink
chore(deps): update dependency bazelbuild/bazelisk to v1.22.0 (#443)
Browse files Browse the repository at this point in the history
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [bazelbuild/bazelisk](https://redirect.github.com/bazelbuild/bazelisk)
| minor | `v1.20.0` -> `v1.22.0` |

---

### Release Notes

<details>
<summary>bazelbuild/bazelisk (bazelbuild/bazelisk)</summary>

###
[`v1.22.0`](https://redirect.github.com/bazelbuild/bazelisk/releases/tag/v1.22.0)

[Compare
Source](https://redirect.github.com/bazelbuild/bazelisk/compare/v1.21.0...v1.22.0)

Bazelisk v1.22.0 comes with several significant changes:

##### New Features (Go)

- Bazelisk sets the `BAZELISK` env variable so that scripts can detect
whether they're running under Bazelisk
([https://github.com/bazelbuild/bazelisk/pull/612](https://redirect.github.com/bazelbuild/bazelisk/pull/612))
- `--bisect` now supports finding the first *fixing* commit by prefixing
the range with `~`
([https://github.com/bazelbuild/bazelisk/pull/613](https://redirect.github.com/bazelbuild/bazelisk/pull/613))

##### Removed Features (Go)

- Removed support for `last_downstream_green` since the downstream
pipeline stopped producing green commits some time ago.

##### Bug Fixes & Improvements

- Improved `last_green` support
([https://github.com/bazelbuild/bazelisk/pull/614](https://redirect.github.com/bazelbuild/bazelisk/pull/614))

We’d like to thank our amazing contributors
[@&#8203;fmeum](https://redirect.github.com/fmeum) and
[@&#8203;jwnimmer-tri](https://redirect.github.com/jwnimmer-tri)!

###
[`v1.21.0`](https://redirect.github.com/bazelbuild/bazelisk/releases/tag/v1.21.0)

[Compare
Source](https://redirect.github.com/bazelbuild/bazelisk/compare/v1.20.0...v1.21.0)

Bazelisk v1.21.0 comes with several significant changes:

##### New Features (Go)

- Users can set an OS-specific Bazelisk home directory, e.g. via
`BAZELISK_HOME_WINDOWS`
([https://github.com/bazelbuild/bazelisk/pull/474](https://redirect.github.com/bazelbuild/bazelisk/pull/474))
- `BAZELISK_WRAPPER_DIRECTORY` allows users to specify paths other than
the default `tools/bazel` location
([https://github.com/bazelbuild/bazelisk/pull/567](https://redirect.github.com/bazelbuild/bazelisk/pull/567))
- `BAZELISK_HOME`: Environment variables as well as the tilde sign are
now properly expanded
([https://github.com/bazelbuild/bazelisk/pull/587](https://redirect.github.com/bazelbuild/bazelisk/pull/587))
- Bazelisk can fetch Linux ARM64 Bazel binaries built for commits
([https://github.com/bazelbuild/bazelisk/pull/604](https://redirect.github.com/bazelbuild/bazelisk/pull/604))

##### Bug Fixes & Improvements

- The Python version properly handles empty lines in `.bazelversion`
files
([https://github.com/bazelbuild/bazelisk/pull/576](https://redirect.github.com/bazelbuild/bazelisk/pull/576))

We’d like to thank our amazing contributors
[@&#8203;albertocavalcante](https://redirect.github.com/albertocavalcante),
[@&#8203;API92](https://redirect.github.com/API92),
[@&#8203;jwnimmer-tri](https://redirect.github.com/jwnimmer-tri),
[@&#8203;keith](https://redirect.github.com/keith) and
[@&#8203;mzapotoczny](https://redirect.github.com/mzapotoczny)!

</details>

---

### 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 becomes conflicted, or you tick the
rebase/retry checkbox.

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

---

- [ ] <!-- rebase-check -->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/PingCAP-QE/artifacts).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC45Ny4wIiwidXBkYXRlZEluVmVyIjoiMzguOTcuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiaGVscCB3YW50ZWQiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Sep 30, 2024
1 parent fb54b3d commit 09625fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dockerfiles/ci/base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ ENV PATH=$PATH:/opt/apache-maven-${MAVEN_VER}/bin

#### install tools: bazelisk, codecov, oras
# renovate: datasource=github-tags depName=bazelbuild/bazelisk
ARG BAZELISK_VERSION=v1.20.0
ARG BAZELISK_VERSION=v1.22.0
RUN OS=linux; ARCH=$([ "$(arch)" = "x86_64" ] && echo amd64 || echo arm64); \
curl -fsSL "https://github.com/bazelbuild/bazelisk/releases/download/${BAZELISK_VERSION}/bazelisk-${OS}-${ARCH}" -o /usr/local/bin/bazel && chmod +x /usr/local/bin/bazel

Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/ci/release-build-base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ RUN npm install -g yarn pnpm

##### install tools: bazelisk, yq, oras
# renovate: datasource=github-tags depName=bazelbuild/bazelisk
ARG BAZELISK_VERSION=v1.20.0
ARG BAZELISK_VERSION=v1.22.0
RUN OS=linux; ARCH=$([ "$(arch)" = "x86_64" ] && echo amd64 || echo arm64); \
curl -fsSL "https://github.com/bazelbuild/bazelisk/releases/download/${BAZELISK_VERSION}/bazelisk-${OS}-${ARCH}" -o /usr/local/bin/bazel && chmod +x /usr/local/bin/bazel

Expand Down

0 comments on commit 09625fd

Please sign in to comment.