-
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.
+10
−10
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
|
04ab9a5
to
841c99a
Compare
841c99a
to
b54f903
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.
Note
Mend has cancelled the proposed renaming of the Renovate GitHub app being renamed to
mend[bot]
.This notice will be removed on 2025-10-07.
This PR contains the following updates:
v0.28.0
->v0.29.0
v0.23.0
->v0.24.0
v2.23.4
->v2.26.0
v1.38.0
->v1.38.2
1.24.6
->1.25.1
v1.10.4
->v1.11.1
v0.21.0
->v0.22.1
Release Notes
go-openapi/runtime (github.com/go-openapi/runtime)
v0.29.0
Compare Source
go-openapi/strfmt (github.com/go-openapi/strfmt)
v0.24.0
Compare Source
onsi/ginkgo (github.com/onsi/ginkgo/v2)
v2.26.0
Compare Source
2.26.0
Features
Ginkgo can now generate json-formatted reports that are compatible with the
go test
json 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.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
actions/go-versions (go)
v1.25.1
: 1.25.1Compare Source
Go 1.25.1
v1.25.0
: 1.25.0Compare Source
Go 1.25.0
v1.24.7
: 1.24.7Compare Source
Go 1.24.7
kubernetes-sigs/cluster-api (sigs.k8s.io/cluster-api)
v1.11.1
Compare 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.0
Compare 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.Conditions
types and the new condition semantichas been completed.
FailureReason
andFailureMessage
fields have been dropped.*int32
fields with units being part of the field name.bool
fields have been changed to*bool
to preserve user intent.required
andoptional
is explicitly set in the API, and thatboth serialization and validation works accordingly:
omitempty
and 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).0
when 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).required
andoptional
according to K8s API guidelines, extensive work has been done todrop unnecessary pointers thus improving the usability of the API's Go structs.
deletion
struct in all resources.rollout
have been logically grouped in all resources.remediation
have 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 plan
command (#12283)Changes since v1.10.0
📈 Overview
📝 Proposals
✨ New Features
🐛 Bug Fixes
🌱 Others
2025060
, cleanup excludes, fix IPAM prefix field, add MaxItems to Machine.status.addresses (#12326)2025062
+ enable uniquemarkers linter (#12427)make generate-go-openapi
if parent directory name does not equalcluster-api
(#12461)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 is behind base branch, 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.