Skip to content

Update all non-major dependencies (main)#888

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

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

Conversation

@renovate-rancher
Copy link
Copy Markdown
Contributor

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

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
github.com/caarlos0/env/v11 v11.3.1v11.4.1 age confidence
github.com/minio/minio-go/v7 v7.0.87v7.1.0 age confidence
github.com/onsi/ginkgo/v2 v2.28.1v2.28.3 age confidence
github.com/onsi/gomega v1.39.0v1.40.0 age confidence
github.com/rancher/backup-restore-operator v0.0.0v0.0.1 age confidence
github.com/samber/lo v1.49.1v1.53.0 age confidence
github.com/testcontainers/testcontainers-go v0.40.0v0.42.0 age confidence
golang.org/x/crypto v0.45.0v0.50.0 age confidence
golang.org/x/sync v0.19.0v0.20.0 age confidence
google.golang.org/grpc v1.79.3v1.80.0 age confidence

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

onsi/ginkgo (github.com/onsi/ginkgo/v2)

v2.28.3

Compare Source

2.28.3

Maintenance

Bump all dependencies

v2.28.2

Compare Source

2.28.2

  • Add ArtifactDir() to support Go 1.26 testing.TB interface [f3a36b6]
  • Implement shell completion [94151c8]
  • Add asan CLI option mirroring msan implementation [4d21dbb]
  • Bump uri from 1.0.3 to 1.0.4 in /docs (#​1630) [c102161]
  • fix aspect ratio [9619647]
  • update logos [5779304]
onsi/gomega (github.com/onsi/gomega)

v1.40.0

Compare Source

1.40.0

We're adopting a new release strategy to minimize dependency bloat in projects that consume Gomega. It is a limitation of the go mod toolchain that test subdependencies of your project's direct dependencies get pulled in as indirect dependencies. In the case of Gomega, this ends up pulling in all of Ginkgo into your go.mod even if you are only using Gomega (Gomega uses Ginkgo for its own tests).

Going forward, releases will strip out all tests, tidy up the go.mod and then push this stripped down version to a new master-lite branch. These stripped-down versions will receive the vx.y.z git tag and will be picked up by the go toolchain.

Please open an issue if this new release process causes unexpected changes for your projects.

v1.39.1

Compare Source

1.39.1

Update all dependencies. This auto-updated the required version of Go to 1.24, consistent with the fact that Go 1.23 has been out of support for almost six months.

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: <https://github.com/samber/lo/compare/v1.51.0...


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.

👻 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
Copy link
Copy Markdown
Contributor Author

renovate-rancher Bot commented Mar 3, 2026

ℹ️ Artifact update notice

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):

  • 19 additional dependencies were updated

Details:

Package Change
google.golang.org/genproto/googleapis/rpc v0.0.0-20251202230838-ff82c1b0f217 -> v0.0.0-20260120221211-b8f7ae30c516
github.com/klauspost/compress v1.18.0 -> v1.18.5
github.com/klauspost/cpuid/v2 v2.2.9 -> v2.2.11
golang.org/x/mod v0.32.0 -> v0.35.0
golang.org/x/net v0.49.0 -> v0.53.0
golang.org/x/sys v0.42.0 -> v0.43.0
golang.org/x/term v0.39.0 -> v0.42.0
golang.org/x/text v0.33.0 -> v0.36.0
golang.org/x/tools v0.41.0 -> v0.44.0
google.golang.org/genproto/googleapis/api v0.0.0-20251202230838-ff82c1b0f217 -> v0.0.0-20260120221211-b8f7ae30c516
google.golang.org/protobuf v1.36.10 -> v1.36.11
github.com/ebitengine/purego v0.8.4 -> v0.10.0
github.com/google/pprof v0.0.0-20260115054156-294ebfa9ad83 -> v0.0.0-20260402051712-545e8a4df936
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.3
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 3 times, most recently from 6790494 to b716843 Compare May 9, 2026 05:34
@renovate-rancher renovate-rancher Bot force-pushed the renovate/main-all-minor-patch branch from b716843 to a44c49e Compare May 10, 2026 05:45
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