chore(deps): Update go deps #2355
Merged
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:
v1.27.43
->v1.28.0
v1.14.3
->v1.14.4
v1.20.4
->v1.20.5
a64fc48
->c5e4fb2
v1.17.1
->v1.18.0
v1.13.0
->v1.14.0
v0.55.0
->v0.56.0
v0.55.0
->v0.56.0
v0.55.0
->v0.56.0
v0.55.0
->v0.56.0
v1.30.0
->v1.31.0
5fefd90
->796eee8
Release Notes
aws/aws-sdk-go-v2 (github.com/aws/aws-sdk-go-v2/config)
v1.28.0
jackc/pgtype (github.com/jackc/pgtype)
v1.14.4
Compare Source
prometheus/client_golang (github.com/prometheus/client_golang)
v1.20.5
: / 2024-10-15Compare Source
We decided to revert the
testutil
change that made our util functions less error-prone, but created a lot of work for our downstream users. Apologies for the pain! This revert should not cause any major breaking change, even if you already did the work--unless you depend on the exact error message.Going forward, we plan to reinforce our release testing strategy [1],[2] and deliver an enhanced
testutil
package/module with more flexible and safer APIs.Thanks to @dashpole @dgrisonnet @kakkoyun @ArthurSens @vesari @logicalhan @krajorama @bwplotka who helped in this patch release! 🤗
Changelog
[BUGFIX] testutil: Reverted #1424; functions using compareMetricFamilies are (again) only failing if filtered metricNames are in the expected input. #1645
twmb/franz-go (github.com/twmb/franz-go)
v1.18.0
Compare Source
===
This release adds support for Kafka 3.7, adds a few community requested APIs,
some internal improvements, and fixes two bugs. One of the bugfixes is for a
deadlock; it is recommended to bump to this release to ensure you do not run
into the deadlock. The features in this release are relatively small.
This adds protocol support for KIP-890 and KIP-994, and
adds further protocol support for [KIP-848][KIP-848]. If you are using
transactions, you may see a new
kerr.TransactionAbortable
error, whichsignals that your ongoing transaction should be aborted and will not be
successful if you try to commit it.
Lastly, there have been a few improvements to
pkg/sr
that are not mentionedin these changelog notes.
Bug fixes
If you canceled the context used while producing while your client was
at the maximum buffered records or bytes, it was possible to experience
deadlocks. This has been fixed. See #832 for more details.
Previously, if using
GetConsumeTopics
while regex consuming, the functionwould return all topics ever discovered. It now returns only the topics that
are being consumed.
Improvements
encountered when consuming if possible. If a producer produces very infrequently,
it is possible the broker forgets the producer by the next time the producer
produces. In this case, the producer receives an OutOfOrderSequenceNumber error.
The client now internally resets properly so that you do not see the error.
Features
AllowRebalance
andCloseAllowingRebalance
have been added toGroupTransactSession
.FetchTopic
type now has includes the topic'sTopicID
.ErrGroupSession
internal error field is now public, allowing you to test how you handle the internal error.kerr.TransactionAbortable
error from many functions while using transactions.Relevant commits
0fd1959d
kgo: support Kafka 3.8's kip-890 modifications68163c55
bugfix kgo: do not add all topics to internal tps map when regex consuming3548d1f7
improvement kgo: ignore OOOSN where possible6a759401
bugfix kgo: fix potential deadlock when reaching max buffered (records|bytes)4bfb0c68
feature kgo: add TopicID to the FetchTopic type06a9c47d
feature kgo: export the wrapped error from ErrGroupSession4affe8ef
feature kgo: add AllowRebalance and CloseAllowingRebalance to GroupTransactSessionopen-telemetry/opentelemetry-go-contrib (go.opentelemetry.io/contrib/propagators/b3)
v1.31.0
: /v0.56.0/v0.25.0/v0.11.0/v0.6.0/v0.4.0/v0.3.0Compare Source
Overview
Added
Severitier
andSeverityVar
types are added togo.opentelemetry.io/contrib/processors/minsev
allowing dynamic configuration of the severity used by theLogProcessor
. (#6116)go.opentelemetry.io/otel
to this repository underexamples
directory. (#6158)go.opentelemetry.io/contrib/config
. (#5433)ParseYAML
ingo.opentelemetry.io/contrib/config
. (#5433)go.opentelemetry.io/contrib/config
. (#5860)Changed
NewLogProcessor
ingo.opentelemetry.io/contrib/processors/minsev< 8000 /code> has changed to accept the added
Severitier
interface instead of alog.Severity
. (#6116)go.opentelemetry.io/contrib/config
to use the v0.3.0 release of schema which includes backwards incompatible changes. (#6126)NewSDK
ingo.opentelemetry.io/contrib/config
now returns a no-op SDK ifdisabled
is set totrue
. (#6185)go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho
package has found a Code Owner. The package is no longer deprecated. (#6207)Fixed
go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace
. (#5965)logrus.Level
transformed to appropriatelog.Severity
ingo.opentelemetry.io/contrib/bridges/otellogrus
. (#6191)Removed
Minimum
field of theLogProcessor
ingo.opentelemetry.io/contrib/processors/minsev
is removed.Use
NewLogProcessor
to configure this setting. (#6116)go.opentelemetry.io/contrib/instrumentation/gopkg.in/macaron.v1/otelmacaron
package is removed. (#6186)go.opentelemetry.io/contrib/samplers/aws/xray
package is removed. (#6187)What's Changed
534ce5a
by @renovate in https://github.com/open-telemetry/opentelemetry-go-contrib/pull/61187bd1c85
by @renovate in https://github.com/open-telemetry/opentelemetry-go-contrib/pull/6122minsev
to allow dynamic severities by @MrAlias in https://github.com/open-telemetry/opentelemetry-go-contrib/pull/6116a200e0a
by @renovate in https://github.com/open-telemetry/opentelemetry-go-contrib/pull/6130aef9e4f
by @renovate in https://github.com/open-telemetry/opentelemetry-go-contrib/pull/613249e7df5
by @renovate in https://github.com/open-telemetry/opentelemetry-go-contrib/pull/6136063239f
by @renovate in https://github.com/open-telemetry/opentelemetry-go-contrib/pull/61389d4c2d2
by @renovate in https://github.com/open-telemetry/opentelemetry-go-contrib/pull/6153af27646
by @renovate in https://github.com/open-telemetry/opentelemetry-go-contrib/pull/6164225e2ab
by @renovate in https://github.com/open-telemetry/opentelemetry-go-contrib/pull/62015fefd90
by @renovate in https://github.com/open-telemetry/opentelemetry-go-contrib/pull/6214c46165d
by @renovate in https://github.com/open-telemetry/opentelemetry-go-contrib/pull/6222c46165d
" by @dmathieu in https://github.com/open-telemetry/opentelemetry-go-contrib/pull/622367ed584
by @renovate in https://github.com/open-telemetry/opentelemetry-go-contrib/pull/6225e386a8a
by @renovate in https://github.com/open-telemetry/opentelemetry-go-contrib/pull/6227New Contributors
Full Changelog: open-telemetry/opentelemetry-go-contrib@v1.30.0...v1.31.0
Configuration
📅 Schedule: Branch creation - "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.