Update all non-major dependencies (main) #181
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v11.1.0
->v11.3.1
v0.16.6
->v0.16.10
v2.22.2
->v2.23.4
v1.36.2
->v1.37.0
v0.0.0-20250109193533-00757eec2dbd
->v0.2.1
v3.2.0-rc.2
->v3.2.0
v1.47.0
->v1.49.1
v1.8.1
->v1.9.1
v1.10.0
->v1.20.1
1.23.4
->1.23.8
v0.4.0
->v0.5.1
v0.22.0
->v0.24.0
v0.21.0
->v0.24.0
v3.15.3
->v3.17.2
v4.25.1
->v4.45.1
v3.9.0
->v3.11.3
v1.25.16
->v1.31.7
v0.1.19
->v0.4.0
Release Notes
caarlos0/env (github.com/caarlos0/env/v11)
v11.3.1
Compare Source
Changelog
Bug fixes
f329e88
: fix: Options.Environment: Do not merge with default env (#353) (@oxzi)9bf044a
: fix: retract 11.3.0 (@caarlos0)Other work
4ebfdad
: ci: fix gitignore (@caarlos0)Released with GoReleaser Pro!
v11.3.0
Compare Source
Changelog
New Features
59284e4
: feat: implement interface { Unwrap() []error } for AggregateError to be compatibility with std errors.Join go1.20 without any breaking change (#336) (@itsabgr-raika)17fdb91
: feat: set custom tag name for envDefault (#324) (@dnovikoff)1cb1967
: feat: set custom tag name for envPrefix (#332) (@sv-kozlov)0136931
: feat: supporttime.Location
(#326) (@BorzdeG)4ab8b37
: feat: support ignored value "-" for env tag (#338) (@sv-kozlov)Bug fixes
6f3a5c0
: fix: better handle envDefault, refactor merge options (#349) (@astak16)3afa723
: fix: improve errors (#329) (@caarlos0)0cbf40b
: fix: map value with : in it (@caarlos0)e55230b
: fix: parsing into ptr fields with value (#340) (@hypnoglow)Documentation updates
84c7739
: docs: DefaultValueTagName example (@caarlos0)0847ba1
: docs: add installation instructions to README.md (#330) (@eduardolat)76faca5
: docs: project state (@caarlos0)Other work
b76caa9
: ci: add EditorConfig (#327) (@BorzdeG)1f955b7
: ci: update (@caarlos0)f68d1dc
: refactor: enable gocritic linter and fix lint issues (#342) (@alexandear)52e7186
: refactor: modify the init logic for env tag options to make it more reasonable (#347) (@astak16)Released with GoReleaser Pro!
v11.2.2
Compare Source
Changelog
Documentation updates
aa50469
: docs: duplicated headline (@caarlos0)Released with GoReleaser Pro!
v11.2.1
Compare Source
Changelog
Bug fixes
2683e95
: fix: do not init empty arrays (#321) (@caarlos0)Documentation updates
fac6114
: docs: cleanup readme (#322) (@caarlos0)5d7eb0c
: docs: fix bad example (@caarlos0)19de57d
: docs: more examples (@caarlos0)be1c262
: docs: more examples (@caarlos0)fb84246
: docs: more examples (@caarlos0)1282042
: docs: more examples (@caarlos0)3d8627f
: docs: typos (@caarlos0)d7efb64
: docs: update license year range (@caarlos0)Released with GoReleaser Pro!
v11.2.0
Compare Source
Changelog
New Features
68793c0
: feat: mapping slice of complex struct (#312) (@Rancbar)Documentation updates
33920af
: docs: added a logo (@caarlos0)0de9383
: docs: update (@caarlos0)Released with GoReleaser Pro!
k3s-io/helm-controller (github.com/k3s-io/helm-controller)
v0.16.10
Compare Source
What's Changed
Full Changelog: k3s-io/helm-controller@v0.16.9...v0.16.10
v0.16.9
Compare Source
What's Changed
Full Changelog: k3s-io/helm-controller@v0.16.8...v0.16.9
v0.16.8
Compare Source
What's Changed
New Contributors
Full Changelog: k3s-io/helm-controller@v0.16.6...v0.16.8
v0.16.7
Compare Source
What's Changed
New Contributors
Full Changelog: k3s-io/helm-controller@v0.16.6...v0.16.7
onsi/ginkgo (github.com/onsi/ginkgo/v2)
v2.23.4
Compare Source
2.23.4
Prior to this release Ginkgo would compute the incorrect number of available CPUs when running with
-p
in a linux container. Thanks to @emirot for the fix!Features
2b9c428
]Fixes
1f59d07
]Maintenance
2d134d5
]v2.23.3
Compare Source
2.23.3
Fixes
-
as a standalone argument [cfcc1a5
]feaf292
]88e2282
]v2.23.2
Compare Source
2.23.2
🎉🎉🎉
At long last, some long-standing performance gaps between
ginkgo
andgo test
have been resolved!Ginkgo operates by running
go test -c
to generate test binaries, and then running those binaries. It turns out that the compilation step ofgo test -c
is slower thango test
's compilation step becausego test
strips out debug symbols (ldflags=-w
) whereasgo test -c
does not.Ginkgo now passes the appropriate
ldflags
togo test -c
when running specs to strip out symbols. This is only done when it is safe to do so and symbols are preferred when profiling is enabled and whenginkgo build
is called explicitly.This, coupled, with the instructions for disabling XProtect on MacOS yields a much better performance experience with Ginkgo.
v2.23.1
Compare Source
2.23.1
🚨 For users on MacOS 🚨
A long-standing Ginkgo performance issue on MacOS seems to be due to mac's antimalware XProtect. You can follow the instructions here to disable it in your terminal. Doing so sped up Ginkgo's own test suite from 1m8s to 47s.
Fixes
Ginkgo's CLI is now a bit clearer if you pass flags in incorrectly:
a0e52ff
]b799d8d
]This might cause existing CI builds to fail. If so then it's likely that your CI build was misconfigured and should be corrected. Open an issue if you need help.
v2.23.0
Compare Source
2.23.0
Ginkgo 2.23.0 adds a handful of methods to
GinkgoT()
to make it compatible with thetesting.TB
interface in Go 1.24.GinkgoT().Context()
, in particular, is a useful shorthand for generating a new context that will clean itself up in aDeferCleanup()
. This has subtle behavior differences from the golang implementation but should make sense in a Ginkgo... um... context.Features
37a511b
]Fixes
7556a86
]4df06c6
]Maintenance
cbcf39a
]9b261ff
]00f19c8
]e98a4df
]60cc4e2
]fea6f2d
]31d7813
]fc3bbd6
]aee0d56
]809a710
]onsi/gomega (github.com/onsi/gomega)
v1.37.0
Compare Source
1.37.0
Features
5666f98
]v1.36.3
Compare Source
1.36.3
Maintenance
adb8b49
]interface{}
withany
[7613216
]9fe5259
]a0e85b9
]604a8b1
]36fbc84
]ced70d7
]c8b4a07
]06431b9
]b55a92d
]a1d518b
]rancher/lasso (github.com/rancher/lasso)
v0.2.1
Compare Source
What's Changed
New Contributors
Full Changelog: rancher/lasso@v0.2.0...v0.2.1
v0.2.0
Compare Source
What's Changed
18e509b
by @renovate-rancher in https://github.com/rancher/lasso/pull/77New Contributors
Full Changelog: https://github.com/rancher/lasso/commits/v0.2.0
rancher/wrangler (github.com/rancher/wrangler/v3)
v3.2.0
Compare Source
What's Changed
76c5745
(main) by @renovate-rancher in https://github.com/rancher/wrangler/pull/503New Contributors
Full Changelog: rancher/wrangler@v3.1.0...v3.2.0
v3.2.0-rc.3
Compare Source
What's Changed
76c5745
(main) by @renovate-rancher in https://github.com/rancher/wrangler/pull/503New Contributors
Full Changelog: rancher/wrangler@v3.2.0-rc.2...v3.2.0-rc.3
samber/lo (github.com/samber/lo)
v1.49.1
Compare Source
What's Changed
Full Changelog: samber/lo@v1.49.0...v1.49.1
v1.49.0
Compare Source
What's Changed
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.
This PR has been generated by Renovate Bot.