Skip to content

chore: update dependencies #10045

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

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

chore: update dependencies #10045

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Dec 25, 2024

Update Request | Renovate Bot

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
docker/dockerfile-upstream minor 1.15.1-labs -> 1.16.0-labs age adoption passing confidence
docker/dockerfile-upstream syntax minor 1.15.1-labs -> 1.16.0-labs age adoption passing confidence
etcd-io/etcd minor v3.5.21 -> v3.6.0 age adoption passing confidence
github.com/Azure/azure-sdk-for-go/sdk/azidentity require minor v1.9.0 -> v1.10.0 age adoption passing confidence
github.com/aws/aws-sdk-go-v2/feature/s3/manager require patch v1.17.75 -> v1.17.76 age adoption passing confidence
github.com/aws/aws-sdk-go-v2/service/ec2 require minor v1.218.0 -> v1.222.0 age adoption passing confidence
github.com/aws/aws-sdk-go-v2/service/s3 require patch v1.79.3 -> v1.79.4 age adoption passing confidence
github.com/cenkalti/backoff/v4 require major v4.3.0 -> v5.0.2 age adoption passing confidence
github.com/google/go-containerregistry require patch v0.20.3 -> v0.20.5 age adoption passing confidence
github.com/google/go-tpm require patch v0.9.4 -> v0.9.5 age adoption passing confidence
github.com/insomniacslk/dhcp require digest 8abf581 -> 5f8cf70 age adoption passing confidence
github.com/linode/go-metadata require patch v0.2.1 -> v0.2.2 age adoption passing confidence
github.com/planetscale/vtprotobuf require digest 79df5c4 -> ba97887
github.com/safchain/ethtool require minor v0.5.10 -> v0.6.0 age adoption passing confidence
github.com/santhosh-tekuri/jsonschema/v5 require major v5.3.1 -> v6.0.2 age adoption passing confidence
github.com/siderolabs/go-blockdevice require major v0.4.8 -> v2.0.18 age adoption passing confidence
github.com/siderolabs/go-blockdevice/v2 require patch v2.0.17 -> v2.0.18 age adoption passing confidence
github.com/smira/dhcp replace digest 99942ba -> 7d93572
github.com/smira/kobject replace digest 49c8d46 -> 19ca174
github.com/unix4ever/yaml replace major v0.0.0-20220527175918-f17b0f05cf2c -> v2.4.0 age adoption passing confidence
go.etcd.io/etcd/api/v3 require minor v3.5.21 -> v3.6.0 age adoption passing confidence
go.etcd.io/etcd/client/pkg/v3 require minor v3.5.21 -> v3.6.0 age adoption passing confidence
go.etcd.io/etcd/client/v3 require minor v3.5.21 -> v3.6.0 age adoption passing confidence
go.etcd.io/etcd/etcdutl/v3 require minor v3.5.21 -> v3.6.0 age adoption passing confidence
google.golang.org/api require minor v0.232.0 -> v0.234.0 age adoption passing confidence
google.golang.org/genproto/googleapis/api require digest 5a2f75b -> 55703ea age adoption passing confidence
google.golang.org/genproto/googleapis/rpc require digest 5a2f75b -> 55703ea age adoption passing confidence
google.golang.org/grpc require patch v1.72.0 -> v1.72.2 age adoption passing confidence
helm/helm minor v3.17.3 -> v3.18.0 age adoption passing confidence
k8s.io/code-generator patch v0.33.0 -> v0.33.1 age adoption passing confidence
longhorn (source) minor v1.8.1 -> 1.9.0 age adoption passing confidence
markdownlint-cli minor 0.44.0 -> 0.45.0 age adoption passing confidence
rook-ceph patch v1.17.1 -> v1.17.2 age adoption passing confidence
textlint patch 14.7.1 -> 14.7.2 age adoption passing confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

etcd-io/etcd (etcd-io/etcd)

v3.6.0

Compare Source

Please check out CHANGELOG for a full list of changes. And make sure to read upgrade guide before upgrading etcd (there may be breaking changes).

For installation guides, please check out play.etcd.io and operating etcd. Latest support status for common architectures and operating systems can be found at supported platforms.

Linux
ETCD_VER=v3.6.0

##### choose either URL
GOOGLE_URL=https://storage.googleapis.com/etcd
GITHUB_URL=https://github.com/etcd-io/etcd/releases/download
DOWNLOAD_URL=${GOOGLE_URL}

rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test

curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-linux-amd64.tar.gz -o /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
tar xzvf /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz -C /tmp/etcd-download-test --strip-components=1 --no-same-owner
rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz

/tmp/etcd-download-test/etcd --version
/tmp/etcd-download-test/etcdctl version
/tmp/etcd-download-test/etcdutl version

##### start a local etcd server
/tmp/etcd-download-test/etcd

##### write,read to etcd
/tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 put foo bar
/tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 get foo
macOS (Darwin)
ETCD_VER=v3.6.0

##### choose either URL
GOOGLE_URL=https://storage.googleapis.com/etcd
GITHUB_URL=https://github.com/etcd-io/etcd/releases/download
DOWNLOAD_URL=${GOOGLE_URL}

rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test

curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-darwin-amd64.zip -o /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
unzip /tmp/etcd-${ETCD_VER}-darwin-amd64.zip -d /tmp && rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
mv /tmp/etcd-${ETCD_VER}-darwin-amd64/* /tmp/etcd-download-test && rm -rf mv /tmp/etcd-${ETCD_VER}-darwin-amd64

/tmp/etcd-download-test/etcd --version
/tmp/etcd-download-test/etcdctl version
/tmp/etcd-download-test/etcdutl version
Docker

etcd uses gcr.io/etcd-development/etcd as a primary container registry, and quay.io/coreos/etcd as secondary.

ETCD_VER=v3.6.0

rm -rf /tmp/etcd-data.tmp && mkdir -p /tmp/etcd-data.tmp && \
  docker rmi gcr.io/etcd-development/etcd:${ETCD_VER} || true && \
  docker run \
  -p 2379:2379 \
  -p 2380:2380 \
  --mount type=bind,source=/tmp/etcd-data.tmp,destination=/etcd-data \
  --name etcd-gcr-${ETCD_VER} \
  gcr.io/etcd-development/etcd:${ETCD_VER} \
  /usr/local/bin/etcd \
  --name s1 \
  --data-dir /etcd-data \
  --listen-client-urls http://0.0.0.0:2379 \
  --advertise-client-urls http://0.0.0.0:2379 \
  --listen-peer-urls http://0.0.0.0:2380 \
  --initial-advertise-peer-urls http://0.0.0.0:2380 \
  --initial-cluster s1=http://0.0.0.0:2380 \
  --initial-cluster-token tkn \
  --initial-cluster-state new \
  --log-level info \
  --logger zap \
  --log-outputs stderr

docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcd --version
docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl version
docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdutl version
docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl endpoint health
docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl put foo bar
docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl get foo
cenkalti/backoff (github.com/cenkalti/backoff/v4)

v5.0.2

Compare Source

v5.0.1

Compare Source

v5.0.0

Compare Source

google/go-containerregistry (github.com/google/go-containerregistry)

v0.20.5

Compare Source

What's Changed

New Contributors

Full Changelog: google/go-containerregistry@v0.20.3...v0.20.5

v0.20.4: - Not usable as a go module

Compare Source

🚨 This release was published to the Go module proxy and then re-tagged with a different commit. This means it's not usable as a Go module (https://github.com/google/go-containerregistry/issues/2107) -- please us v0.20.5 instead.

What's Changed

New Contributors

Full Changelog: google/go-containerregistry@v0.20.3...v0.20.4

google/go-tpm (github.com/google/go-tpm)

v0.9.5

Compare Source

What's Changed

Full Changelog: google/go-tpm@v0.9.4...v0.9.5

linode/go-metadata (github.com/linode/go-metadata)

v0.2.2

Compare Source

What's Changed

🐛 Bug Fixes
⚙️ Repo/CI Improvements
📦 Dependency Updates

New Contributors

Full Changelog: linode/go-metadata@v0.2.1...v0.2.2

safchain/ethtool (github.com/safchain/ethtool)

v0.6.0

Compare Source

What's Changed

New Contributors

Full Changelog: safchain/ethtool@v0.5.10...v0.6.0

santhosh-tekuri/jsonschema (github.com/santhosh-tekuri/jsonschema/v5)

v6.0.2

Compare Source

v6.0.1

Compare Source

Bug Fixes:

  • fix/schema: field RecursiveRef misspelled
  • fix/schema: missing Deprecated field

check https://github.com/santhosh-tekuri/jsonschema/discussions/172 to see notes for migrating from v5 to v6

v6.0.0

Compare Source

Improvements
  • mixed dialect support
  • custom $vocabulary support
  • sermver format
  • support for localisation for ValidationError
  • command jv
    • support stdin
    • --insecure and --cacert flag
    • --quiet flag

check https://github.com/santhosh-tekuri/jsonschema/discussions/172 to see notes for migrating from v5 to v6

siderolabs/go-blockdevice (github.com/siderolabs/go-blockdevice)

v2.0.18

Compare Source

go-blockdevice 2.0.18 (2025-05-23)

Welcome to the v2.0.18 release of go-blockdevice!

Please try out the release binaries and report any issues at
https://github.com/siderolabs/go-blockdevice/issues.

Contributors
  • Andrey Smirnov
  • Dmitry Sharshakov
  • Dmitriy Matrenichev
  • Orzelius
Changes
41 commits

  • 811b12a feat: swap support
  • 226aa0e chore: support file probing on all unix systems
  • 0669ff8 fix: detect transport for xvda devices
  • d55893a fix: partition allocation index
  • c9a7c0b fix: device transport detection
  • adc5c52 fix: wipe (P)MBR with GPT
  • a749230 fix: bring block device uuid back
  • a07f540 fix: revert setting first usable LBA to 1024
  • b6d0510 fix: allow sector size override when probing a file
  • 688a58a fix: chain of probe functions
  • a047647 fix: align first GPT partition entry to 1024 sectors
  • 7af9654 fix: many small fixes, mostly around overwrites
  • 57e15ed fix: read device serial like in v1
  • 8853e37 feat: support reading VFAT volume labels
  • af28144 fix: make extfs filesystem detection separate for ext2/3/4
  • 6d3b4b0 feat: implement device wiping by signatures
  • 5bff648 fix: kernel partition sync when overwriting GPT
  • f63c85d feat: add support for checking if device is already open
  • 33f603a fix: correctly process GPT with gaps
  • d39fa20 fix: add context to luks commands
  • 2021ab8 release(v2.0.0): prepare release
  • 08a7802 fix: add support for 'legacy bios bootable' attribute
  • fa9291f feat: bring disk encryption support
  • bc73f6d fix: drop ReadFullAt
  • c34dfb6 fix: don't ignore error on partition delete
  • 41240c1 fix: several fixes for GPT and ZFS
  • 07f736f feat: add support for retry-locking the blockdevice
  • 114af20 feat: add device wipe and partition devname
  • cfdeb03 feat: implement GPT editing
  • 9d8d8e7 chore: add setters for struct fields
  • f4a4030 fix: add runtime.KeepAlive to keep alive descriptors
  • 1a51f16 feat: gather blockdevice information
  • 81b69bf fix: use read full when reading data
  • 3052077 feat: lock the blockdevice in shared mode when probing
  • cf51e33 feat: support detection of squashfs and Talos META
  • da92100 feat: detect ZFS
  • 3265299 feat: detect Linux swap and LVM2
  • 21c66f8 fix: don't probe empty CD drives
  • a5481f5 feat: implement GPT partition discovery
  • 9beb2bd feat: start the blkid work
  • aa55391 chore: start the v2 version of the module

Changes since v2.0.17
1 commit

Dependency Changes

This release has no dependency changes

v2.0.17

Compare Source

go-blockdevice 2.0.17 (2025-05-21)

Welcome to the v2.0.17 release of go-blockdevice!

Please try out the release binaries and report any issues at
https://github.com/siderolabs/go-blockdevice/issues.

Contributors
  • Andrey Smirnov
  • Dmitry Sharshakov
  • Dmitriy Matrenichev
  • Orzelius
Changes
40 commits

  • 226aa0e chore: support file probing on all unix systems
  • 0669ff8 fix: detect transport for xvda devices
  • d55893a fix: partition allocation index
  • c9a7c0b fix: device transport detection
  • adc5c52 fix: wipe (P)MBR with GPT
  • a749230 fix: bring block device uuid back
  • a07f540 fix: revert setting first usable LBA to 1024
  • b6d0510 fix: allow sector size override when probing a file
  • 688a58a fix: chain of probe functions
  • a047647 fix: align first GPT partition entry to 1024 sectors
  • 7af9654 fix: many small fixes, mostly around overwrites
  • 57e15ed fix: read device serial like in v1
  • 8853e37 feat: support reading VFAT volume labels
  • af28144 fix: make extfs filesystem detection separate for ext2/3/4
  • 6d3b4b0 feat: implement device wiping by signatures
  • 5bff648 fix: kernel partition sync when overwriting GPT
  • f63c85d feat: add support for checking if device is already open
  • 33f603a fix: correctly process GPT with gaps
  • d39fa20 fix: add context to luks commands
  • 2021ab8 release(v2.0.0): prepare release
  • 08a7802 fix: add support for 'legacy bios bootable' attribute
  • fa9291f feat: bring disk encryption support
  • bc73f6d fix: drop ReadFullAt
  • [c34dfb6](https://redirect.github.com/siderolab

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

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

Copy link
Author

renovate bot commented Dec 25, 2024

⚠️ Artifact update problem

Renovate failed to update artifacts related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: go.sum
Command failed: go get -d -t ./...
go: -d flag is deprecated. -d=true is a no-op
go: gopkg.in/[email protected] (replaced by github.com/unix4ever/yaml/[email protected]): parsing go.mod:
	module declares its path as: gopkg.in/yaml.v2
	        but was required as: gopkg.in/yaml.v3

File name: hack/cloud-image-uploader/go.sum
Command failed: install-tool golang 1.24.0

File name: hack/docgen/go.sum
Command failed: install-tool golang 1.24.0

File name: pkg/machinery/go.sum
Command failed: install-tool golang 1.24.0

@renovate renovate bot force-pushed the renovate/dependencies branch 10 times, most recently from a701ed8 to ac4609c Compare January 2, 2025 02:45
@renovate renovate bot force-pushed the renovate/dependencies branch 16 times, most recently from a08e5d6 to b0c3f2b Compare January 9, 2025 16:30
@renovate renovate bot force-pushed the renovate/dependencies branch 3 times, most recently from 08488dd to 0f82c03 Compare January 10, 2025 18:13
@renovate renovate bot force-pushed the renovate/dependencies branch 26 times, most recently from 95ce09b to 9be7f12 Compare May 24, 2025 09:11
@renovate renovate bot force-pushed the renovate/dependencies branch 2 times, most recently from e0ef0dd to ac57eea Compare May 27, 2025 10:47
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@renovate renovate bot force-pushed the renovate/dependencies branch from ac57eea to 6181343 Compare May 27, 2025 12:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants