Skip to content

Commit 81e6ec3

Browse files
chore(deps): update module github.com/mikefarah/yq/v4 to v4.53.2 (main) (#15122)
This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [github.com/mikefarah/yq/v4](https://redirect.github.com/mikefarah/yq) | `v4.52.5` → `v4.53.2` | ![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fmikefarah%2fyq%2fv4/v4.53.2?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fmikefarah%2fyq%2fv4/v4.52.5/v4.53.2?slim=true) | --- > [!WARNING] > Some dependencies could not be looked up. Check the warning logs for more information. --- ### Release Notes <details> <summary>mikefarah/yq (github.com/mikefarah/yq/v4)</summary> ### [`v4.53.2`](https://redirect.github.com/mikefarah/yq/releases/tag/v4.53.2) [Compare Source](https://redirect.github.com/mikefarah/yq/compare/v4.53.1...v4.53.2) - Releases and tags now signed and immutable! - Add system(command; args) operator (disabled by default) ([#&#8203;2640](https://redirect.github.com/mikefarah/yq/issues/2640)) - TOML encoder: prefer readable table sections over inline tables ([#&#8203;2649](https://redirect.github.com/mikefarah/yq/issues/2649)) - Fix TOML encoder to quote keys containing special characters ([#&#8203;2648](https://redirect.github.com/mikefarah/yq/issues/2648)) - Add string slicing support ([#&#8203;2639](https://redirect.github.com/mikefarah/yq/issues/2639)) - Fix findInArray misuse on MappingNodes in equality and contains ([#&#8203;2645](https://redirect.github.com/mikefarah/yq/issues/2645)) Thanks [@&#8203;jandubois](https://redirect.github.com/jandubois)! - Fix panic on negative slice indices that underflow after adjustment ([#&#8203;2646](https://redirect.github.com/mikefarah/yq/issues/2646)) Thanks [@&#8203;jandubois](https://redirect.github.com/jandubois)! - Fix stack overflow from circular alias in traverse ([#&#8203;2647](https://redirect.github.com/mikefarah/yq/issues/2647)) Thanks [@&#8203;jandubois](https://redirect.github.com/jandubois)! - Fix panic and OOM in repeatString for large repeat counts ([#&#8203;2644](https://redirect.github.com/mikefarah/yq/issues/2644)) Thanks [@&#8203;jandubois](https://redirect.github.com/jandubois)! - Bumped dependencies ### [`v4.53.1`](https://redirect.github.com/mikefarah/yq/compare/v4.52.5...v4.53.1) [Compare Source](https://redirect.github.com/mikefarah/yq/compare/v4.52.5...v4.53.1) </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - Between 12:00 AM and 03:59 AM (`* 0-3 * * *`) - 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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- ## Need help? You can ask for more help in the following Slack channel: #proj-renovate-self-hosted. In that channel you can also find ADR and FAQ docs in the Resources section. <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xMjcuMiIsInVwZGF0ZWRJblZlciI6IjQzLjEyNy4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmN5LXVwZGF0ZSIsInVwZGF0ZS1taW5vciJdfQ==--> <!-- CURSOR_SUMMARY --> --- > [!NOTE] > **Low Risk** > Low risk: only updates the `yq` version used in the build container and the referenced `LATEST_BUILD_IMAGE_TAG`, with no production/runtime code changes. > > **Overview** > Updates the build tooling by bumping `github.com/mikefarah/yq/v4` from `v4.52.5` to `v4.53.2` in `mimir-build-image/Dockerfile`. > > Also updates `Makefile` to point `LATEST_BUILD_IMAGE_TAG` at the newer prebuilt build-image tag so CI/local containerized builds pull the refreshed image. > > <sup>Reviewed by [Cursor Bugbot](https://cursor.com/bugbot) for commit ed4bdcf. Bugbot is set up for automated code reviews on this repo. Configure [here](https://www.cursor.com/dashboard/bugbot).</sup> <!-- /CURSOR_SUMMARY --> --------- Signed-off-by: renovate-sh-app[bot] <219655108+renovate-sh-app[bot]@users.noreply.github.com> Co-authored-by: renovate-sh-app[bot] <219655108+renovate-sh-app[bot]@users.noreply.github.com> Co-authored-by: mimir-github-bot[bot] <199097951+mimir-github-bot[bot]@users.noreply.github.com>
1 parent 965df06 commit 81e6ec3

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ mimir-build-image/$(UPTODATE): mimir-build-image/*
224224
# All the boiler plate for building golang follows:
225225
SUDO := $(shell docker info >/dev/null 2>&1 || echo "sudo -E")
226226
BUILD_IN_CONTAINER ?= true
227-
LATEST_BUILD_IMAGE_TAG ?= pr15103-d1b68e5c9d
227+
LATEST_BUILD_IMAGE_TAG ?= pr15122-95d7f02149
228228

229229
# TTY is parameterized to allow CI and scripts to run builds,
230230
# as it currently disallows TTY devices.

mimir-build-image/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ RUN GO111MODULE=on \
5252
go install github.com/campoy/embedmd/v2@v2.0.0 && \
5353
go install github.com/jsonnet-bundler/jsonnet-bundler/cmd/jb@v0.6.0 && \
5454
go install github.com/monitoring-mixins/mixtool/cmd/mixtool@b97ae11 && \
55-
go install github.com/mikefarah/yq/v4@v4.52.5 && \
55+
go install github.com/mikefarah/yq/v4@v4.53.2 && \
5656
go install github.com/google/go-jsonnet/cmd/jsonnet@v0.21.0 && \
5757
go install github.com/google/go-jsonnet/cmd/jsonnetfmt@v0.21.0 && \
5858
go install github.com/norwoodj/helm-docs/cmd/helm-docs@v1.14.2 && \

0 commit comments

Comments
 (0)