Update opentelemetry-go monorepo - #428
Conversation
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
ℹ️ Artifact update noticeFile name: go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
|
📝 WalkthroughSummary by CodeRabbit
WalkthroughThe change updates direct and indirect OpenTelemetry dependencies and the indirect Google RPC dependency in ChangesOpenTelemetry dependency updates
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
Comment |
|
[APPROVALNOTIFIER] This PR is APPROVED Approval requirements bypassed by manually added approval. This pull-request has been approved by: The full list of commands accepted by this bot can be found here. The pull request process is described here DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
1 similar comment
|
[APPROVALNOTIFIER] This PR is APPROVED Approval requirements bypassed by manually added approval. This pull-request has been approved by: The full list of commands accepted by this bot can be found here. The pull request process is described here DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
There was a problem hiding this comment.
Actionable comments posted: 2
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@go.mod`:
- Around line 8-14: Add SBOM generation, provenance attestations, and
Sigstore/cosign signing steps to the release workflow before its artifact
publication steps. Update the workflow around the existing archive and checksum
publishing actions in release-cli.yml, ensuring each generated artifact is
covered by the SBOM, provenance, and signature outputs before release.
- Around line 8-14: Update the OpenTelemetry log calls in the relevant provider
code to use attribute.StringValue for SetBody and attribute.String for
AddAttributes instead of the unavailable otel/log String or StringValue symbols.
Preserve the existing log values and behavior while ensuring the code builds
against go.opentelemetry.io/otel/log v0.21.0.
🪄 Autofix
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Path: .coderabbit.yaml
Review profile: CHILL
Plan: Enterprise
Run ID: a5144755-be1c-49c3-b9e3-14bf71e8114c
⛔ Files ignored due to path filters (1)
go.sumis excluded by!**/*.sum,!go.sum
📒 Files selected for processing (1)
go.mod
🔗 Linked repositories identified
CodeRabbit considers these linked repositories for cross-repo context during reviews:
openshift/lightspeed-agentic-sandbox(manual)
| go.opentelemetry.io/otel v1.45.0 | ||
| go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc v0.21.0 | ||
| go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.45.0 | ||
| go.opentelemetry.io/otel/log v0.21.0 | ||
| go.opentelemetry.io/otel/sdk v1.45.0 | ||
| go.opentelemetry.io/otel/sdk/log v0.21.0 | ||
| go.opentelemetry.io/otel/trace v1.45.0 |
There was a problem hiding this comment.
🔒 Security & Privacy | 🟠 Major | 🏗️ Heavy lift
🧩 Analysis chain
🏁 Script executed:
#!/usr/bin/env bash
set -euo pipefail
rg -n \
'go\.opentelemetry\.io/otel|google\.golang\.org/genproto/googleapis/rpc' \
go.mod go.sum
cat >/tmp/osv-queries.json <<'JSON'
{
"queries": [
{"package":{"name":"go.opentelemetry.io/otel","ecosystem":"Go"},"version":"v1.45.0"},
{"package":{"name":"go.opentelemetry.io/otel/log","ecosystem":"Go"},"version":"v0.21.0"},
{"package":{"name":"go.opentelemetry.io/otel/sdk/log","ecosystem":"Go"},"version":"v0.21.0"},
{"package":{"name":"google.golang.org/genproto/googleapis/rpc","ecosystem":"Go"},"version":"v0.0.0-20260803160001-6ac0973c030d"}
]
}
JSON
curl -fsS \
-H 'Content-Type: application/json' \
--data-binary `@/tmp/osv-queries.json` \
https://api.osv.dev/v1/querybatch | jq .
rg -n -i \
'sbom|spdx|cyclonedx|syft|provenance|attestation|sigstore|cosign' \
.github . 2>/dev/null || trueRepository: openshift/lightspeed-agentic-operator
Length of output: 3565
🏁 Script executed:
#!/usr/bin/env bash
set -euo pipefail
printf '%s\n' '--- go.mod context ---'
cat -n go.mod | sed -n '1,115p'
printf '%s\n' '--- workflow and supply-chain references ---'
find .github -type f -maxdepth 3 -print 2>/dev/null | sort
rg -n -i \
'sbom|spdx|cyclonedx|syft|provenance|attestation|sigstore|cosign|license|osv|govulncheck|gosec|dependency' \
.github Makefile Containerfile* Dockerfile* 2>/dev/null || true
printf '%s\n' '--- local module replacement ---'
rg -n '^replace|=>[[:space:]]+\./api|^module ' go.mod api/go.mod 2>/dev/null || true
printf '%s\n' '--- updated-module sums ---'
python3 - <<'PY'
from pathlib import Path
mods = [
"go.opentelemetry.io/otel",
"go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc",
"go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc",
"go.opentelemetry.io/otel/log",
"go.opentelemetry.io/otel/sdk",
"go.opentelemetry.io/otel/sdk/log",
"go.opentelemetry.io/otel/trace",
"go.opentelemetry.io/otel/exporters/otlp/otlptrace",
"go.opentelemetry.io/otel/metric",
"google.golang.org/genproto/googleapis/rpc",
]
lines = Path("go.sum").read_text().splitlines()
for mod in mods:
hits = [line for line in lines if line.startswith(mod + " ")]
print(f"{mod}: {len(hits)} sum entries")
for line in hits:
print(" " + line)
PYRepository: openshift/lightspeed-agentic-operator
Length of output: 9326
🏁 Script executed:
#!/usr/bin/env bash
set -euo pipefail
printf '%s\n' '--- release workflow ---'
cat -n .github/workflows/release-cli.yml
printf '%s\n' '--- all workflows and build metadata ---'
find .github/workflows -maxdepth 1 -type f -print -exec sh -c 'echo "--- $1"; rg -n -i "sbom|spdx|cyclonedx|syft|provenance|attestation|sigstore|cosign|license|osv|govulncheck|gosec|dependency" "$1" || true' _ {} \;
rg -n -i 'sbom|spdx|cyclonedx|syft|provenance|attestation|sigstore|cosign' . --glob '!go.sum' --glob '!vendor/**' 2>/dev/null || trueRepository: openshift/lightspeed-agentic-operator
Length of output: 1609
🏁 Script executed (no clone):
#!/usr/bin/env bash
set -euo pipefail
cat >/tmp/osv-queries.json <<'JSON'
{
"queries": [
{"package":{"name":"go.opentelemetry.io/otel","ecosystem":"Go"},"version":"v1.45.0"},
{"package":{"name":"go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc","ecosystem":"Go"},"version":"v0.21.0"},
{"package":{"name":"go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc","ecosystem":"Go"},"version":"v1.45.0"},
{"package":{"name":"go.opentelemetry.io/otel/log","ecosystem":"Go"},"version":"v0.21.0"},
{"package":{"name":"go.opentelemetry.io/otel/sdk","ecosystem":"Go"},"version":"v1.45.0"},
{"package":{"name":"go.opentelemetry.io/otel/sdk/log","ecosystem":"Go"},"version":"v0.21.0"},
{"package":{"name":"go.opentelemetry.io/otel/trace","ecosystem":"Go"},"version":"v1.45.0"},
{"package":{"name":"go.opentelemetry.io/otel/exporters/otlp/otlptrace","ecosystem":"Go"},"version":"v1.45.0"},
{"package":{"name":"go.opentelemetry.io/otel/metric","ecosystem":"Go"},"version":"v1.45.0"},
{"package":{"name":"google.golang.org/genproto/googleapis/api","ecosystem":"Go"},"version":"v0.0.0-20260803160001-6ac0973c030d"},
{"package":{"name":"google.golang.org/genproto/googleapis/rpc","ecosystem":"Go"},"version":"v0.0.0-20260803160001-6ac0973c030d"}
]
}
JSON
curl -fsS \
-H 'Content-Type: application/json' \
--data-binary `@/tmp/osv-queries.json` \
https://api.osv.dev/v1/querybatch |
jq -r '
.results
| to_entries[]
| "\(.key): " + (if .value.vulnerabilities then
(.value.vulnerabilities | map(.id) | join(", "))
else "no vulnerabilities reported"
end)
'
Length of output: 467
Add SBOM, provenance, and Sigstore signing to the release workflow.
go.sum contains checksums for the updated modules, and OSV reports no vulnerabilities. .github/workflows/release-cli.yml only publishes archives and checksums. Add SBOM generation, provenance attestations, and Sigstore/cosign signatures before publishing artifacts.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@go.mod` around lines 8 - 14, Add SBOM generation, provenance attestations,
and Sigstore/cosign signing steps to the release workflow before its artifact
publication steps. Update the workflow around the existing archive and checksum
publishing actions in release-cli.yml, ensuring each generated artifact is
covered by the SBOM, provenance, and signature outputs before release.
Source: Path instructions
🗄️ Data Integrity & Integration | 🟠 Major | ⚡ Quick win
🧩 Analysis chain
🏁 Script executed:
#!/usr/bin/env bash
set -euo pipefail
rg -n --glob '*.go' \
'go\.opentelemetry\.io/otel/(log|sdk/log)|go\.opentelemetry\.io/otel/exporters/otlp/otlplog' .
rg -n --glob '*.go' '\b(Kind|Value|KeyValue)\b' .Repository: openshift/lightspeed-agentic-operator
Length of output: 12731
🏁 Script executed:
#!/usr/bin/env bash
set -euo pipefail
printf '%s\n' '--- go.mod ---'
cat -n go.mod | sed -n '1,120p'
printf '%s\n' '--- otel_provider.go ---'
cat -n pkg/configuration/otel_provider.go
printf '%s\n' '--- OpenTelemetry log symbols and calls ---'
rg -n --glob '*.go' \
'otellog|sdklog|otlplog|LoggerProvider|NewLogger|Emit|Record|Severity|attribute\.KeyValue|attribute\.Value' \
pkg controller cli test || true
printf '%s\n' '--- module files and dependency metadata ---'
git ls-files '*go.mod' '*go.sum' '.github/workflows/*' 'Makefile' 'Dockerfile*' | sortRepository: openshift/lightspeed-agentic-operator
Length of output: 44284
🏁 Script executed (no clone):
#!/usr/bin/env bash
set -euo pipefail
base='https://raw.githubusercontent.com/open-telemetry/opentelemetry-go/v0.21.0/log'
printf '%s\n' '--- log package files ---'
curl -fsSL "$base/value.go" | sed -n '1,240p'
curl -fsSL "$base/record.go" | sed -n '1,220p'
curl -fsSL "$base/logger.go" | sed -n '1,160p'
printf '%s\n' '--- v0.21.0 module metadata ---'
curl -fsSL 'https://raw.githubusercontent.com/open-telemetry/opentelemetry-go/v0.21.0/log/go.mod' | sed -n '1,80p'
Length of output: 202
🏁 Script executed (no clone):
#!/usr/bin/env bash
set -euo pipefail
curl -fsSL 'https://api.github.com/repos/open-telemetry/opentelemetry-go/git/trees/v0.21.0?recursive=1' |
jq -r '.tree[].path' |
rg '(^|/)(log|record|value|logger)(\.go)?$|/log/' |
head -80
Length of output: 174
🏁 Script executed (no clone):
#!/usr/bin/env bash
set -euo pipefail
for ref in 'log/v0.21.0' 'v1.45.0' 'v0.20.0'; do
printf '%s\n' "--- $ref ---"
url="https://raw.githubusercontent.com/open-telemetry/opentelemetry-go/$ref/log"
for file in value.go keyvalue.go record.go logger.go; do
status=$(curl -sS -o "/tmp/otel-$file" -w '%{http_code}' "$url/$file")
printf '%s %s\n' "$file" "$status"
if [ "$status" = 200 ]; then
sed -n '1,180p' "/tmp/otel-$file"
fi
done
done
Length of output: 22644
🏁 Script executed (no clone):
#!/usr/bin/env bash
set -euo pipefail
archive='https://codeload.github.com/open-telemetry/opentelemetry-go/tar.gz/refs/tags/log/v0.21.0'
printf '%s\n' '--- log module source files ---'
curl -fsSL "$archive" |
tar -tzf - |
rg '/log/.*\.go$' |
sed -n '1,120p'
printf '%s\n' '--- exported constructors and removed symbols ---'
curl -fsSL "$archive" |
tar -xOz --wildcards '*/log/*.go' 2>/dev/null |
rg -n 'func (String|StringValue|Int|Bool|Key|New|Value)|type (Value|Kind|KeyValue)|attribute\.(Value|KeyValue)' || true
Length of output: 19773
🏁 Script executed:
#!/usr/bin/env bash
set -euo pipefail
python3 - <<'PY'
import io
import re
import tarfile
import urllib.request
from pathlib import Path
repo_source = Path("pkg/configuration/otel_provider.go").read_text()
archive_url = "https://codeload.github.com/open-telemetry/opentelemetry-go/tar.gz/refs/tags/log/v0.21.0"
archive = tarfile.open(fileobj=io.BytesIO(urllib.request.urlopen(archive_url).read()), mode="r:gz")
go_sources = []
for member in archive.getmembers():
if member.name.endswith(".go") and "/log/" in member.name:
f = archive.extractfile(member)
if f:
go_sources.append(f.read().decode())
otel_exports = set(re.findall(r"(?m)^func\s+([A-Za-z_]\w*)\s*\(", "\n".join(go_sources)))
calls = sorted(set(re.findall(r"\botellog\.([A-Za-z_]\w*)", repo_source)))
print("otel.log v0.21.0 otellog calls:", calls)
print("missing otellog exports:", [name for name in calls if name not in otel_exports])
print("Record.SetBody parameter type is attribute.Value:",
bool(re.search(r"func \(r \*Record\) SetBody\(v attribute\.Value\)", "\n".join(go_sources))))
print("Record.AddAttributes parameter type is attribute.KeyValue:",
bool(re.search(r"func \(r \*Record\) AddAttributes\(attrs \.\.\.attribute\.KeyValue\)", "\n".join(go_sources))))
PYRepository: openshift/lightspeed-agentic-operator
Length of output: 2461
🏁 Script executed:
#!/usr/bin/env bash
set -euo pipefail
curl -fsSL 'https://codeload.github.com/open-telemetry/opentelemetry-go/tar.gz/refs/tags/log/v0.21.0' |
python3 - <<'PY'
import io
import re
import sys
import tarfile
from pathlib import Path
repo_source = Path("pkg/configuration/otel_provider.go").read_text()
archive = tarfile.open(fileobj=io.BytesIO(sys.stdin.buffer.read()), mode="r:gz")
sources = []
for member in archive.getmembers():
if member.name.endswith(".go") and "/log/" in member.name:
f = archive.extractfile(member)
if f:
sources.append(f.read().decode())
source = "\n".join(sources)
exports = set(re.findall(r"(?m)^func\s+([A-Za-z_]\w*)\s*\(", source))
calls = sorted(set(re.findall(r"\botellog\.([A-Za-z_]\w*)", repo_source)))
print("otel.log v0.21.0 calls:", calls)
print("missing otellog exports:", [name for name in calls if name not in exports])
print("SetBody uses attribute.Value:", bool(re.search(r"SetBody\(v attribute\.Value\)", source)))
print("AddAttributes uses attribute.KeyValue:",
bool(re.search(r"AddAttributes\(attrs \.\.\.attribute\.KeyValue\)", source)))
PYRepository: openshift/lightspeed-agentic-operator
Length of output: 1497
🏁 Script executed:
#!/usr/bin/env bash
set -euo pipefail
curl -fsSL 'https://codeload.github.com/open-telemetry/opentelemetry-go/tar.gz/refs/tags/log/v0.21.0' -o /tmp/otel-log.tar.gz
python3 -c '
import io
import re
import tarfile
from pathlib import Path
repo_source = Path("pkg/configuration/otel_provider.go").read_text()
with open("/tmp/otel-log.tar.gz", "rb") as f:
archive = tarfile.open(fileobj=io.BytesIO(f.read()), mode="r:gz")
sources = []
for member in archive.getmembers():
if member.name.endswith(".go") and "/log/" in member.name:
f = archive.extractfile(member)
if f:
sources.append(f.read().decode())
source = "\n".join(sources)
exports = set(re.findall(r"(?m)^func\s+([A-Za-z_]\w*)\s*\(", source))
calls = sorted(set(re.findall(r"\botellog\.([A-Za-z_]\w*)", repo_source)))
print("otel.log v0.21.0 calls:", calls)
print("missing otellog exports:", [name for name in calls if name not in exports])
print("SetBody uses attribute.Value:", bool(re.search(r"SetBody\(v attribute\.Value\)", source)))
print("AddAttributes uses attribute.KeyValue:",
bool(re.search(r"AddAttributes\(attrs \.\.\.attribute\.KeyValue\)", source)))
'Repository: openshift/lightspeed-agentic-operator
Length of output: 385
Update the OpenTelemetry log calls before merging.
go.opentelemetry.io/otel/log v0.21.0 does not export String or StringValue. Use attribute.StringValue for SetBody and attribute.String for AddAttributes in pkg/configuration/otel_provider.go:329-333; otherwise the build fails.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@go.mod` around lines 8 - 14, Update the OpenTelemetry log calls in the
relevant provider code to use attribute.StringValue for SetBody and
attribute.String for AddAttributes instead of the unavailable otel/log String or
StringValue symbols. Preserve the existing log values and behavior while
ensuring the code builds against go.opentelemetry.io/otel/log v0.21.0.
Source: MCP tools
|
@red-hat-konflux[bot]: The following test failed, say
Full PR test history. Your PR dashboard. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here. |
This PR contains the following updates:
v1.44.0→v1.45.0v0.20.0→v0.21.0v1.44.0→v1.45.0v1.44.0→v1.45.0v0.20.0→v0.21.0v1.44.0→v1.45.0v1.44.0→v1.45.0v0.20.0→v0.21.0v1.44.0→v1.45.0Warning
Some dependencies could not be looked up. Check the warning logs for more information.
Release Notes
open-telemetry/opentelemetry-go (go.opentelemetry.io/otel)
v1.45.0: /v0.67.0/v0.21.0/v0.0.18Compare Source
Overview
Added
BatchProcessoringo.opentelemetry.io/otel/sdk/log. (#7124)WithUnsafeAttributesno-copy attribute option togo.opentelemetry.io/otel/metric/xfor future performance improvements. This API is a work in progress. (#8251)MapandMapValuefunctions for the newMAPattribute type ingo.opentelemetry.io/otel/attribute. (#8445)MAPattributes ingo.opentelemetry.io/otel/exporters/otlp/otlptrace. (#8453)MAPattributes ingo.opentelemetry.io/otel/exporters/otlp/otlplog. (#8453)MAPattributes ingo.opentelemetry.io/otel/exporters/otlp/otlpmetric. (#8453)MAPattributes ingo.opentelemetry.io/otel/exporters/zipkin. (#8453)AttributeValueLengthLimitrecursively to values contained inattribute.MAPattributes ingo.opentelemetry.io/otel/sdk/trace. (#8454)attribute.MAPvalues ingo.opentelemetry.io/otel/sdk/resourceusing last-value-wins semantics. (#8471)attribute.MAPvalues in instrumentation scope attributes ingo.opentelemetry.io/otel/sdk/logusing last-value-wins semantics. (#8471)attribute.MAPvalues in span, event, link, and instrumentation scope attributes ingo.opentelemetry.io/otel/sdk/traceusing last-value-wins semantics. (#8471)attribute.MAPvalues in measurement and instrumentation scope attributes ingo.opentelemetry.io/otel/sdk/metricusing last-value-wins semantics. (#8471)WithAllowKeyDuplicationingo.opentelemetry.io/otel/sdk/logto disable duplicate-key removal inattribute.MAPvalues for instrumentation scope attributes. (#8471)go.opentelemetry.io/otel/semconv/v1.42.0package.The package contains semantic conventions from the
v1.42.0version of the OpenTelemetry Semantic Conventions.See the migration documentation for information on how to upgrade from
go.opentelemetry.io/otel/semconv/v1.41.0. (#8484)WithoutPanicRecordingas aTracerProviderOptioningo.opentelemetry.io/otel/sdk/traceto disable exception event recording for panics. (#8532)go.opentelemetry.io/otel/semconv/v1.43.0package.The package contains semantic conventions from the
v1.43.0version of the OpenTelemetry Semantic Conventions.See the migration documentation for information on how to upgrade from
go.opentelemetry.io/otel/semconv/v1.42.0. (#8628)Changed
HistogramReservoiringo.opentelemetry.io/otel/sdk/metric/exemplarnow uses a time-unbiased sampling algorithm for exemplars. (#8306)go.opentelemetry.io/otel/attribute.Valueandgo.opentelemetry.io/otel/attribute.KeyValuefor log bodies and attributes ingo.opentelemetry.io/otel/log,go.opentelemetry.io/otel/log/logtest,go.opentelemetry.io/otel/sdk/log, andgo.opentelemetry.io/otel/sdk/log/logtest. (#8490)go.opentelemetry.io/otel/attribute.ValueJSON ingo.opentelemetry.io/otel/exporters/stdout/stdoutlog. (#8490)BOOLSLICE,INT64SLICE,FLOAT64SLICE, andSTRINGSLICEattribute values by avoiding reflection for short slices ingo.opentelemetry.io/otel/attribute. (#8511)WithEndpointURLingo.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttpno longer appends the default signal path when an endpoint URL has no path, making the behavior consistent withgo.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttpand with setting the endpoint throughOTEL_EXPORTER_OTLP_METRICS_ENDPOINT. If the URL has no path component, the root path (/) is used. UseWithEndpointURL(url.JoinPath(endpoint, "/v1/metrics"))to preserve the previous behavior. (#8538)WithEndpointURLingo.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttpno longer appends the default signal path when an endpoint URL has no path, making the behavior consistent withgo.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttpand with setting the endpoint throughOTEL_EXPORTER_OTLP_TRACES_ENDPOINT. If the URL has no path component, the root path (/) is used. UseWithEndpointURL(url.JoinPath(endpoint, "/v1/traces"))to preserve the previous behavior. (#8538)Deprecated
WithExportBufferSizeingo.opentelemetry.io/otel/sdk/log. The option remains available for source compatibility but no longer affects behavior;BatchProcessorno longer maintains a separate export-request buffer. (#8620)Removed
Kind,Value,KeyValue, their constructors, and attribute conversion helpers fromgo.opentelemetry.io/otel/log. (#8490)AttributeValueLengthLimitandAttributeCountLimitfields fromRecordFactoryingo.opentelemetry.io/otel/sdk/log/logtest; records produced by the factory now keep attribute limits disabled so test code can append exact attributes. (#8556)Fixed
go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc.go.opentelemetry.io/otel/bridge/opentracingwhen OpenTracing baggage is propagated concurrently withSpan.SetBaggageItem.FixedSizeReservoiringo.opentelemetry.io/otel/sdk/metric/exemplarthat prevented the first exemplar from being sampled after the reservoir was filled. (#8309)Retry-Afterheader values as seconds instead of nanoseconds when retrying OTLP HTTP exports ingo.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp,go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp, andgo.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp. (#8383)Reservoirimplementation ingo.opentelemetry.io/otel/sdk/metric/exemplar, where storing the fullcontext.Contextpinned large objects such as gRPC transport buffers. (#8389)go.opentelemetry.io/otel/attribute. (#8402)go.opentelemetry.io/otel/sdk/metricaggregation to avoid leaking stale sum, minimum, and maximum values when they are disabled in subsequent collections. (#8403)go.opentelemetry.io/otel/exporters/prometheus. (#8404)Retry-Afterheader when retrying OTLP HTTP exports ingo.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp,go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp, andgo.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp. (#8417)BucketCountsandExemplarsslices acrossCollectcycles in the cumulative histogram aggregation ingo.opentelemetry.io/otel/sdk/metric. (#8428)go.opentelemetry.io/otel/exporters/stdout/stdouttraceself-observability to recorderror.typeon the operation-duration histogram when theexportedSpansmetric is disabled. (#8432)go.opentelemetry.io/otel/sdk/trace,go.opentelemetry.io/otel/exporters/otlp/otlptrace,go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc,go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp, andgo.opentelemetry.io/otel/exporters/zipkin. (#8438)go.opentelemetry.io/otel/codes. (#8497)go.opentelemetry.io/otel/logthatLogger.Enabledshould be checked for every log emission because its result may change over time. (#8565)go.opentelemetry.io/otel/sdk/log. (#8566)WithAttributeCountLimit(0)andOTEL_LOGRECORD_ATTRIBUTE_COUNT_LIMIT=0discard all log record attributes ingo.opentelemetry.io/otel/sdk/log. (#8570)Recordmethods ofFloat64HistogramandInt64Histogramingo.opentelemetry.io/otel/metricexpect non-negative values. (#8574)go.opentelemetry.io/otel/logthatLoggerProviderimplementations should retain an emptyLoggername instead of replacing it with a default. (#8587)go.opentelemetry.io/otel/sdk/logcall exporterForceFlushduringShutdown. (#8599)go.opentelemetry.io/otel/bridge/opentracingwhen OpenTracing baggage is propagated concurrently withSpan.SetBaggageItem. (GHSA-42cj-99w8-cp2p)go.opentelemetry.io/otel/sdk/logfrom overlapping with processor shutdown or running afterLoggerProvidershutdown. (#8608)BatchProcessoringo.opentelemetry.io/otel/sdk/logfrom busy-spinning under exporter backpressure and serialize dequeue, export, force-flush, and shutdown work in one worker. (#8620)BatchProcessoringo.opentelemetry.io/otel/sdk/logreturn errors encountered while draining records duringForceFlushandShutdown, while continuing to attempt later batches as long as the request context remains valid. (#8620)BatchProcessormaximum export batch size ingo.opentelemetry.io/otel/sdk/logat or below the configured maximum queue size. (#8620)What's Changed
bc171b2by @renovate[bot] in #8405c761662by @renovate[bot] in #83846cf7526by @renovate[bot] in #84080ec5bd2by @renovate[bot] in #84194308a22by @renovate[bot] in #844035bcb73by @renovate[bot] in #84367ab31c2by @renovate[bot] in #8447fb80ec8by @renovate[bot] in #84442399af7by @renovate[bot] in #846072dfd24by @renovate[bot] in #846262b3387by @renovate[bot] in #84634de325eby @renovate[bot] in #84669b6dc03by @renovate[bot] in #847487f3d3eby @renovate[bot] in #8483a6991f1by @renovate[bot] in #8482e028baeby @renovate[bot] in #8493semconv/v1.42.0by @MrAlias in #8484f39628cby @renovate[bot] in #8498b703f56by @renovate[bot] in #8502c961bd5by @renovate[bot] in #851259b4966by @renovate[bot] in #8520b709645by @renovate[bot] in #8523925bb5dby @renovate[bot] in #8533399602fby @renovate[bot] in #8539f5a850fby @renovate[bot] in #8561f0a9213by @renovate[bot] in #85674bee191by @renovate[bot] in #85974fbb8e6by @renovate[bot] in #8600142c488by @renovate[bot] in #8603f5fc221by @renovate[bot] in #8604651ba3fby @renovate[bot] in #8616dad6939by @renovate[bot] in #8582e75dac1by @renovate[bot] in #8614bdb8988by @renovate[bot] in #86273131b4cby @renovate[bot] in #86247cc6674by @renovate[bot] in #8637764159dby @renovate[bot] in #86330afa2a6by @renovate[bot] in [#863Configuration
📅 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.
To execute skipped test pipelines write comment
/ok-to-test.Documentation
Find out how to configure dependency updates in MintMaker documentation or see all available configuration options in Renovate documentation.