Skip to content

Update all non-major dependencies (main)#888

Open
renovate-rancher[bot] wants to merge 1 commit into
mainfrom
renovate/main-all-minor-patch
Open

Update all non-major dependencies (main)#888
renovate-rancher[bot] wants to merge 1 commit into
mainfrom
renovate/main-all-minor-patch

Conversation

@renovate-rancher

@renovate-rancher renovate-rancher Bot commented Mar 3, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update Pending
github.com/caarlos0/env/v11 v11.3.1v11.4.1 age confidence require minor
github.com/minio/minio-go/v7 v7.0.87v7.2.0 age confidence require minor v7.2.1
github.com/rancher/backup-restore-operator v0.0.0v0.0.1 age confidence require patch
github.com/samber/lo v1.49.1v1.53.0 age confidence require minor
github.com/testcontainers/testcontainers-go v0.40.0v0.43.0 age confidence require minor
go (source) 1.26.31.26.4 age confidence toolchain patch
google.golang.org/grpc v1.79.3v1.81.1 age confidence replace minor v1.82.0
helm.sh/helm/v4 v4.2.0v4.2.2 age confidence require patch

Warning

Some dependencies could not be looked up. Check the warning logs for more information.


Release Notes

caarlos0/env (github.com/caarlos0/env/v11)

v11.4.1

Compare Source

Changelog

Bug fixes
Documentation updates
Other work

Released with GoReleaser Pro!

v11.4.0

Compare Source

Changelog

New Features
Bug fixes
Documentation updates
Other work

Released with GoReleaser Pro!

minio/minio-go (github.com/minio/minio-go/v7)

v7.2.0

Compare Source

What's Changed

Full Changelog: minio/minio-go@v7.1.0...v7.2.0

v7.1.0

Compare Source

What's Changed

Full Changelog: minio/minio-go@v7.0.100...v7.1.0

v7.0.100

Compare Source

v7.0.99

Compare Source

v7.0.98

Compare Source

What's Changed

New Contributors

Full Changelog: minio/minio-go@v7.0.97...v7.0.98

v7.0.97

Compare Source

v7.0.96

Compare Source

v7.0.95: Bugfix Release

Compare Source

What's Changed

New Contributors

Full Changelog: minio/minio-go@v7.0.94...v7.0.95

v7.0.94: Bugfix Release

Compare Source

What's Changed

  • fix: canceled context should not start list before do listObjects by @​jiuker in #​2122

Full Changelog: minio/minio-go@v7.0.93...v7.0.94

v7.0.93: Bugfix Release

Compare Source

What's Changed

New Contributors

Full Changelog: minio/minio-go@v7.0.92...v7.0.93

v7.0.92: Bugfix Release and new APIs

Compare Source

What's Changed

New Contributors

Full Changelog: minio/minio-go@v7.0.91...v7.0.92

v7.0.91: Bugfix Release

Compare Source

What's Changed

New Contributors

Full Changelog: minio/minio-go@v7.0.90...v7.0.91

v7.0.90: Bugfix v7.0.90

Compare Source

What's Changed

New Contributors

Full Changelog: minio/minio-go@v7.0.89...v7.0.90

v7.0.89: Bugfix Release

Compare Source

What's Changed

New Contributors

Full Changelog: minio/minio-go@v7.0.88...v7.0.89

v7.0.88: Bugfix Release

Compare Source

What's Changed

New Contributors

Full Changelog: minio/minio-go@v7.0.87...v7.0.88

samber/lo (github.com/samber/lo)

v1.53.0

Compare Source

Announcing the latest release of lo with lots of good gifts! 🎁

🌊 First, a big thanks to @​d-enk for making lots of performance improvements in the recent weeks.

🧪 Second, this release introduces a new simd experimental package. If you run on an amd64 architecture and a recent CPU, you can perform very fast operations thanks to SIMD CPU instructions.
-> Documentation: https://lo.samber.dev/docs/experimental/simd

💥 Third, this version adds *Err variants of many lo helpers (like MapErr, FlatMapErr, ReduceErr, etc.) whose callbacks can return an error and short-circuit execution when one occurs.

[!NOTE]
The simd sub-package is considered not stable. We might break the initial API based on developers' feedback in the coming months.

moto-gopher2

Features & improvements

Deprecation

Performance improvements

  • feat: Optimize UniqMap to reduce unnecessary slice preallocation by @​ivolkoff in #​710
  • refactor(it): simplify DropLast, TrimSuffix, TrimPrefix and use range loops by @​d-enk in #​782
  • bench: fix iterators to actually iterate in benchmarks by @​d-enk in #​781
  • refactor: simplify slice cut/trim prefix/suffix functions by @​d-enk in #​787
  • perf: optimize Sliding by pre-allocating result capacity by @​d-enk in #​783
  • refactor: improve SamplesBy performance and revert non-panic behavior for negative count by @​d-enk in #​786
  • feat(perf): speed up some functions with linear complexity O=n2 -> O=2n by @​samber in #​726
  • perf: only allocate a single map in Intersect by @​NathanBaulch in #​736
  • perf: preallocate Words string buffer by @​NathanBaulch in #​728
  • refactor: improve lo[it].Intersect[By] readability and performance by @​d-enk in #​756
  • perf: preallocate result slice in SamplesBy by @​d-enk in #​766
  • perf: optimize PartitionBy by eliminating redundant append by @​d-enk in #​765
  • perf: correct prealloc of the result in FindUniques/Duplicates[By] by @​d-enk in #​764
  • perf: use Ternary() instead If().Else() in Range/RangeFrom by @​d-enk in #​770
  • perf: optimize it.Trim to use DropLastWhile(DropWhile(...)) by @​d-enk in #​780
  • perf: replace Min/Max(Range) with Min/MaxIndexBy in DispatchingStrategy by @​d-enk in #​779
  • perf: preallocate result slice in RangeWithSteps by @​d-enk in #​820
  • perf: avoid unnecessary error allocation in NthOr, NthOrEmpty by @​d-enk in #​817
  • perf: optimize Zip and ZipBy functions by @​d-enk in #​818
  • perf: lazy it.Reverse iteration instead of in-place mutation by @​d-enk in #​814
  • perf: optimize Substring to work directly with strings instead of converting to runes by @​d-enk in #​822
  • perf: optimize it.CountBy by removing Filter iterator chain by @​d-enk in #​813
  • perf: optimize it.Find to avoid unnecessary allocations by @​d-enk in #​811
  • perf: optimize it.ContainsBy/EveryBy/SomeBy/NoneBy to avoid unnecessary allocations by @​d-enk in #​812
  • refactor: simplify for loop by @​d-enk in #​772
  • refactor: remove some redundant checks by @​d-enk in #​771
  • refactor: simplify it.HasSuffix implementation by @​d-enk in #​767
  • refactor: improve Slice logic and fix docstring by @​d-enk in #​785

Thanks @​d-enk !!

Other (doc, tests, style...)

Dependencies

New Contributors

Full Changelog: samber/lo@v1.52.0...v1.53.0

v1.52.0

Compare Source

Thrilled to announce the latest release of samber/lo!

This version brings major improvements:

  • A new it/ sub-package for everything related to the iter package added in Go 1.23. Big up to @​NathanBaulch for its help on this
  • A new documentation -> lo.samber.dev
  • Lots of micro fixes and performance improvements
  • Better code quality with many more linters

✨ A good introduction to streams in Go !

Pasted Graphic 63

What's Changed

Tests

Style

Documentation

Other

New Contributors

Full Changelog: samber/lo@v1.51.0...v1.52.0

v1.51.0

Compare Source

What's Changed

Doc

Dependencies

New Contributors


Configuration

📅 Schedule: (UTC)

  • 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.

👻 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 has been generated by Renovate Bot.

@renovate-rancher renovate-rancher Bot requested a review from a team as a code owner March 3, 2026 05:05
@renovate-rancher renovate-rancher Bot added the dependencies Pull requests that update a dependency file label Mar 3, 2026
@renovate-rancher

renovate-rancher Bot commented Mar 3, 2026

Copy link
Copy Markdown
Contributor Author

ℹ️ Artifact update notice

File name: cmd/tool/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 5 additional dependencies were updated

Details:

Package Change
k8s.io/apimachinery v0.36.0 -> v0.36.1
k8s.io/client-go v0.36.0 -> v0.36.1
golang.org/x/crypto v0.51.0 -> v0.53.0
k8s.io/api v0.36.0 -> v0.36.1
k8s.io/apiextensions-apiserver v0.36.0 -> v0.36.1
File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 9 additional dependencies were updated

Details:

Package Change
github.com/klauspost/compress v1.18.4 -> v1.18.6
github.com/klauspost/cpuid/v2 v2.2.9 -> v2.2.11
github.com/ebitengine/purego v0.8.4 -> v0.10.0
github.com/minio/crc64nvme v1.0.1 -> v1.1.1
github.com/moby/go-archive v0.1.0 -> v0.2.0
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c -> v0.0.0-20240221224432-82ca36839d55
github.com/shirou/gopsutil/v4 v4.25.6 -> v4.26.5
github.com/tklauser/go-sysconf v0.3.12 -> v0.3.16
github.com/tklauser/numcpus v0.6.1 -> v0.11.0

@renovate-rancher renovate-rancher Bot force-pushed the renovate/main-all-minor-patch branch 6 times, most recently from de850bc to ddbb10c Compare March 13, 2026 05:03
@renovate-rancher renovate-rancher Bot force-pushed the renovate/main-all-minor-patch branch 5 times, most recently from d96104d to 9abb3cb Compare March 21, 2026 04:58
@renovate-rancher renovate-rancher Bot force-pushed the renovate/main-all-minor-patch branch 3 times, most recently from 6b26574 to 914cab2 Compare March 28, 2026 05:08
@renovate-rancher renovate-rancher Bot force-pushed the renovate/main-all-minor-patch branch 3 times, most recently from e952800 to b85558d Compare April 3, 2026 05:15
@renovate-rancher renovate-rancher Bot force-pushed the renovate/main-all-minor-patch branch 4 times, most recently from ccdaad0 to d4ca2f1 Compare April 14, 2026 05:18
@renovate-rancher renovate-rancher Bot force-pushed the renovate/main-all-minor-patch branch 2 times, most recently from 73f81aa to eddecf5 Compare April 18, 2026 05:16
@renovate-rancher renovate-rancher Bot force-pushed the renovate/main-all-minor-patch branch 4 times, most recently from 178c11e to 4f8ecf5 Compare May 3, 2026 07:18
@renovate-rancher renovate-rancher Bot force-pushed the renovate/main-all-minor-patch branch 4 times, most recently from b716843 to a44c49e Compare May 10, 2026 05:45
@renovate-rancher renovate-rancher Bot force-pushed the renovate/main-all-minor-patch branch 3 times, most recently from d54d303 to 9fcd55b Compare May 16, 2026 05:38
@renovate-rancher renovate-rancher Bot force-pushed the renovate/main-all-minor-patch branch 3 times, most recently from b82ced2 to 081e28b Compare May 23, 2026 05:46
@renovate-rancher renovate-rancher Bot force-pushed the renovate/main-all-minor-patch branch 4 times, most recently from b35ad31 to 9691baf Compare June 5, 2026 06:03
@renovate-rancher renovate-rancher Bot force-pushed the renovate/main-all-minor-patch branch 2 times, most recently from 42c1f09 to 00a9490 Compare June 16, 2026 06:21
@renovate-rancher renovate-rancher Bot force-pushed the renovate/main-all-minor-patch branch 4 times, most recently from dd9051a to 3a64973 Compare June 25, 2026 07:47
@renovate-rancher renovate-rancher Bot force-pushed the renovate/main-all-minor-patch branch from 3a64973 to 416c918 Compare June 27, 2026 05:50
@renovate-rancher renovate-rancher Bot force-pushed the renovate/main-all-minor-patch branch from 416c918 to 0bd0bfb Compare July 1, 2026 06:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants