Skip to content

Commit dedf738

Browse files
fix(deps): Update module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp to v1.43.0 [SECURITY] (#636)
> ℹ️ **Note** > > This PR body was truncated due to platform limits. This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp](https://redirect.github.com/open-telemetry/opentelemetry-go) | `v1.24.0` → `v1.43.0` | ![age](https://developer.mend.io/api/mc/badges/age/go/go.opentelemetry.io%2fotel%2fexporters%2fotlp%2fotlptrace%2fotlptracehttp/v1.43.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/go/go.opentelemetry.io%2fotel%2fexporters%2fotlp%2fotlptrace%2fotlptracehttp/v1.24.0/v1.43.0?slim=true) | ### GitHub Vulnerability Alerts #### [CVE-2026-39882](https://redirect.github.com/open-telemetry/opentelemetry-go/security/advisories/GHSA-w8rr-5gcm-pp58) overview: this report shows that the otlp HTTP exporters (traces/metrics/logs) read the full HTTP response body into an in-memory `bytes.Buffer` without a size cap. this is exploitable for memory exhaustion when the configured collector endpoint is attacker-controlled (or a network attacker can mitm the exporter connection). severity HIGH not claiming: this is a remote dos against every default deployment. claiming: if the exporter sends traces to an untrusted collector endpoint (or over a network segment where mitm is realistic), that endpoint can crash the process via a large response body. callsite (pinned): - exporters/otlp/otlptrace/otlptracehttp/client.go:199 - exporters/otlp/otlptrace/otlptracehttp/client.go:230 - exporters/otlp/otlpmetric/otlpmetrichttp/client.go:170 - exporters/otlp/otlpmetric/otlpmetrichttp/client.go:201 - exporters/otlp/otlplog/otlploghttp/client.go:190 - exporters/otlp/otlplog/otlploghttp/client.go:221 permalinks (pinned): - https://github.com/open-telemetry/opentelemetry-go/blob/248da958375e4dfb4a1105645107be3ef04b1c59/exporters/otlp/otlptrace/otlptracehttp/client.go#L199 - https://github.com/open-telemetry/opentelemetry-go/blob/248da958375e4dfb4a1105645107be3ef04b1c59/exporters/otlp/otlptrace/otlptracehttp/client.go#L230 - https://github.com/open-telemetry/opentelemetry-go/blob/248da958375e4dfb4a1105645107be3ef04b1c59/exporters/otlp/otlpmetric/otlpmetrichttp/client.go#L170 - https://github.com/open-telemetry/opentelemetry-go/blob/248da958375e4dfb4a1105645107be3ef04b1c59/exporters/otlp/otlpmetric/otlpmetrichttp/client.go#L201 - https://github.com/open-telemetry/opentelemetry-go/blob/248da958375e4dfb4a1105645107be3ef04b1c59/exporters/otlp/otlplog/otlploghttp/client.go#L190 - https://github.com/open-telemetry/opentelemetry-go/blob/248da958375e4dfb4a1105645107be3ef04b1c59/exporters/otlp/otlplog/otlploghttp/client.go#L221 root cause: each exporter client reads `resp.Body` using `io.Copy(&respData, resp.Body)` into a `bytes.Buffer` on both success and error paths, with no upper bound. impact: a malicious collector can force large transient heap allocations during export (peak memory scales with attacker-chosen response size) and can potentially crash the instrumented process (oom). affected component: - go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp - go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp - go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp repro (local-only): ```bash unzip poc.zip -d poc cd poc make canonical resp_bytes=33554432 chunk_delay_ms=0 ``` expected output contains: ``` [CALLSITE_HIT]: otlptracehttp.UploadTraces::io.Copy(resp.Body) [PROOF_MARKER]: resp_bytes=33554432 peak_alloc_bytes=118050512 ``` control (same env, patched target): ```bash unzip poc.zip -d poc cd poc make control resp_bytes=33554432 chunk_delay_ms=0 ``` expected control output contains: ``` [CALLSITE_HIT]: otlptracehttp.UploadTraces::io.Copy(resp.Body) [NC_MARKER]: resp_bytes=33554432 peak_alloc_bytes=512232 ``` attachments: poc.zip (attached) [PR_DESCRIPTION.md](https://redirect.github.com/user-attachments/files/25564272/PR_DESCRIPTION.md) [attack_scenario.md](https://redirect.github.com/user-attachments/files/25564273/attack_scenario.md) [poc.zip](https://redirect.github.com/user-attachments/files/25564271/poc.zip) Fixed in: [https://github.com/open-telemetry/opentelemetry-go/pull/8108](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8108) --- ### Release Notes <details> <summary>open-telemetry/opentelemetry-go (go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp)</summary> ### [`v1.43.0`](https://redirect.github.com/open-telemetry/opentelemetry-go/releases/tag/v1.43.0): /v0.65.0/v0.19.0 [Compare Source](https://redirect.github.com/open-telemetry/opentelemetry-go/compare/v1.42.0...v1.43.0) #### Added - Add `IsRandom` and `WithRandom` on `TraceFlags`, and `IsRandom` on `SpanContext` in `go.opentelemetry.io/otel/trace` for [W3C Trace Context Level 2 Random Trace ID Flag](https://www.w3.org/TR/trace-context-2/#random-trace-id-flag) support. ([#&#8203;8012](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8012)) - Add service detection with `WithService` in `go.opentelemetry.io/otel/sdk/resource`. ([#&#8203;7642](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/7642)) - Add `DefaultWithContext` and `EnvironmentWithContext` in `go.opentelemetry.io/otel/sdk/resource` to support plumbing `context.Context` through default and environment detectors. ([#&#8203;8051](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8051)) - Support attributes with empty value (`attribute.EMPTY`) in `go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc`. ([#&#8203;8038](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8038)) - Support attributes with empty value (`attribute.EMPTY`) in `go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc`. ([#&#8203;8038](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8038)) - Support attributes with empty value (`attribute.EMPTY`) in `go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc`. ([#&#8203;8038](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8038)) - Support attributes with empty value (`attribute.EMPTY`) in `go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp`. ([#&#8203;8038](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8038)) - Support attributes with empty value (`attribute.EMPTY`) in `go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp`. ([#&#8203;8038](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8038)) - Support attributes with empty value (`attribute.EMPTY`) in `go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp`. ([#&#8203;8038](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8038)) - Support attributes with empty value (`attribute.EMPTY`) in `go.opentelemetry.io/otel/sdk/metric/metricdata/metricdatatest`. ([#&#8203;8038](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8038)) - Add support for per-series start time tracking for cumulative metrics in `go.opentelemetry.io/otel/sdk/metric`. Set `OTEL_GO_X_PER_SERIES_START_TIMESTAMPS=true` to enable. ([#&#8203;8060](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8060)) - Add `WithCardinalityLimitSelector` for metric reader for configuring cardinality limits specific to the instrument kind. ([#&#8203;7855](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/7855)) #### Changed - Introduce the `EMPTY` Type in `go.opentelemetry.io/otel/attribute` to reflect that an empty value is now a valid value, with `INVALID` remaining as a deprecated alias of `EMPTY`. ([#&#8203;8038](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8038)) - Refactor slice handling in `go.opentelemetry.io/otel/attribute` to optimize short slice values with fixed-size fast paths. ([#&#8203;8039](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8039)) - Improve performance of span metric recording in `go.opentelemetry.io/otel/sdk/trace` by returning early if self-observability is not enabled. ([#&#8203;8067](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8067)) - Improve formatting of metric data diffs in `go.opentelemetry.io/otel/sdk/metric/metricdata/metricdatatest`. ([#&#8203;8073](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8073)) #### Deprecated - Deprecate `INVALID` in `go.opentelemetry.io/otel/attribute`. Use `EMPTY` instead. ([#&#8203;8038](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8038)) #### Fixed - Return spec-compliant `TraceIdRatioBased` description. This is a breaking behavioral change, but it is necessary to make the implementation [spec-compliant](https://opentelemetry.io/docs/specs/otel/trace/sdk/#traceidratiobased). ([#&#8203;8027](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8027)) - Fix a race condition in `go.opentelemetry.io/otel/sdk/metric` where the lastvalue aggregation could collect the value 0 even when no zero-value measurements were recorded. ([#&#8203;8056](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8056)) - Limit HTTP response body to 4 MiB in `go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp` to mitigate excessive memory usage caused by a misconfigured or malicious server. Responses exceeding the limit are treated as non-retryable errors. ([#&#8203;8108](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8108)) - Limit HTTP response body to 4 MiB in `go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp` to mitigate excessive memory usage caused by a misconfigured or malicious server. Responses exceeding the limit are treated as non-retryable errors. ([#&#8203;8108](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8108)) - Limit HTTP response body to 4 MiB in `go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp` to mitigate excessive memory usage caused by a misconfigured or malicious server. Responses exceeding the limit are treated as non-retryable errors. ([#&#8203;8108](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8108)) - `WithHostID` detector in `go.opentelemetry.io/otel/sdk/resource` to use full path for `kenv` command on BSD. ([#&#8203;8113](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8113)) - Fix missing `request.GetBody` in `go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp` to correctly handle HTTP2 GOAWAY frame. ([#&#8203;8096](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8096)) #### What's Changed - chore(deps): update module github.com/jgautheron/goconst to v1.9.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8014](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8014) - fix(deps): update github.com/opentracing-contrib/go-grpc/test digest to [`190d7d4`](https://redirect.github.com/open-telemetry/opentelemetry-go/commit/190d7d4) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8013](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8013) - chore(deps): update module go.yaml.in/yaml/v2 to v2.4.4 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8016](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8016) - fix(deps): update module github.com/golangci/golangci-lint/v2 to v2.11.1 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8011](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8011) - fix(deps): update golang.org/x by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8023](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8023) - fix(deps): update module github.com/golangci/golangci-lint/v2 to v2.11.2 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8020](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8020) - chore(deps): update module github.com/mattn/go-runewidth to v0.0.21 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8017](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8017) - chore(deps): update module codeberg.org/chavacava/garif to v0.2.1 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8019](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8019) - Add doc on how to upgrade to new semconv by [@&#8203;jmmcorreia](https://redirect.github.com/jmmcorreia) in [#&#8203;7807](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7807) - fix(deps): update module go.opentelemetry.io/proto/otlp to v1.10.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8028](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8028) - resource: add WithService detector option by [@&#8203;codeboten](https://redirect.github.com/codeboten) in [#&#8203;7642](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7642) - fix(deps): update googleapis to [`a57be14`](https://redirect.github.com/open-telemetry/opentelemetry-go/commit/a57be14) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8031](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8031) - fix(deps): update module github.com/golangci/golangci-lint/v2 to v2.11.3 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8032](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8032) - chore(deps): update module github.com/prometheus/procfs to v0.20.1 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8034](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8034) - chore(deps): update github.com/securego/gosec/v2 digest to [`8895462`](https://redirect.github.com/open-telemetry/opentelemetry-go/commit/8895462) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8036](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8036) - chore(deps): update module github.com/sonatard/noctx to v0.5.1 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8040](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8040) - chore(deps): update github.com/securego/gosec/v2 digest to [`6e66a94`](https://redirect.github.com/open-telemetry/opentelemetry-go/commit/6e66a94) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8043](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8043) - docs(otlp): document HTTP/protobuf insecure env vars by [@&#8203;marcschaeferger](https://redirect.github.com/marcschaeferger) in [#&#8203;8037](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8037) - Rebuild semconvkit and verifyreadmes on changes by [@&#8203;MrAlias](https://redirect.github.com/MrAlias) in [#&#8203;7995](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7995) - chore(sdk/trace): join errors properly by [@&#8203;ash2k](https://redirect.github.com/ash2k) in [#&#8203;8030](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8030) - fix(deps): update googleapis to [`84a4fc4`](https://redirect.github.com/open-telemetry/opentelemetry-go/commit/84a4fc4) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8048](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8048) - attribute: change INVALID Type to EMPTY and mark INVALID as deprecated by [@&#8203;pellared](https://redirect.github.com/pellared) in [#&#8203;8038](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8038) - fix(sdk/trace): return spec-compliant TraceIdRatioBased description by [@&#8203;ash2k](https://redirect.github.com/ash2k) in [#&#8203;8027](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8027) - linting: add depguard rule to enforce semconv version by [@&#8203;ajuijas](https://redirect.github.com/ajuijas) in [#&#8203;8041](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8041) - chore(deps): update actions/download-artifact action to v8.0.1 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8046](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8046) - chore(deps): update github.com/securego/gosec/v2 digest to [`b7b2c7b`](https://redirect.github.com/open-telemetry/opentelemetry-go/commit/b7b2c7b) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8044](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8044) - fix(deps): update golang.org/x by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8045](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8045) - Optimize attribute slice conversion by [@&#8203;MrAlias](https://redirect.github.com/MrAlias) in [#&#8203;8039](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8039) - Add benchmarks for end-to-end metrics SDK usage by [@&#8203;dashpole](https://redirect.github.com/dashpole) in [#&#8203;7768](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7768) - fix(deps): update golang.org/x by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8052](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8052) - chore(deps): update github.com/securego/gosec/v2 digest to [`befce8d`](https://redirect.github.com/open-telemetry/opentelemetry-go/commit/befce8d) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8053](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8053) - trace: add Random Trace ID Flag by [@&#8203;yuanyuanzhao3](https://redirect.github.com/yuanyuanzhao3) in [#&#8203;8012](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8012) - Improve aggregation concurrent safe tests by [@&#8203;dashpole](https://redirect.github.com/dashpole) in [#&#8203;8021](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8021) - Add tests for exponential histogram concurrent-safety edge-cases by [@&#8203;dashpole](https://redirect.github.com/dashpole) in [#&#8203;8024](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8024) - exphist: replace min, max, sum, and count with atomics by [@&#8203;dashpole](https://redirect.github.com/dashpole) in [#&#8203;8025](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8025) - chore(deps): update github.com/securego/gosec/v2 digest to [`c2dfcec`](https://redirect.github.com/open-telemetry/opentelemetry-go/commit/c2dfcec) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8055](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8055) - chore(deps): update otel/weaver docker tag to v0.22.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8058](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8058) - chore(deps): update github.com/securego/gosec/v2 digest to [`dec52c4`](https://redirect.github.com/open-telemetry/opentelemetry-go/commit/dec52c4) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8063](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8063) - chore(deps): update otel/weaver docker tag to v0.22.1 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8061](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8061) - chore(deps): update github/codeql-action action to v4.33.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8065](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8065) - Fix race in the lastvalue aggregation where 0 could be observed by [@&#8203;dashpole](https://redirect.github.com/dashpole) in [#&#8203;8056](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8056) - chore(deps): update github.com/securego/gosec/v2 digest to [`744bfb5`](https://redirect.github.com/open-telemetry/opentelemetry-go/commit/744bfb5) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8064](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8064) - Migrate to new bare metal runner (Ubuntu 24) by [@&#8203;trask](https://redirect.github.com/trask) in [#&#8203;8068](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8068) - sdk/resource: add WithContext variants for Default and Environment ([#&#8203;7808](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/7808)) by [@&#8203;ajuijas](https://redirect.github.com/ajuijas) in [#&#8203;8051](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8051) - Use atomics for exponential histogram buckets by [@&#8203;dashpole](https://redirect.github.com/dashpole) in [#&#8203;8057](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8057) - Added the `internal/observ` package to stdoutlog by [@&#8203;yumosx](https://redirect.github.com/yumosx) in [#&#8203;7735](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7735) - Add support for the development per-series starttime feature by [@&#8203;dashpole](https://redirect.github.com/dashpole) in [#&#8203;8060](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8060) - sdk/trace/internal/observ: guard SpanStarted and spanLive with Enabled by [@&#8203;kouji-yoshimura](https://redirect.github.com/kouji-yoshimura) in [#&#8203;8067](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8067) - Cleanup exemplar featuregate readme by [@&#8203;dashpole](https://redirect.github.com/dashpole) in [#&#8203;8072](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8072) - chore(deps): update codecov/codecov-action action to v5.5.3 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8080](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8080) - chore(deps): update module github.com/ryanrolds/sqlclosecheck to v0.6.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8083](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8083) - fix(deps): update github.com/opentracing-contrib/go-grpc/test digest to [`de6f1cc`](https://redirect.github.com/open-telemetry/opentelemetry-go/commit/de6f1cc) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8082](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8082) - chore(deps): update module go.opentelemetry.io/collector/featuregate to v1.54.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8085](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8085) - chore(deps): update module github.com/securego/gosec/v2 to v2.25.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8084](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8084) - chore(deps): update module github.com/protonmail/go-crypto to v1.4.1 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8081](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8081) - fix(deps): update module go.opentelemetry.io/collector/pdata to v1.54.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8086](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8086) - chore(deps): update actions/cache action to v5.0.4 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8079](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8079) - chore(deps): update module github.com/fatih/color to v1.19.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8087](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8087) - fix(deps): update googleapis to [`d00831a`](https://redirect.github.com/open-telemetry/opentelemetry-go/commit/d00831a) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8078](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8078) - chore(deps): update golang.org/x/telemetry digest to [`b6b0c46`](https://redirect.github.com/open-telemetry/opentelemetry-go/commit/b6b0c46) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8076](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8076) - fix(deps): update module google.golang.org/grpc to v1.79.3 \[security] by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8075](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8075) - sdk/metric: Support specifying cardinality limits per instrument kinds by [@&#8203;petern48](https://redirect.github.com/petern48) in [#&#8203;7855](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7855) - chore(deps): update github/codeql-action action to v4.34.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8088](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8088) - chore(deps): update codspeedhq/action action to v4.12.1 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8089](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8089) - chore(deps): update github/codeql-action action to v4.34.1 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8090](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8090) - fix(deps): update module github.com/golangci/golangci-lint/v2 to v2.11.4 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8092](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8092) - chore: fix noctx issues by [@&#8203;mmorel-35](https://redirect.github.com/mmorel-35) in [#&#8203;8008](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8008) - chore(deps): update module github.com/pelletier/go-toml/v2 to v2.3.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8095](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8095) - chore(deps): update codecov/codecov-action action to v5.5.4 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8097](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8097) - chore(deps): update codecov/codecov-action action to v6 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8098](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8098) - chore(deps): update module github.com/tetafro/godot to v1.5.6 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8099](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8099) - chore(deps): update module github.com/butuzov/ireturn to v0.4.1 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8100](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8100) - chore(deps): update github/codeql-action action to v4.35.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8101](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8101) - chore(deps): update actions/setup-go action to v6.4.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8107](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8107) - chore(deps): update module github.com/go-git/go-git/v5 to v5.17.1 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8106](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8106) - chore(deps): update module github.com/lucasb-eyer/go-colorful to v1.4.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8103](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8103) - chore(deps): update github/codeql-action action to v4.35.1 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8102](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8102) - chore(deps): update module github.com/hashicorp/go-version to v1.9.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8109](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8109) - metricdatatest: Improve printing of diffs by [@&#8203;dashpole](https://redirect.github.com/dashpole) in [#&#8203;8073](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8073) - fix(deps): update googleapis to [`d5a96ad`](https://redirect.github.com/open-telemetry/opentelemetry-go/commit/d5a96ad) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8112](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8112) - chore(deps): update codspeedhq/action action to v4.13.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8114](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8114) - fix(deps): update module go.opentelemetry.io/collector/pdata to v1.55.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8119](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8119) - chore(deps): update fossas/fossa-action action to v1.9.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8118](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8118) - chore(deps): update module github.com/go-git/go-git/v5 to v5.17.2 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8115](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8115) - fix(deps): update googleapis to [`9d38bb4`](https://redirect.github.com/open-telemetry/opentelemetry-go/commit/9d38bb4) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8117](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8117) - fix: support getBody in otelploghttp by [@&#8203;Tpuljak](https://redirect.github.com/Tpuljak) in [#&#8203;8096](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8096) - fix(deps): update module google.golang.org/grpc to v1.80.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8121](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8121) - Use an absolute path when calling bsd kenv by [@&#8203;dmathieu](https://redirect.github.com/dmathieu) in [#&#8203;8113](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8113) - limit response body size for OTLP HTTP exporters by [@&#8203;pellared](https://redirect.github.com/pellared) in [#&#8203;8108](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8108) - chore(deps): update github.com/golangci/dupl digest to [`c99c5cf`](https://redirect.github.com/open-telemetry/opentelemetry-go/commit/c99c5cf) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8122](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8122) - chore(deps): update module github.com/mattn/go-runewidth to v0.0.22 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8131](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8131) - Release v1.43.0 / v0.65.0 / v0.19.0 by [@&#8203;dmathieu](https://redirect.github.com/dmathieu) in [#&#8203;8128](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8128) #### New Contributors - [@&#8203;jmmcorreia](https://redirect.github.com/jmmcorreia) made their first contribution in [#&#8203;7807](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7807) - [@&#8203;marcschaeferger](https://redirect.github.com/marcschaeferger) made their first contribution in [#&#8203;8037](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8037) - [@&#8203;ajuijas](https://redirect.github.com/ajuijas) made their first contribution in [#&#8203;8041](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8041) - [@&#8203;yuanyuanzhao3](https://redirect.github.com/yuanyuanzhao3) made their first contribution in [#&#8203;8012](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8012) - [@&#8203;kouji-yoshimura](https://redirect.github.com/kouji-yoshimura) made their first contribution in [#&#8203;8067](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8067) - [@&#8203;Tpuljak](https://redirect.github.com/Tpuljak) made their first contribution in [#&#8203;8096](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8096) **Full Changelog**: <https://github.com/open-telemetry/opentelemetry-go/compare/v1.42.0...v1.43.0> ### [`v1.42.0`](https://redirect.github.com/open-telemetry/opentelemetry-go/releases/tag/v1.42.0): /v0.64.0/v0.18.0/v0.0.16 [Compare Source](https://redirect.github.com/open-telemetry/opentelemetry-go/compare/v1.41.0...v1.42.0) ##### Added - Add `go.opentelemetry.io/otel/semconv/v1.40.0` package. The package contains semantic conventions from the `v1.40.0` version of the OpenTelemetry Semantic Conventions. See the [migration documentation](./semconv/v1.40.0/MIGRATION.md) for information on how to upgrade from `go.opentelemetry.io/otel/semconv/v1.39.0`. ([#&#8203;7985](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/7985)) - Add `Err` and `SetErr` on `Record` in `go.opentelemetry.io/otel/log` to attach an error and set record exception attributes in `go.opentelemetry.io/otel/log/sdk`. ([#&#8203;7924](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/7924)) ##### Changed - `TracerProvider.ForceFlush` in `go.opentelemetry.io/otel/sdk/trace` joins errors together and continues iteration through SpanProcessors as opposed to returning the first encountered error without attempting exports on subsequent SpanProcessors. ([#&#8203;7856](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/7856)) ##### Fixed - Fix missing `request.GetBody` in `go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp` to correctly handle HTTP2 GOAWAY frame. ([#&#8203;7931](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/7931)) - Fix semconv v1.39.0 generated metric helpers skipping required attributes when extra attributes were empty. ([#&#8203;7964](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/7964)) - Preserve W3C TraceFlags bitmask (including the random Trace ID flag) during trace context extraction and injection in `go.opentelemetry.io/otel/propagation`. ([#&#8203;7834](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/7834)) ##### Removed - Drop support for \[Go 1.24]. ([#&#8203;7984](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/7984)) #### What's Changed - fix changelog protection marker by [@&#8203;pellared](https://redirect.github.com/pellared) in [#&#8203;7986](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7986) - Drop support for Go 1.24 by [@&#8203;MrAlias](https://redirect.github.com/MrAlias) in [#&#8203;7984](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7984) - fix(deps): update golang.org/x by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7907](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7907) - chore(deps): update module go.opentelemetry.io/collector/featuregate to v1.53.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7981](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7981) - chore(deps): update benchmark-action/github-action-benchmark action to v1.21.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7989](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7989) - fix(deps): update module go.opentelemetry.io/collector/pdata to v1.53.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7982](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7982) - Revert "Revert "Generate semconv/v1.40.0"" by [@&#8203;MrAlias](https://redirect.github.com/MrAlias) in [#&#8203;7985](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7985) - support stdlib request.GetBody on metrics by [@&#8203;marifari-hue](https://redirect.github.com/marifari-hue) in [#&#8203;7931](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7931) - attribute: add TestNotEquivalence and equality operator tests by [@&#8203;pellared](https://redirect.github.com/pellared) in [#&#8203;7979](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7979) - Refactor benchmark CI by [@&#8203;XSAM](https://redirect.github.com/XSAM) in [#&#8203;7873](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7873) - chore(deps): update module github.com/securego/gosec/v2 to v2.24.7 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7988](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7988) - chore(deps): pin codspeedhq/action action to [`df47568`](https://redirect.github.com/open-telemetry/opentelemetry-go/commit/df47568) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7996](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7996) - chore(deps): update actions/checkout action to v6.0.2 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7997](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7997) - chore(deps): update codspeedhq/action action to v4.11.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7999](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7999) - Upgrade to semconv/v1.40.0 by [@&#8203;MrAlias](https://redirect.github.com/MrAlias) in [#&#8203;7991](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7991) - Regenerate semconv/v1.40.0/MIGRATION.md by [@&#8203;MrAlias](https://redirect.github.com/MrAlias) in [#&#8203;7992](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7992) - fix: generated semconv helpers skipping attributes by [@&#8203;victoraugustolls](https://redirect.github.com/victoraugustolls) in [#&#8203;7964](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7964) - Feat: Have SpanContext support the new W3C random flag. by [@&#8203;nikhilmantri0902](https://redirect.github.com/nikhilmantri0902) in [#&#8203;7834](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7834) - Semconv metric helper caller-slice mutation fix by [@&#8203;MrAlias](https://redirect.github.com/MrAlias) in [#&#8203;7993](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7993) - Fix semconv generated error type to check error chain for custom type declaration by [@&#8203;MrAlias](https://redirect.github.com/MrAlias) in [#&#8203;7994](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7994) - refactor: replace uint64 and int32 with atomic types in tests by [@&#8203;alexandear](https://redirect.github.com/alexandear) in [#&#8203;7941](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7941) - chore(deps): update golang.org/x/telemetry digest to [`18da590`](https://redirect.github.com/open-telemetry/opentelemetry-go/commit/18da590) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8000](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8000) - TracerProvider ForceFlush() Error Fix by [@&#8203;sawamurataxman](https://redirect.github.com/sawamurataxman) in [#&#8203;7856](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7856) - log: add error field to Record and make SDK to emit exception attributes by [@&#8203;iblancasa](https://redirect.github.com/iblancasa) in [#&#8203;7924](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7924) - chore(deps): update dependency codespell to v2.4.2 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8003](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8003) - chore(deps): update github/codeql-action action to v4.32.6 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8004](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8004) - chore(deps): update codspeedhq/action action to v4.11.1 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8001](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8001) - fix(deps): update module google.golang.org/grpc to v1.79.2 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8007](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8007) - chore(deps): update module github.com/mgechev/revive to v1.15.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8009](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8009) - chore(deps): update golang.org/x/telemetry digest to [`e526e8a`](https://redirect.github.com/open-telemetry/opentelemetry-go/commit/e526e8a) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;8010](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8010) - Release v1.42.0/v0.64.0/v0.18.0/v0.0.16 by [@&#8203;pellared](https://redirect.github.com/pellared) in [#&#8203;8006](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8006) #### New Contributors - [@&#8203;marifari-hue](https://redirect.github.com/marifari-hue) made their first contribution in [#&#8203;7931](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7931) - [@&#8203;victoraugustolls](https://redirect.github.com/victoraugustolls) made their first contribution in [#&#8203;7964](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7964) - [@&#8203;sawamurataxman](https://redirect.github.com/sawamurataxman) made their first contribution in [#&#8203;7856](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7856) - [@&#8203;iblancasa](https://redirect.github.com/iblancasa) made their first contribution in [#&#8203;7924](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7924) **Full Changelog**: <https://github.com/open-telemetry/opentelemetry-go/compare/v1.41.0...v1.42.0> ### [`v1.41.0`](https://redirect.github.com/open-telemetry/opentelemetry-go/releases/tag/v1.41.0): /v0.63.0/v0.17.0/v0.0.15 [Compare Source](https://redirect.github.com/open-telemetry/opentelemetry-go/compare/v1.40.0...v1.41.0) This release is the last to support [Go 1.24]. The next release will require at least [Go 1.25]. ##### Added - Support testing of [Go 1.26]. ([#&#8203;7902](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/7902)) ##### Fixed - Update `Baggage` in `go.opentelemetry.io/otel/propagation` and `Parse` and `New` in `go.opentelemetry.io/otel/baggage` to comply with W3C Baggage specification limits. `New` and `Parse` now return partial baggage along with an error when limits are exceeded. Errors from baggage extraction are reported to the global error handler. ([#&#8203;7880](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/7880)) [Go 1.26]: https://go.dev/doc/go1.26 [Go 1.25]: https://go.dev/doc/go1.25 [Go 1.24]: https://go.dev/doc/go1.24 #### What's Changed - fix(deps): update googleapis to [`ce8ad4c`](https://redirect.github.com/open-telemetry/opentelemetry-go/commit/ce8ad4c) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7860](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7860) - chore(deps): update otel/weaver docker tag to v0.21.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7865](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7865) - fix(deps): update module go.opentelemetry.io/collector/pdata to v1.51.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7863](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7863) - chore(deps): update golang.org/x/telemetry digest to [`fe4bb1c`](https://redirect.github.com/open-telemetry/opentelemetry-go/commit/fe4bb1c) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7861](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7861) - chore(deps): update golang.org/x/telemetry digest to [`aaaaaa5`](https://redirect.github.com/open-telemetry/opentelemetry-go/commit/aaaaaa5) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7869](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7869) - sdk/log/observ: guard LogProcessed with Enabled by [@&#8203;NesterovYehor](https://redirect.github.com/NesterovYehor) in [#&#8203;7848](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7848) - stdouttrace observability: skip metric work when instruments are disabled by [@&#8203;NesterovYehor](https://redirect.github.com/NesterovYehor) in [#&#8203;7853](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7853) - chore(deps): update otel/weaver docker tag to v0.21.2 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7870](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7870) - fix(deps): update googleapis to [`546029d`](https://redirect.github.com/open-telemetry/opentelemetry-go/commit/546029d) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7871](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7871) - stdoutmetric observ: skip metric work when instruments are disabled by [@&#8203;NesterovYehor](https://redirect.github.com/NesterovYehor) in [#&#8203;7868](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7868) - chore(deps): update fossas/fossa-action action to v1.8.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7879](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7879) - chore(deps): update github/codeql-action action to v4.32.2 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7878](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7878) - chore(deps): update module github.com/ghostiam/protogetter to v0.3.20 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7877](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7877) - chore(deps): update golang.org/x/telemetry digest to [`86a5c4b`](https://redirect.github.com/open-telemetry/opentelemetry-go/commit/86a5c4b) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7876](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7876) - fix(deps): update module golang.org/x/sys to v0.41.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7885](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7885) - chore(deps): update module github.com/clipperhouse/uax29/v2 to v2.6.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7884](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7884) - Checked if instrument enabled before measuring in prometheus by [@&#8203;itssaharsh](https://redirect.github.com/itssaharsh) in [#&#8203;7866](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7866) - exporter/otlploghttp: guard observ metrics with Enabled checks by [@&#8203;NesterovYehor](https://redirect.github.com/NesterovYehor) in [#&#8203;7813](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7813) - chore(deps): update module github.com/go-git/go-git/v5 to v5.16.5 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7886](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7886) - chore(deps): update golang.org/x by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7887](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7887) - fix(deps): update golang.org/x by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7890](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7890) - fix(deps): update golang.org/x to [`2842357`](https://redirect.github.com/open-telemetry/opentelemetry-go/commit/2842357) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7891](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7891) - fix(deps): update googleapis to [`4cfbd41`](https://redirect.github.com/open-telemetry/opentelemetry-go/commit/4cfbd41) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7889](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7889) - Checked if instrument enabled before measuring in `oteltracegrpc` by [@&#8203;itssaharsh](https://redirect.github.com/itssaharsh) in [#&#8203;7825](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7825) - Checked if Instrument Enabled before measuring in otlpgrpc by [@&#8203;itssaharsh](https://redirect.github.com/itssaharsh) in [#&#8203;7824](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7824) - chore(deps): update module github.com/grpc-ecosystem/grpc-gateway/v2 to v2.27.8 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7892](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7892) - chore(deps): update module github.com/golangci/golines to v0.15.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7893](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7893) - chore(deps): update module github.com/golangci/misspell to v0.8.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7894](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7894) - chore(deps): update golang.org/x/telemetry digest to [`9f66fae`](https://redirect.github.com/open-telemetry/opentelemetry-go/commit/9f66fae) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7898](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7898) - fix(deps): update module google.golang.org/grpc to v1.79.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7906](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7906) - Support Go 1.26 by [@&#8203;dmathieu](https://redirect.github.com/dmathieu) in [#&#8203;7902](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7902) - fix(deps): update module google.golang.org/grpc to v1.79.1 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7908](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7908) - chore(deps): update github/codeql-action action to v4.32.3 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7909](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7909) - chore(deps): update module github.com/kevinburke/ssh\_config to v1.5.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7911](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7911) - chore(deps): update module github.com/kevinburke/ssh\_config to v1.6.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7913](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7913) - chore(deps): update actions/stale action to v10.2.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7917](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7917) - chore(deps): update module github.com/godoc-lint/godoc-lint to v0.11.2 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7916](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7916) - chore(deps): update module github.com/clipperhouse/uax29/v2 to v2.7.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7915](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7915) - chore(deps): update module github.com/mattn/go-runewidth to v0.0.20 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7918](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7918) - chore(deps): update module github.com/grpc-ecosystem/grpc-gateway/v2 to v2.28.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7921](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7921) - Checked if Operation Enabled in `otlptracehttp` before performing operation by [@&#8203;itssaharsh](https://redirect.github.com/itssaharsh) in [#&#8203;7881](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7881) - chore(deps): update github/codeql-action action to v4.32.4 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7936](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7936) - chore(deps): update module github.com/mirrexone/unqueryvet to v1.5.4 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7939](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7939) - chore(deps): update module github.com/uudashr/gocognit to v1.2.1 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7947](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7947) - chore(deps): update module github.com/alexkohler/prealloc to v1.0.3 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7950](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7950) - chore(deps): update module github.com/go-git/go-billy/v5 to v5.8.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7953](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7953) - chore(deps): update lycheeverse/lychee-action action to v2.8.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7959](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7959) - chore(deps): update module github.com/go-git/go-git/v5 to v5.17.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7960](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7960) - chore(deps): update actions/setup-go action to v6.3.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7962](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7962) - Document metric api interfaces that methods need to be safe to be called concurrently by [@&#8203;dashpole](https://redirect.github.com/dashpole) in [#&#8203;7952](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7952) - ci: add govulncheck job to CI workflow and update lint target by [@&#8203;pellared](https://redirect.github.com/pellared) in [#&#8203;7971](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7971) - Comply with W3C Baggage specification limits by [@&#8203;XSAM](https://redirect.github.com/XSAM) in [#&#8203;7880](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7880) - chore(deps): update module github.com/mgechev/revive to v1.14.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7895](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7895) - chore(deps): update github artifact actions (major) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7963](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7963) - chore(deps): update module github.com/kisielk/errcheck to v1.10.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7967](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7967) - chore(deps): update module github.com/protonmail/go-crypto to v1.4.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7969](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7969) - fix(deps): update github.com/opentracing-contrib/go-grpc/test digest to [`d566b4d`](https://redirect.github.com/open-telemetry/opentelemetry-go/commit/d566b4d) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7972](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7972) - chore(deps): update module github.com/sonatard/noctx to v0.5.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7968](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/7968) - chore(deps): update module github.com/daixiang0/gci to v0.14.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;7973](https://redirect.github.com/open-telemetry/opentelemetry- </details> --- ### 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. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My44OS41IiwidXBkYXRlZEluVmVyIjoiNDMuODkuNSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiYXV0b21lcmdlIiwic2VjdXJpdHkiXX0=-->
1 parent b4a0c33 commit dedf738

File tree

2 files changed

+30
-29
lines changed

2 files changed

+30
-29
lines changed

go.mod

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,11 @@ require (
5858
github.com/zeebo/xxh3 v1.1.0 // indirect
5959
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
6060
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect
61-
go.opentelemetry.io/otel v1.39.0 // indirect
62-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.24.0 // indirect
63-
go.opentelemetry.io/otel/metric v1.39.0 // indirect
64-
go.opentelemetry.io/otel/trace v1.39.0 // indirect
61+
go.opentelemetry.io/otel v1.43.0 // indirect
62+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.43.0 // indirect
63+
go.opentelemetry.io/otel/metric v1.43.0 // indirect
64+
go.opentelemetry.io/otel/sdk/metric v1.43.0 // indirect
65+
go.opentelemetry.io/otel/trace v1.43.0 // indirect
6566
golang.org/x/mod v0.34.0 // indirect
6667
golang.org/x/net v0.52.0 // indirect
6768
golang.org/x/sync v0.20.0 // indirect
@@ -71,7 +72,7 @@ require (
7172
golang.org/x/text v0.35.0 // indirect
7273
golang.org/x/tools v0.43.0 // indirect
7374
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
74-
google.golang.org/genproto/googleapis/rpc v0.0.0-20260120221211-b8f7ae30c516 // indirect
75+
google.golang.org/genproto/googleapis/rpc v0.0.0-20260401024825-9d38bb4040a9 // indirect
7576
gopkg.in/yaml.v2 v2.4.0 // indirect
7677
gotest.tools/v3 v3.5.1 // indirect
7778
)

go.sum

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ github.com/apapsch/go-jsonmerge/v2 v2.0.0/go.mod h1:lvDnEdqiQrp0O42VQGgmlKpxL1AP
1616
github.com/avast/retry-go/v5 v5.0.0 h1:kf1Qc2UsTZ4qq8elDymqfbISvkyMuhgRxuJqX2NHP7k=
1717
github.com/avast/retry-go/v5 v5.0.0/go.mod h1://d+usmKWio1agtZfS1H/ltTqwtIfBnRq9zEwjc3eH8=
1818
github.com/bmatcuk/doublestar v1.1.1/go.mod h1:UD6OnuiIn0yFxxA2le/rnRU1G4RaI4UvFv1sNto9p6w=
19-
github.com/cenkalti/backoff/v4 v4.2.1 h1:y4OZtCnogmCPw98Zjyt5a6+QwPLGkiQsYW5oUqylYbM=
20-
github.com/cenkalti/backoff/v4 v4.2.1/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE=
19+
github.com/cenkalti/backoff/v5 v5.0.3 h1:ZN+IMa753KfX5hd8vVaMixjnqRZ3y8CuJKRKj1xcsSM=
20+
github.com/cenkalti/backoff/v5 v5.0.3/go.mod h1:rkhZdG3JZukswDf7f0cwqPNk4K0sa+F97BxZthm/crw=
2121
github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs=
2222
github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
2323
github.com/cloudquery/cloudquery-api-go v1.14.9 h1:Za6Kr5LhIRx0iQExH4hAZnPEuFTUe3MOjip/gMQqCjI=
@@ -65,8 +65,8 @@ github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
6565
github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
6666
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
6767
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
68-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.0 h1:Wqo399gCIufwto+VfwCSvsnfGpF/w5E9CNxSwbpD6No=
69-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.0/go.mod h1:qmOFXW2epJhM0qSnUUYpldc7gVz2KMQwJ/QYCDIa7XU=
68+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.28.0 h1:HWRh5R2+9EifMyIHV7ZV+MIZqgz+PMpZ14Jynv3O2Zs=
69+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.28.0/go.mod h1:JfhWUomR1baixubs02l85lZYYOm7LV6om4ceouMv45c=
7070
github.com/hashicorp/go-cleanhttp v0.5.2 h1:035FKYIWjmULyFRBKPs8TBQoi0x6d9G4xc9neXJWAZQ=
7171
github.com/hashicorp/go-cleanhttp v0.5.2/go.mod h1:kO/YDlP8L1346E6Sodw+PrpBSV4/SoxCXGY6BqNFT48=
7272
github.com/hashicorp/go-hclog v1.6.3 h1:Qr2kF+eVWjTiYmU7Y31tYlP1h0q/X3Nl3tPGdaB11/k=
@@ -147,22 +147,22 @@ go.opentelemetry.io/auto/sdk v1.2.1 h1:jXsnJ4Lmnqd11kwkBV2LgLoFMZKizbCi5fNZ/ipaZ
147147
go.opentelemetry.io/auto/sdk v1.2.1/go.mod h1:KRTj+aOaElaLi+wW1kO/DZRXwkF4C5xPbEe3ZiIhN7Y=
148148
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk=
149149
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw=
150-
go.opentelemetry.io/otel v1.39.0 h1:8yPrr/S0ND9QEfTfdP9V+SiwT4E0G7Y5MO7p85nis48=
151-
go.opentelemetry.io/otel v1.39.0/go.mod h1:kLlFTywNWrFyEdH0oj2xK0bFYZtHRYUdv1NklR/tgc8=
152-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.24.0 h1:t6wl9SPayj+c7lEIFgm4ooDBZVb01IhLB4InpomhRw8=
153-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.24.0/go.mod h1:iSDOcsnSA5INXzZtwaBPrKp/lWu/V14Dd+llD0oI2EA=
154-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.24.0 h1:Xw8U6u2f8DK2XAkGRFV7BBLENgnTGX9i4rQRxJf+/vs=
155-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.24.0/go.mod h1:6KW1Fm6R/s6Z3PGXwSJN2K4eT6wQB3vXX6CVnYX9NmM=
156-
go.opentelemetry.io/otel/metric v1.39.0 h1:d1UzonvEZriVfpNKEVmHXbdf909uGTOQjA0HF0Ls5Q0=
157-
go.opentelemetry.io/otel/metric v1.39.0/go.mod h1:jrZSWL33sD7bBxg1xjrqyDjnuzTUB0x1nBERXd7Ftcs=
158-
go.opentelemetry.io/otel/sdk v1.39.0 h1:nMLYcjVsvdui1B/4FRkwjzoRVsMK8uL/cj0OyhKzt18=
159-
go.opentelemetry.io/otel/sdk v1.39.0/go.mod h1:vDojkC4/jsTJsE+kh+LXYQlbL8CgrEcwmt1ENZszdJE=
160-
go.opentelemetry.io/otel/sdk/metric v1.39.0 h1:cXMVVFVgsIf2YL6QkRF4Urbr/aMInf+2WKg+sEJTtB8=
161-
go.opentelemetry.io/otel/sdk/metric v1.39.0/go.mod h1:xq9HEVH7qeX69/JnwEfp6fVq5wosJsY1mt4lLfYdVew=
162-
go.opentelemetry.io/otel/trace v1.39.0 h1:2d2vfpEDmCJ5zVYz7ijaJdOF59xLomrvj7bjt6/qCJI=
163-
go.opentelemetry.io/otel/trace v1.39.0/go.mod h1:88w4/PnZSazkGzz/w84VHpQafiU4EtqqlVdxWy+rNOA=
164-
go.opentelemetry.io/proto/otlp v1.1.0 h1:2Di21piLrCqJ3U3eXGCTPHE9R8Nh+0uglSnOyxikMeI=
165-
go.opentelemetry.io/proto/otlp v1.1.0/go.mod h1:GpBHCBWiqvVLDqmHZsoMM3C5ySeKTC7ej/RNTae6MdY=
150+
go.opentelemetry.io/otel v1.43.0 h1:mYIM03dnh5zfN7HautFE4ieIig9amkNANT+xcVxAj9I=
151+
go.opentelemetry.io/otel v1.43.0/go.mod h1:JuG+u74mvjvcm8vj8pI5XiHy1zDeoCS2LB1spIq7Ay0=
152+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.43.0 h1:88Y4s2C8oTui1LGM6bTWkw0ICGcOLCAI5l6zsD1j20k=
153+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.43.0/go.mod h1:Vl1/iaggsuRlrHf/hfPJPvVag77kKyvrLeD10kpMl+A=
154+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.43.0 h1:3iZJKlCZufyRzPzlQhUIWVmfltrXuGyfjREgGP3UUjc=
155+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.43.0/go.mod h1:/G+nUPfhq2e+qiXMGxMwumDrP5jtzU+mWN7/sjT2rak=
156+
go.opentelemetry.io/otel/metric v1.43.0 h1:d7638QeInOnuwOONPp4JAOGfbCEpYb+K6DVWvdxGzgM=
157+
go.opentelemetry.io/otel/metric v1.43.0/go.mod h1:RDnPtIxvqlgO8GRW18W6Z/4P462ldprJtfxHxyKd2PY=
158+
go.opentelemetry.io/otel/sdk v1.43.0 h1:pi5mE86i5rTeLXqoF/hhiBtUNcrAGHLKQdhg4h4V9Dg=
159+
go.opentelemetry.io/otel/sdk v1.43.0/go.mod h1:P+IkVU3iWukmiit/Yf9AWvpyRDlUeBaRg6Y+C58QHzg=
160+
go.opentelemetry.io/otel/sdk/metric v1.43.0 h1:S88dyqXjJkuBNLeMcVPRFXpRw2fuwdvfCGLEo89fDkw=
161+
go.opentelemetry.io/otel/sdk/metric v1.43.0/go.mod h1:C/RJtwSEJ5hzTiUz5pXF1kILHStzb9zFlIEe85bhj6A=
162+
go.opentelemetry.io/otel/trace v1.43.0 h1:BkNrHpup+4k4w+ZZ86CZoHHEkohws8AY+WTX09nk+3A=
163+
go.opentelemetry.io/otel/trace v1.43.0/go.mod h1:/QJhyVBUUswCphDVxq+8mld+AvhXZLhe+8WVFxiFff0=
164+
go.opentelemetry.io/proto/otlp v1.10.0 h1:IQRWgT5srOCYfiWnpqUYz9CVmbO8bFmKcwYxpuCSL2g=
165+
go.opentelemetry.io/proto/otlp v1.10.0/go.mod h1:/CV4QoCR/S9yaPj8utp3lvQPoqMtxXdzn7ozvvozVqk=
166166
golang.org/x/exp v0.0.0-20260312153236-7ab1446f8b90 h1:jiDhWWeC7jfWqR9c/uplMOqJ0sbNlNWv0UkzE0vX1MA=
167167
golang.org/x/exp v0.0.0-20260312153236-7ab1446f8b90/go.mod h1:xE1HEv6b+1SCZ5/uscMRjUBKtIxworgEcEi+/n9NQDQ=
168168
golang.org/x/mod v0.34.0 h1:xIHgNUUnW6sYkcM5Jleh05DvLOtwc6RitGHbDk4akRI=
@@ -192,10 +192,10 @@ golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da h1:noIWHXmPHxILtqtCOPIhS
192192
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da/go.mod h1:NDW/Ps6MPRej6fsCIbMTohpP40sJ/P/vI1MoTEGwX90=
193193
gonum.org/v1/gonum v0.17.0 h1:VbpOemQlsSMrYmn7T2OUvQ4dqxQXU+ouZFQsZOx50z4=
194194
gonum.org/v1/gonum v0.17.0/go.mod h1:El3tOrEuMpv2UdMrbNlKEh9vd86bmQ6vqIcDwxEOc1E=
195-
google.golang.org/genproto/googleapis/api v0.0.0-20260120221211-b8f7ae30c516 h1:vmC/ws+pLzWjj/gzApyoZuSVrDtF1aod4u/+bbj8hgM=
196-
google.golang.org/genproto/googleapis/api v0.0.0-20260120221211-b8f7ae30c516/go.mod h1:p3MLuOwURrGBRoEyFHBT3GjUwaCQVKeNqqWxlcISGdw=
197-
google.golang.org/genproto/googleapis/rpc v0.0.0-20260120221211-b8f7ae30c516 h1:sNrWoksmOyF5bvJUcnmbeAmQi8baNhqg5IWaI3llQqU=
198-
google.golang.org/genproto/googleapis/rpc v0.0.0-20260120221211-b8f7ae30c516/go.mod h1:j9x/tPzZkyxcgEFkiKEEGxfvyumM01BEtsW8xzOahRQ=
195+
google.golang.org/genproto/googleapis/api v0.0.0-20260401024825-9d38bb4040a9 h1:VPWxll4HlMw1Vs/qXtN7BvhZqsS9cdAittCNvVENElA=
196+
google.golang.org/genproto/googleapis/api v0.0.0-20260401024825-9d38bb4040a9/go.mod h1:7QBABkRtR8z+TEnmXTqIqwJLlzrZKVfAUm7tY3yGv0M=
197+
google.golang.org/genproto/googleapis/rpc v0.0.0-20260401024825-9d38bb4040a9 h1:m8qni9SQFH0tJc1X0vmnpw/0t+AImlSvp30sEupozUg=
198+
google.golang.org/genproto/googleapis/rpc v0.0.0-20260401024825-9d38bb4040a9/go.mod h1:4Hqkh8ycfw05ld/3BWL7rJOSfebL2Q+DVDeRgYgxUU8=
199199
google.golang.org/grpc v1.80.0 h1:Xr6m2WmWZLETvUNvIUmeD5OAagMw3FiKmMlTdViWsHM=
200200
google.golang.org/grpc v1.80.0/go.mod h1:ho/dLnxwi3EDJA4Zghp7k2Ec1+c2jqup0bFkw07bwF4=
201201
google.golang.org/protobuf v1.36.11 h1:fV6ZwhNocDyBLK0dj+fg8ektcVegBBuEolpbTQyBNVE=

0 commit comments

Comments
 (0)