-
Notifications
You must be signed in to change notification settings - Fork 8
[deps]: Update go minor #22
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
base: main
Are you sure you want to change the base?
Conversation
78c356d
to
1a7e346
Compare
1a7e346
to
7aacc6a
Compare
b2e1c82
to
722393f
Compare
722393f
to
a07d22d
Compare
a07d22d
to
1002dd7
Compare
Internal tracking ticket for this dependency PR: https://bitwarden.atlassian.net/browse/SM-1320 |
1002dd7
to
dbbf989
Compare
e06349c
to
73bf101
Compare
73bf101
to
e87aa49
Compare
ℹ Artifact update noticeFile name: go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #22 +/- ##
==========================================
- Coverage 76.51% 66.66% -9.85%
==========================================
Files 3 8 +5
Lines 264 480 +216
==========================================
+ Hits 202 320 +118
- Misses 57 152 +95
- Partials 5 8 +3 ☔ View full report in Codecov by Sentry. |
2c3df83
to
e2a7a8b
Compare
|
a6026f5
to
e6126d2
Compare
fb4d04e
to
2e48b67
Compare
deb03ac
to
ca3482b
Compare
35261e1
to
745ffe2
Compare
d252f92
to
d2b85f2
Compare
de50378
to
ab64419
Compare
6d0ed3f
to
10282e3
Compare
37e4d2b
to
b17bc3d
Compare
48e5a45
to
5c26b62
Compare
6d51bf9
to
949ec02
Compare
f00af40
to
b466137
Compare
7cb0d48
to
27c71ca
Compare
58177eb
to
ef3543a
Compare
ef3543a
to
1c5046e
Compare
1c5046e
to
ffea009
Compare
This PR contains the following updates:
v1.4.2
->v1.4.3
v2.23.4
->v2.25.3
v2.26.0
v1.36.3
->v1.38.2
1.23.2
->1.25.1
1.25.2
v0.4.0
->v0.6.0
v0.32.0
->v0.34.1
v0.32.0
->v0.34.1
v0.32.0
->v0.34.1
v0.20.0
->v0.22.1
v0.22.2
Release Notes
go-logr/logr (github.com/go-logr/logr)
v1.4.3
Compare Source
Minor release.
What's Changed
New Contributors
Full Changelog: go-logr/logr@v1.4.2...v1.4.3
onsi/ginkgo (github.com/onsi/ginkgo/v2)
v2.25.3
Compare Source
2.25.3
Fixes
f01aed1
]v2.25.2
Compare Source
2.25.2
Fixes
Add github output group for progress report content
Maintenance
Bump Gomega
v2.25.1
Compare Source
2.25.1
Fixes
10866d3
]2e42cff
]v2.25.0
Compare Source
2.25.0
AroundNode
This release introduces a new decorator to support more complex spec setup usecases.
AroundNode
registers a function that runs before each individual node. This is considered a more advanced decorator.Please read the docs for more information and some examples.
Allowed signatures:
AroundNode(func())
-func
will be called before the node is run.AroundNode(func(ctx context.Context) context.Context)
-func
can wrap the passed in context and return a new one which will be passed on to the node.AroundNode(func(ctx context.Context, body func(ctx context.Context)))
-ctx
is the context for the node andbody
is a function that must be called to run the node. This gives you complete control over what runs before and after the node.Multiple
AroundNode
decorators can be applied to a single node and they will run in the order they are applied.Unlike setup nodes like
BeforeEach
andDeferCleanup
,AroundNode
is guaranteed to run in the same goroutine as the decorated node. This is necessary when working with lower-level libraries that must run on a single thread (you can callruntime.LockOSThread()
in theAroundNode
to ensure that the node runs on a single thread).Since
AroundNode
allows you to modify the context you can also useAroundNode
to implement shared setup that attaches values to the context.If applied to a container,
AroundNode
will run before every node in the container. Including setup nodes likeBeforeEach
andDeferCleanup
.AroundNode
can also be applied toRunSpecs
to run before every node in the suite. This opens up new mechanisms for instrumenting individual nodes across an entire suite.v2.24.0
Compare Source
2.24.0
Features
Specs can now be decorated with (e.g.)
SemVerConstraint("2.1.0")
andginkgo --sem-ver-filter="2.1.1"
will only run constrained specs that match the requested version. Learn more in the docs here! Thanks to @Icarus9913 for the PR.Fixes
3f5d379
]. fixes #1582Maintenance
Numerous dependency bumps and documentation fixes
onsi/gomega (github.com/onsi/gomega)
v1.38.2
Compare Source
1.38.2
c404969
]v1.38.1
Compare Source
1.38.1
Fixes
Numerous minor fixes and dependency bumps
v1.38.0
Compare Source
1.38.0
Features
4ee7ed0
]Fixes
36bbf72
]Maintenance
529d408
]acd1f55
]bae65a0
]8dda91f
]212d812
]59bd7f9
]328c729
]9a798a1
]04a72c6
]v1.37.0
Compare Source
1.37.0
Features
5666f98
]golang/go (go)
v1.25.1
v1.25.0
v1.24.8
v1.24.7
v1.24.6
v1.24.5
v1.24.4
v1.24.3
v1.24.2
v1.24.1
v1.24.0
v1.23.12
v1.23.11
v1.23.10
v1.23.9
v1.23.8
v1.23.7
v1.23.6
v1.23.5
v1.23.4
v1.23.3
uber/mock (go.uber.org/mock)
v0.6.0
Compare Source
0.6.0 (18 Aug 2025)
Added
Fixed
v0.5.2
Compare Source
0.5.2 (28 Apr 2025)
Fixed
v0.5.1
Compare Source
0.5.1 (7 Apr 2025)
Fixed
when they are used in the source.
in generated code.
-imports
were not beingrespected in generated code.
Thanks to @mtoader and @bstncartwright for their contributions to this release.
v0.5.0
Compare Source
0.5.0 (15 Oct 2024)
Added
--write_command_comment
flag to specify whether to includeGenerated by this command
comment.--build_constraint
flag to add//go:build
directivesto generated mocks
of --exec_only
Changed
go list
.Cond
matcher generic.ISGOMOCK()
from generated mocks.Fixed
matches
fmt.Stringer
.in the package comment of generated mocks.
Thanks to @tulzke @JacobOaks @ARR4N @sashamelentyev @sywhang @fasmat
@eyasy1217 @ghouscht @tie @Neo2308 @carson-brill @alexandear @sodul
@nbgraham for their contributions this release.
kubernetes/api (k8s.io/api)
v0.34.1
Compare Source
v0.34.0
Compare Source
v0.33.5
Compare Source
v0.33.4
Compare Source
v0.33.3
Compare Source
v0.33.2
Compare Source
v0.33.1
Compare Source
v0.33.0
Compare Source
v0.32.9
Compare Source
v0.32.8
Compare Source
v0.32.7
Compare Source
v0.32.6
Compare Source
v0.32.5
Compare Source
v0.32.4
Compare Source
v0.32.3
Compare Source
v0.32.2
Compare Source
v0.32.1
Compare Source
kubernetes/apimachinery (k8s.io/apimachinery)
v0.34.1
Compare Source
v0.34.0
Compare Source
v0.33.5
Compare Source
v0.33.4
Compare Source
v0.33.3
Compare Source
v0.33.2
Compare Source
v0.33.1
Compare Source
v0.33.0
Compare Source
v0.32.9
Compare Source
v0.32.8
Compare Source
v0.32.7
Compare Source
v0.32.6
Compare Source
v0.32.5
Compare Source
v0.32.4
Compare Source
v0.32.3
Compare Source
v0.32.2
Compare Source
v0.32.1
Compare Source
kubernetes/client-go (k8s.io/client-go)
v0.34.1
Compare Source
v0.34.0
Compare Source
v0.33.5
Compare Source
v0.33.4
Compare Source
v0.33.3
Compare Source
v0.33.2
Compare Source
v0.33.1
Compare Source
v0.33.0
Compare Source
v0.32.9
Compare Source
v0.32.8
Compare Source
v0.32.7
Compare Source
v0.32.6
Compare Source
v0.32.5
Compare Source
v0.32.4
Compare Source
v0.32.3
Compare Source
v0.32.2
Compare Source
v0.32.1
Compare Source
kubernetes-sigs/controller-runtime (sigs.k8s.io/controller-runtime)
v0.22.1
Compare Source
What's Changed
Full Changelog: kubernetes-sigs/controller-runtime@v0.22.0...v0.22.1
v0.22.0
Compare Source
🔆 Highlights
MatchingLabelsSelector
andMatchingFieldsSelector
by @acumino in #3279✨ Features
🐛 Bugfixes
🌱 Other
📖 Documentation
Dependencies
Added
Changed
e6fa225
→a0af3ef
e6fa225
→a0af3ef
1244d31
→85fd79d
c8a335a
→f3f2b99
3ea5e8c
→4c0f3b2
9aa6b5e
→cfa47c3
Removed
ef43131
New Contributors
Full Changelog: kubernetes-sigs/controller-runtime@v0.21.0...v0.22.0
Thanks to all our contributors! 😊
v0.21.0
Compare Source
Highlights
Result.Requeue
(#3107)✨ New Features
🐛 Bug Fixes
🌱 Others
📖 Additionally, there have been 4 contributions to our documentation. (#3116, #3118, #3169, #3181, #3193, #3225)
Dependencies
Added
Changed
Configuration
📅 Schedule: Branch creation - "every 2nd week starting on the 2 week of the year before 4am on Monday" (UTC), 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 was generated by Mend Renovate. View the repository job log.