-
Notifications
You must be signed in to change notification settings - Fork 87
🌱 Update Update Golang Dependencies group (minor) #1567
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
syself-bot
wants to merge
1
commit into
main
Choose a base branch
from
renovate/golang-deps
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
ℹ Artifact update noticeFile name: go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
|
24fa13a
to
ddb3840
Compare
cabf92d
to
282c214
Compare
41e1bc3
to
dd2d0ed
Compare
6a98167
to
71d8a0c
Compare
01d9313
to
b052831
Compare
b052831
to
fbbe196
Compare
eb7bc55
to
e36b464
Compare
d8737ab
to
344148c
Compare
a411dfb
to
aa3a083
Compare
e77c6a4
to
f291995
Compare
cbebab9
to
ce7314c
Compare
5239877
to
3fd8622
Compare
028d94a
to
e76766c
Compare
39072af
to
c700658
Compare
a0b4ffc
to
a87dcdd
Compare
108b36a
to
ceaeeb9
Compare
3be7e3c
to
f896130
Compare
624b7e8
to
0094d77
Compare
| datasource | package | from | to | | ---------- | ------------------------------------ | ---------------------------------- | ---------------------------------- | | go | github.com/hetznercloud/hcloud-go/v2 | v2.22.0 | v2.27.0 | | go | github.com/onsi/ginkgo/v2 | v2.23.4 | v2.26.0 | | go | github.com/prometheus/common | v0.65.0 | v0.66.1 | | go | github.com/stretchr/testify | v1.10.0 | v1.11.1 | | go | golang.org/x/crypto | v0.40.0 | v0.42.0 | | go | golang.org/x/exp | v0.0.0-20250718183923-645b1fa84792 | v0.0.0-20251002181428-27f1f14c8bb9 | | go | golang.org/x/mod | v0.26.0 | v0.28.0 | | go | k8s.io/utils | v0.0.0-20250604170112-4c0f3b243397 | v0.0.0-20251002143259-bc988d571ff4 | | go | sigs.k8s.io/kind | v0.29.0 | v0.30.0 |
0094d77
to
6441715
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
0 participants
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:
v2.22.0
->v2.27.0
v2.23.4
->v2.26.0
v0.65.0
->v0.66.1
v1.10.0
->v1.11.1
v0.40.0
->v0.42.0
645b1fa
->27f1f14
v0.26.0
->v0.28.0
4c0f3b2
->bc988d5
v0.29.0
->v0.30.0
Release Notes
hetznercloud/hcloud-go (github.com/hetznercloud/hcloud-go/v2)
v2.27.0
Compare Source
DNS API Beta
This release adds support for the new DNS API.
The DNS API is currently in beta, which will likely end on 10 November 2025. After the beta ended, it will no longer be possible to create new zones in the old DNS system. See the DNS Beta FAQ for more details.
Future minor releases of this project may include breaking changes for features that are related to the DNS API.
See the DNS API Beta changelog for more details.
Examples
Features
v2.26.0
Compare Source
Features
Bug Fixes
v2.25.1
Compare Source
Bug Fixes
v2.25.0
Compare Source
Server Types now depend on Locations.
We added a new
locations
property to the Server Types resource. The new property defines a list of supported Locations and additional per Locations details such as deprecations information.We deprecated the
deprecation
property from the Server Types resource. The property will gradually be phased out as per Locations deprecations are being announced. Please use the new per Locations deprecation information instead.See our changelog for more details.
Upgrading
Features
sliceutil.Transform
function (#731)v2.24.0
Compare Source
Features
v2.23.0
Compare Source
Features
Bug Fixes
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
prometheus/common (github.com/prometheus/common)
v0.66.1
Compare Source
This release has no functional changes, it just drops the dependencies
github.com/grafana/regexp
andgo.uber.org/atomic
and replacesgopkg.in/yaml.v2
withgo.yaml.in/yaml/v2
(a drop-in replacement).What's Changed
Full Changelog: prometheus/common@v1.20.99...v0.66.1
v0.66.0
Compare Source
scheme
set, so users should use the NewTextParser function to create a valid TextParser. Otherwise parsing will panic with "Invalid name validation scheme requested: unset".What's Changed
model: add constants for type and unit labels. by @bwplotka in https://github.com/prometheus/common/pull/801
model.ValidationScheme: Support encoding as YAML by @aknuds1 in https://github.com/prometheus/common/pull/799
fix(promslog): always print time.Duration values as go duration strings by @tjhop in https://github.com/prometheus/common/pull/798
Add
ValidationScheme
methodsIsValidMetricName
andIsValidLabelName
by @aknuds1 in https://github.com/prometheus/common/pull/806Fix delimited proto not escaped correctly by @thampiotr in https://github.com/prometheus/common/pull/809
Decoder: Remove use of global name validation and add validation by @ywwg in https://github.com/prometheus/common/pull/808
ValidationScheme implements pflag.Value and json.Marshaler/Unmarshaler interfaces by @juliusmh in https://github.com/prometheus/common/pull/807
expfmt: Add NewTextParser function by @aknuds1 in https://github.com/prometheus/common/pull/816
Enable the godot linter by @aknuds1 in https://github.com/prometheus/common/pull/821
Enable usestdlibvars linter by @aknuds1 in https://github.com/prometheus/common/pull/820
Enable unconvert linter by @aknuds1 in https://github.com/prometheus/common/pull/819
Enable the fatcontext linter by @aknuds1 in https://github.com/prometheus/common/pull/822
Enable gocritic linter by @aknuds1 in https://github.com/prometheus/common/pull/818
Use go.uber.org/atomic instead of sync/atomic by @aknuds1 in https://github.com/prometheus/common/pull/825
Enable revive rule unused-parameter by @aknuds1 in https://github.com/prometheus/common/pull/824
Enable revive rules by @aknuds1 in https://github.com/prometheus/common/pull/823
Synchronize common files from prometheus/prometheus by @prombot in https://github.com/prometheus/common/pull/802
Synchronize common files from prometheus/prometheus by @prombot in https://github.com/prometheus/common/pull/803
Sync .golangci.yml with prometheus/prometheus by @aknuds1 in https://github.com/prometheus/common/pull/817
ci: update upload-actions by @ywwg in https://github.com/prometheus/common/pull/814
docs: fix typo in expfmt.Negotiate by @wmcram in https://github.com/prometheus/common/pull/813
build(deps): bump golang.org/x/net from 0.40.0 to 0.41.0 by @dependabot[bot] inhttps://github.com/prometheus/common/pull/8000
build(deps): bump golang.org/x/net from 0.41.0 to 0.42.0 by @dependabot[bot] inhttps://github.com/prometheus/common/pull/8100
build(deps): bump github.com/stretchr/testify from 1.10.0 to 1.11.1 in /assets by @dependabot[bot] inhttps://github.com/prometheus/common/pull/8266
build(deps): bump google.golang.org/protobuf from 1.36.6 to 1.36.8 by @dependabot[bot] inhttps://github.com/prometheus/common/pull/8300
build(deps): bump golang.org/x/net from 0.42.0 to 0.43.0 by @dependabot[bot] inhttps://github.com/prometheus/common/pull/8299
build(deps): bump github.com/stretchr/testify from 1.10.0 to 1.11.1 by @dependabot[bot] inhttps://github.com/prometheus/common/pull/8277
New Contributors
stretchr/testify (github.com/stretchr/testify)
v1.11.1
Compare Source
This release fixes #1785 introduced in v1.11.0 where expected argument values implementing the stringer interface (
String() string
) with a method which mutates their value, when passed to mock.Mock.On (m.On("Method", <expected>).Return()
) or actual argument values passed to mock.Mock.Called may no longer match one another where they previously did match. The behaviour prior to v1.11.0 where the stringer is always called is restored. Future testify releases may not call the stringer method at all in this case.What's Changed
Full Changelog: stretchr/testify@v1.11.0...v1.11.1
v1.11.0
Compare Source
What's Changed
Functional Changes
v1.11.0 Includes a number of performance improvements.
Fixes
Documentation, Build & CI
New Contributors
Full Changelog: stretchr/testify@v1.10.0...v1.11.0
kubernetes-sigs/kind (sigs.k8s.io/kind)
v0.30.0
Compare Source
This is small release containing patched dependencies and Kubernetes 1.34, as well as a bugfix for Kubernetes v1.33.0+ cluster reboots.
Breaking Changes
The default node image is now
kindest/node:v1.34.0@​sha256:7416a61b42b1662ca6ca89f02028ac133a309a2a30ba309614e8ec94d976dc5a
New Features
Images pre-built for this release:
kindest/node:v1.34.0@​sha256:7416a61b42b1662ca6ca89f02028ac133a309a2a30ba309614e8ec94d976dc5a
kindest/node:v1.33.4@​sha256:25a6018e48dfcaee478f4a59af81157a437f15e6e140bf103f85a2e7cd0cbbf2
kindest/node:v1.32.8@​sha256:abd489f042d2b644e2d033f5c2d900bc707798d075e8186cb65e3f1367a9d5a1
kindest/node:v1.31.12@​sha256:0f5cc49c5e73c0c2bb6e2df56e7df189240d83cf94edfa30946482eb08ec57d2
NOTE: You must use the
@sha256
digest to guarantee an image built for this release, until such a time as we switch to a different tagging scheme. Even then we will highly encourage digest pinning for security and reproducibility reasons.See also:
NOTE: These node images support amd64 and arm64, both of our supported platforms. You must use the same platform as your host, for more context see https://github.com/kubernetes-sigs/kind/issues/2718
Fixes
Contributors
Committers for this release:
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.