build(deps): update lock file maintenance golang - #2542
Conversation
ℹ️ Artifact update noticeFile name: collector/go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
File name: collector/lambdacomponents/go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
File name: collector/processor/coldstartprocessor/go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
File name: collector/processor/decoupleprocessor/go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
File name: collector/receiver/telemetryapireceiver/go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
|
2c846b4 to
d384f14
Compare
2457f7a to
4d959f6
Compare
This PR contains the following updates:
v5.0.3→v7.0.0v2.9.2→v2.9.3v1.0.2→v2.0.7v0.0.27→v0.0.28v0.158.0→v0.159.0v0.158.0→v0.159.0v0.158.0→v0.159.0v0.158.0→v0.159.0v0.158.0→v0.159.0v0.158.0→v0.159.0v0.158.0→v0.159.0v0.158.0→v0.159.0v0.158.0→v0.159.0v0.158.0→v0.159.0v0.158.0→v0.159.0v0.158.0→v0.159.0v0.158.0→v0.159.0v0.158.0→v0.159.0v0.158.0→v0.159.0v0.158.0→v0.159.0v0.158.0→v0.159.0v0.158.0→v0.159.0v0.158.0→v0.159.0v0.158.0→v0.159.0v0.158.0→v0.159.0v4.1.28→v4.1.290c5dccd→d8e38e0v0.313.2→v0.314.0v1.10.0→v1.10.1v1.11.1→v1.12.1v0.158.0→v0.159.0v1.64.0→v1.65.0v0.158.0→v0.159.0v0.158.0→v0.159.0v1.64.0→v1.65.0v1.64.0→v1.65.0v1.64.0→v1.65.0v0.158.0→v0.159.0v1.64.0→v1.65.0v1.64.0→v1.65.0v1.64.0→v1.65.0v1.64.0→v1.65.0v1.64.0→v1.65.0v0.158.0→v0.159.0v1.64.0→v1.65.0v1.64.0→v1.65.0v0.158.0→v0.159.0v0.158.0→v0.159.0v0.158.0→v0.159.0v0.158.0→v0.159.0v1.64.0→v1.65.0v0.158.0→v0.159.0v0.158.0→v0.159.0v0.158.0→v0.159.0v0.158.0→v0.159.0v1.64.0→v1.65.0v0.158.0→v0.159.0v0.158.0→v0.159.0v0.158.0→v0.159.0v0.158.0→v0.159.0v0.158.0→v0.159.0v0.158.0→v0.159.0v0.158.0→v0.159.0v1.64.0→v1.65.0v1.64.0→v1.65.0v0.158.0→v0.159.0v0.158.0→v0.159.0v0.158.0→v0.159.0v0.158.0→v0.159.0v1.64.0→v1.65.0v0.158.0→v0.159.0v0.158.0→v0.159.0v0.158.0→v0.159.0v0.158.0→v0.159.0v0.158.0→v0.159.0v1.64.0→v1.65.0v0.158.0→v0.159.0v0.158.0→v0.159.0v0.158.0→v0.159.0v1.64.0→v1.65.0v0.158.0→v0.159.0v1.64.0→v1.65.0v0.158.0→v0.159.0v0.158.0→v0.159.0v0.158.0→v0.159.0v0.158.0→v0.159.0v0.158.0→v0.159.0v0.158.0→v0.159.0v1.64.0→v1.65.0v0.158.0→v0.159.0v0.158.0→v0.159.0v0.158.0→v0.159.0v0.158.0→v0.159.0v0.158.0→v0.159.0v2.4.4→v3.0.5d8c1694→0a2e198ec0a776→08b0e42ec0a776→08b0e42v1.83.0→v1.83.13570034→3f964bcWarning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
cenkalti/backoff (github.com/cenkalti/backoff/v5)
v7.0.0Compare Source
v6.0.1Compare Source
v6.0.0Compare Source
fxamacker/cbor (github.com/fxamacker/cbor/v2)
v2.9.3Compare Source
This release fixes a potential panic when decoding into a
time.Timefrom a CBOR byte string, map, or array under certain conditions.Not affected: standard CBOR time data (RFC 8949 tag 0 or tag 1), and decoders configured with
timeTag = DecTagRequired.Upgrading to v2.9.3 is recommended.
The panic stack trace was publicly reported on 2026-08-17, and the fix was released the same day. Fuzz testing was extended to cover this class of bug, and fuzzing of v2.9.3 is ongoing.
What's Changed
Full Changelog: fxamacker/cbor@v2.9.2...v2.9.3
hashicorp/golang-lru (github.com/hashicorp/golang-lru)
v2.0.7: golang-lru 2.0.7Compare Source
What's Changed
New Contributors
Full Changelog: hashicorp/golang-lru@v2.0.6...v2.0.7
v2.0.6: golang-lru 2.0.6Compare Source
This release removes calling the eviction callback when the
Addmethod is called with an item that is already in the cache (#154); it reverts PR #135 which caused issue #141.What's Changed
Full Changelog: hashicorp/golang-lru@v2.0.5...v2.0.6
v2.0.5: Add expirable LRUCompare Source
This release adds an
expirableLRU package.v2.0.4: Add eviction callback on replaceCompare Source
This release encompasses #135
v2.0.3: Add Values() and separate ARCCompare Source
This release adds the
Values()method on caches and removes ARC from the main module so that it does not need to be imported along with the rest of the module for those concerned around its patent status.The code/API is the same, but is now found at
github.com/hashicorp/golang-lru/arc/v2.v2.0.2: Reduce memory usageCompare Source
Minor fixes to reduce some memory usage
v2.0.1Compare Source
v2.0.0: GenericsCompare Source
This release adds support for generics, and bumps the package version appropriately.
mattn/go-runewidth (github.com/mattn/go-runewidth)
v0.0.28Compare Source
open-telemetry/opentelemetry-collector-contrib (github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector)
v0.159.0Compare Source
🛑 Breaking changes 🛑
all: Removes the kafkatopicsobserver extension after being deprecated for 3 months (#48186)Use the
kafkareceiverwith topic regex support instead.extension/observer: Removes thekafka.topicsendpoint type along with the kafkatopicsobserver extension (#48186)The
observer.KafkaTopicTypeendpoint type and itsobserver.KafkaTopicdetails struct areremoved, as the kafkatopicsobserver was the only observer emitting them. The receivercreator
no longer accepts
type == "kafka.topics"rules or resource attributes for that endpoint type.processor/dynamic_sampling: Reserve the "" prefix in rule names for processor-internal decision labels, and rename the unmatched-drop sentinel to_unmatched(#49311)Configs with rule names starting with "" are now rejected at validation, so user rule
names can never collide with the processor-owned sentinel labels on decision metrics
(
_eviction,_root_span_condition). Theruleattribute value for traces dropped withno matching rule changes from
unmatchedto_unmatchedto follow the same convention.receiver/file_log:ordering_criteria::top_n: 0now means 'match all files' instead of silently behaving liketop_n: 1. (#47444)To restore the previous behavior of matching the first file only, set
ordering_criteria::top_n: 1.🚩 Deprecations 🚩
exporter/azure_monitor: Renameazuremonitortoazure_monitor(#45339)exporter/signalfx: Remove the logic sending trace correlation. (#50166)The trace correlation endpoint is no longer processing requests as the logic has moved
to be handled by the backend. With this change, the exporter continues to accept spans
but will no longer send them to the correlation endpoint.
receiver/file_log: Deprecate the implicitordering_criteria.top_ndefault of 1 whenordering_criteria.sort_byis configured. Enable thefilelog.requireExplicitTopNfeature gate to requiretop_nto be set explicitly. (#47444)When
ordering_criteria.sort_byis configured withouttop_n, the matchersilently defaults
top_nto 1, returning only the single highest-priority fileper poll. With multiple actively-written files this causes severe log
duplication: the other matching files cycle in and out of the tracker and a
Configuration
📅 Schedule: (UTC)
🚦 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.