chore: Update non-major dependencies - #1533
Merged
Merged
Conversation
Contributor
Author
ℹ️ Artifact update noticeFile name: go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
|
renovate
Bot
force-pushed
the
renovate/non-major-dependencies
branch
from
August 10, 2026 19:33
7a690cd to
55ebae4
Compare
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #1533 +/- ##
==========================================
- Coverage 69.80% 69.79% -0.01%
==========================================
Files 409 409
Lines 31388 31386 -2
==========================================
- Hits 21909 21907 -2
Misses 8445 8445
Partials 1034 1034 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
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
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.
Summary
go.opentelemetry.io/otelv1.44.0 → v1.45.0,otelgrpc/otelhttpv0.69.0 → v0.70.0, and the b3 propagator v1.44.0 → v1.45.0.otel/logvalue API (log.Value,log.KeyValue,log.StringValue, …) ontogo.opentelemetry.io/otel/attributetypes, whichlog.Recordnow uses directly inotel/logv0.21.0.Why
Renovate bumped
go.opentelemetry.io/otelto v1.45.0, which pulls ingo.opentelemetry.io/otel/logv0.21.0. That release removed the log package's value API —Value,KeyValue,StringValue,MapValue,SliceValue,BytesValue, and theString/Int64/Float64/Map/Sliceconstructors are gone, andRecord.SetBody/AddAttributespluslogtest.Recordnow useattribute.Value/attribute.KeyValuefromgo.opentelemetry.io/otel/attribute. The telemetry log instrumentation (telemetry/instrumentation/log) referenced the removed types, so the repository no longer compiled.The handler and its value mapper now build
attribute.Value/attribute.KeyValuedirectly (BytesValuebecameByteSliceValue, dynamic keys are wrapped inattribute.Key, and the now-redundantValueFromAttributebranch was dropped), keeping the exported OTel log records identical. Applications that route logs through an"otel"channel keep working unchanged after the upgrade.