Open
Conversation
Author
|
841c99a to
b54f903
Compare
3bf9ceb to
1d30260
Compare
1d30260 to
d222e45
Compare
d222e45 to
a2ffee1
Compare
82d021e to
21b6fb4
Compare
21b6fb4 to
0ae1630
Compare
f071c93 to
7c1ede1
Compare
7c1ede1 to
616b3cd
Compare
a2bf05a to
ebbf1c5
Compare
a75f978 to
babbd6b
Compare
63aa42e to
27857f2
Compare
cd2ee68 to
d137dd6
Compare
68f8ad9 to
62f2532
Compare
62f2532 to
6449c03
Compare
6449c03 to
9d593dd
Compare
9d593dd to
ad553a4
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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:
v0.28.0→v0.29.3v0.23.0→v0.26.0v2.23.4→v2.28.1v1.38.0→v1.39.1v0.33.3→v0.33.9v0.33.3→v0.33.9v0.33.3→v0.33.9v1.10.4→v1.12.3v0.21.0→v0.23.3Release Notes
go-openapi/runtime (github.com/go-openapi/runtime)
v0.29.3Compare Source
0.29.3 - 2026-03-08
Full Changelog: go-openapi/runtime@v0.29.2...v0.29.3
27 commits in this release.
Fixed bugs
Documentation
Code quality
Miscellaneous tasks
Updates
People who contributed to this release
New Contributors
in #373
runtime license terms
Per-module changes
client-middleware/opentracing (0.29.3)
Documentation
Code quality
Miscellaneous tasks
v0.29.2Compare Source
v0.29.1Compare Source
v0.29.0Compare Source
go-openapi/strfmt (github.com/go-openapi/strfmt)
v0.26.0Compare Source
0.26.0 - 2026-03-07
Dropped mongodb dependency - Kept backward-compatibility
Full Changelog: go-openapi/strfmt@v0.25.0...v0.26.0
43 commits in this release.
Documentation
Code quality
Testing
Miscellaneous tasks
Updates
Other
People who contributed to this release
New Contributors
in #227
in #215
in #185
strfmt license terms
Per-module changes
enable/mongodb (0.26.0)
Miscellaneous tasks
internal/testintegration (0.26.0)
Code quality
Testing
Miscellaneous tasks
Updates
Other
v0.25.0Compare Source
v0.24.0Compare Source
onsi/ginkgo (github.com/onsi/ginkgo/v2)
v2.28.1Compare Source
2.28.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.
v2.28.0Compare Source
2.28.0
Ginkgo's SemVer filter now supports filtering multiple components by SemVer version:
can be filtered in or out with an invocation like:
ginkgo --sem-ver-filter="2.1.1, redis=8.2.0"Huge thanks to @Icarus9913 for working on this!
v2.27.5Compare Source
2.27.5
Fixes
Don't make a new formatter for each GinkgoT(); that's just silly and uses precious memory
v2.27.4Compare Source
2.27.4
Fixes
59bc751]v2.27.3Compare Source
2.27.3
Fixes
report exit result in case of failure [
1c9f356]fix data race [
ece19c8]v2.27.2Compare Source
2.27.2
Fixes
a69113a]Maintenance
a99c6e0]f993df5]v2.27.1Compare Source
2.27.1
Fixes
606c1cb]a6463b3]v2.27.0Compare Source
2.27.0
Features
Transforming Nodes during Tree Construction
This release adds support for
NodeArgsTransformers that can be registered withAddTreeConstructionNodeArgsTransformer.These are called during the tree construction phase as nodes are constructed and can modify the node strings and decorators. This enables frameworks built on top of Ginkgo to modify Ginkgo nodes and enforce conventions.
Learn more here.
Spec Prioritization
A new
SpecPriority(int)decorator has been added. Ginkgo will honor priority when ordering specs, ensuring that higher priority specs start running before lower priority specsLearn more here.
Maintenance
1333dae]17ae63e]v2.26.0Compare Source
2.26.0
Features
Ginkgo can now generate json-formatted reports that are compatible with the
go testjson format. Useginkgo --gojson-report=report.go.json. This is not intended to be a replacement for Ginkgo's native json format which is more information rich and better models Ginkgo's test structure semantics.v2.25.3Compare Source
2.25.3
Fixes
f01aed1]v2.25.2Compare Source
2.25.2
Fixes
Add github output group for progress report content
Maintenance
Bump Gomega
v2.25.1Compare Source
2.25.1
Fixes
10866d3]2e42cff]v2.25.0Compare Source
2.25.0
AroundNodeThis release introduces a new decorator to support more complex spec setup usecases.
AroundNoderegisters 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())-funcwill be called before the node is run.AroundNode(func(ctx context.Context) context.Context)-funccan 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)))-ctxis the context for the node andbodyis a function that must be called to run the node. This gives you complete control over what runs before and after the node.Multiple
AroundNodedecorators can be applied to a single node and they will run in the order they are applied.Unlike setup nodes like
BeforeEachandDeferCleanup,AroundNodeis 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 theAroundNodeto ensure that the node runs on a single thread).Since
AroundNodeallows you to modify the context you can also useAroundNodeto implement shared setup that attaches values to the context.If applied to a container,
AroundNodewill run before every node in the container. Including setup nodes likeBeforeEachandDeferCleanup.AroundNodecan also be applied toRunSpecsto run before every node in the suite. This opens up new mechanisms for instrumenting individual nodes across an entire suite.v2.24.0Compare 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.39.1Compare 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.
v1.39.0Compare Source
1.39.0
Features
Add
MatchErrorStrictlywhich only passes iferrors.Is(actual, expected)returns true.MatchError, by contrast, will fallback to string comparison.v1.38.3Compare Source
1.38.3
Fixes
make string formatitng more consistent for users who use format.Object directly
v1.38.2Compare Source
1.38.2
c404969]v1.38.1Compare Source
1.38.1
Fixes
Numerous minor fixes and dependency bumps
kubernetes/api (k8s.io/api)
v0.33.9Compare Source
v0.33.8Compare Source
v0.33.7Compare Source
v0.33.6Compare Source
v0.33.5Compare Source
v0.33.4Compare Source
kubernetes/apimachinery (k8s.io/apimachinery)
v0.33.9Compare Source
v0.33.8Compare Source
v0.33.7Compare Source
v0.33.6Compare Source
v0.33.5Compare Source
v0.33.4Compare Source
kubernetes/client-go (k8s.io/client-go)
v0.33.9Compare Source
v0.33.8Compare Source
v0.33.7Compare Source
v0.33.6Compare Source
v0.33.5Compare Source
v0.33.4Compare Source
kubernetes-sigs/cluster-api (sigs.k8s.io/cluster-api)
v1.12.3Compare Source
👌 Kubernetes version support
More information about version support can be found here
Changes since v1.12.2
📈 Overview
✨ New Features
🐛 Bug Fixes
🌱 Others
📖 Additionally, there has been 1 contribution to our documentation and book. (#13261)
Dependencies
Added
Nothing has changed.
Changed
Removed
Nothing has changed.
Thanks to all our contributors! 😊
v1.12.2Compare Source
👌 Kubernetes version support
More information about version support can be found here
Changes since v1.12.1
📈 Overview
🐛 Bug Fixes
🌱 Others
📖 Additionally, there have been 4 contributions to our documentation and book. (#13197, #13198, #13208, #13219)
Dependencies
Added
Nothing has changed.
Changed
Removed
Nothing has changed.
Thanks to all our contributors! 😊
v1.12.1Compare Source
👌 Kubernetes version support
More information about version support can be found here
Highlights
Changes since v1.12.0
📈 Overview
🐛 Bug Fixes
🌱 Others
📖 Additionally, there have been 3 contributions to our documentation and book. (#13141, #13154, #13160)
Dependencies
Added
Nothing has changed.
Changed
Nothing has changed.
Removed
Nothing has changed.
Thanks to all our contributors! 😊
v1.12.0Compare Source
👌 Kubernetes version support
More information about version support can be found here
Highlights
InPlaceUpdatesfeature gateConfiguration
📅 Schedule: Branch creation - "before 8am on Friday" (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.