-
Notifications
You must be signed in to change notification settings - Fork 0
Renovate: Update External dependencies #19
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
Open
renovate
wants to merge
1
commit into
main
Choose a base branch
from
renovate/external-dependencies
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
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
Author
|
841c99a to
b54f903
Compare
3bf9ceb to
1d30260
Compare
1d30260 to
d222e45
Compare
d222e45 to
a2ffee1
Compare
a2ffee1 to
82d021e
Compare
82d021e to
21b6fb4
Compare
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.0v0.23.0->v0.24.0v2.23.4->v2.27.2v1.38.0->v1.38.21.24.6->1.25.4v1.10.4->v1.11.3v0.21.0->v0.22.4Release Notes
go-openapi/runtime (github.com/go-openapi/runtime)
v0.29.0Compare Source
go-openapi/strfmt (github.com/go-openapi/strfmt)
v0.24.0Compare Source
onsi/ginkgo (github.com/onsi/ginkgo/v2)
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.38.2Compare Source
1.38.2
c404969]v1.38.1Compare Source
1.38.1
Fixes
Numerous minor fixes and dependency bumps
actions/go-versions (go)
v1.25.4: 1.25.4Compare Source
Go 1.25.4
v1.25.3: 1.25.3Compare Source
Go 1.25.3
v1.25.2: 1.25.2Compare Source
Go 1.25.2
v1.25.1: 1.25.1Compare Source
Go 1.25.1
v1.25.0: 1.25.0Compare Source
Go 1.25.0
v1.24.10: 1.24.10Compare Source
Go 1.24.10
v1.24.9: 1.24.9Compare Source
Go 1.24.9
v1.24.8: 1.24.8Compare Source
Go 1.24.8
v1.24.7: 1.24.7Compare Source
Go 1.24.7
kubernetes-sigs/cluster-api (sigs.k8s.io/cluster-api)
v1.11.3Compare Source
👌 Kubernetes version support
More information about version support can be found here
Changes since v1.11.2
📈 Overview
✨ New Features
🌱 Others
📖 Additionally, there have been 5 contributions to our documentation and book. (#12837, #12839, #12887, #12894, #12916)
Dependencies
Added
Nothing has changed.
Changed
Removed
Nothing has changed.
Thanks to all our contributors! 😊
v1.11.2Compare Source
👌 Kubernetes version support
More information about version support can be found here
Changes since v1.11.1
📈 Overview
✨ New Features
🐛 Bug Fixes
🌱 Others
📖 Additionally, there has been 1 contribution to our documentation and book. (#12780)
Dependencies
Added
Nothing has changed.
Changed
Removed
Nothing has changed.
Thanks to all our contributors! 😊
v1.11.1Compare Source
👌 Kubernetes version support
More information about version support can be found here
Changes since v1.11.0
📈 Overview
✨ New Features
a9cb59f(#12707)🐛 Bug Fixes
🌱 Others
📖 Additionally, there have been 4 contributions to our documentation and book. (#12667, #12668, #12671, #12674)
Dependencies
Added
Nothing has changed.
Changed
Removed
Nothing has changed.
Thanks to all our contributors! 😊
v1.11.0Compare Source
👌 Kubernetes version support
More information about version support can be found here
Highlights
sigs.k8s.io/randfill) (#12191)step in the journey towards graduating our API to v1.
metav1.Conditionstypes and the new condition semantichas been completed.
FailureReasonandFailureMessagefields have been dropped.*int32fields with units being part of the field name.boolfields have been changed to*boolto preserve user intent.requiredandoptionalis explicitly set in the API, and thatboth serialization and validation works accordingly:
omitemptyand introduction ofomitzero)""when it is not semantically different from value not set (either you have to provide a non-empty string value or not set the field at all).0when it is not semantically different from value not set (either you have to provide a non-0 int value or not set the field at all).{}when it is not semantically different from value not set (either you have to set at least one property in the object or not set the field at all).[]when it is not semantically different from value not set (either you have to set at least one item in the list or not set the field at all).requiredandoptionalaccording to K8s API guidelines, extensive work has been done todrop unnecessary pointers thus improving the usability of the API's Go structs.
deletionstruct in all resources.rollouthave been logically grouped in all resources.remediationhave been logically grouped in all resources.See Cluster API v1.10 compared to v1.11 for more details
Notes for workload cluster upgrade to Kubernetes v1.34 with KCP
Deprecation and Removals Warning
clusterctl alpha topology plancommand (#12283)Changes since v1.10.0
📈 Overview
📝 Proposals
✨ New Features
🐛 Bug Fixes
Configuration
📅 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.