Skip to content

Commit 04338dc

Browse files
fix(security): update vulnerability-updates [security] (#1933)
> ℹ️ **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/) | |---|---|---|---| | [github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream](https://redirect.github.com/aws/aws-sdk-go-v2) | `v1.6.10` → `v1.7.8` | ![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2faws%2fprotocol%2feventstream/v1.7.8?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2faws%2fprotocol%2feventstream/v1.6.10/v1.7.8?slim=true) | | [github.com/aws/aws-sdk-go-v2/service/s3](https://redirect.github.com/aws/aws-sdk-go-v2) | `v1.78.2` → `v1.97.3` | ![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fs3/v1.97.3?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fs3/v1.78.2/v1.97.3?slim=true) | | [go.opentelemetry.io/otel/sdk](https://redirect.github.com/open-telemetry/opentelemetry-go) | `v1.40.0` → `v1.43.0` | ![age](https://developer.mend.io/api/mc/badges/age/go/go.opentelemetry.io%2fotel%2fsdk/v1.43.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/go/go.opentelemetry.io%2fotel%2fsdk/v1.40.0/v1.43.0?slim=true) | | [go.opentelemetry.io/otel/sdk](https://redirect.github.com/open-telemetry/opentelemetry-go) | `v1.42.0` → `v1.43.0` | ![age](https://developer.mend.io/api/mc/badges/age/go/go.opentelemetry.io%2fotel%2fsdk/v1.43.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/go/go.opentelemetry.io%2fotel%2fsdk/v1.42.0/v1.43.0?slim=true) | ### GitHub Vulnerability Alerts #### [GHSA-xmrv-pmrh-hhx2](https://redirect.github.com/aws/aws-sdk-go-v2/security/advisories/GHSA-xmrv-pmrh-hhx2) **CVSSv3.1 Rating**: [Medium] **CVSSv3.1 Score**: [5.9] **CVSSv3.1 Vector String**: [CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H] ## Summary and Impact An issue exists in the the EventStream header decoder in AWS SDK for Go v2 in versions predating [2026-03-23](https://redirect.github.com/aws/aws-sdk-go-v2/releases/tag/release-2026-03-23). An actor can send a malformed EventStream response frame containing a crafted header value type byte outside the valid range, which can cause the host process to terminate. Impacted versions: < [2026-03-23](https://redirect.github.com/aws/aws-sdk-go-v2/releases/tag/release-2026-03-23) ## Patches This issue has been addressed in versions [2026-03-23](https://redirect.github.com/aws/aws-sdk-go-v2/releases/tag/release-2026-03-23) and above. We recommend upgrading to the latest version and ensuring any forked or derivative code is patched to incorporate the new fixes. ## Workarounds Not Applicable ## References If you have any questions or comments about this advisory, we ask that you contact [AWS/Amazon] Security via our [vulnerability reporting page](https://aws.amazon.com/security/vulnerability-reporting) or directly via email to [aws-security@amazon.com](mailto:aws-security@amazon.com). Please do not create a public GitHub issue. #### [CVE-2026-39883](https://redirect.github.com/open-telemetry/opentelemetry-go/security/advisories/GHSA-hfvc-g4fc-pqhx) ## Summary The fix for GHSA-9h8m-3fm2-qjrq (CVE-2026-24051) changed the Darwin `ioreg` command to use an absolute path but left the BSD `kenv` command using a bare name, allowing the same PATH hijacking attack on BSD and Solaris platforms. ## Root Cause `sdk/resource/host_id.go` line 42: if result, err := r.execCommand("kenv", "-q", "smbios.system.uuid"); err == nil { Compare with the fixed Darwin path at line 58: result, err := r.execCommand("/usr/sbin/ioreg", "-rd1", "-c", "IOPlatformExpertDevice") The `execCommand` helper at `sdk/resource/host_id_exec.go` uses `exec.Command(name, arg...)` which searches `$PATH` when the command name contains no path separator. Affected platforms (per build tag in `host_id_bsd.go:4`): DragonFly BSD, FreeBSD, NetBSD, OpenBSD, Solaris. The `kenv` path is reached when `/etc/hostid` does not exist (line 38-40), which is common on FreeBSD systems. ## Attack 1. Attacker has local access to a system running a Go application that imports `go.opentelemetry.io/otel/sdk` 2. Attacker places a malicious `kenv` binary earlier in `$PATH` 3. Application initializes OpenTelemetry resource detection at startup 4. `hostIDReaderBSD.read()` calls `exec.Command("kenv", ...)` which resolves to the malicious binary 5. Arbitrary code executes in the context of the application Same attack vector and impact as CVE-2026-24051. ## Suggested Fix Use the absolute path: if result, err := r.execCommand("/bin/kenv", "-q", "smbios.system.uuid"); err == nil { On FreeBSD, `kenv` is located at `/bin/kenv`. --- ### Release Notes <details> <summary>aws/aws-sdk-go-v2 (github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream)</summary> ### [`v1.7.7`](https://redirect.github.com/aws/aws-sdk-go-v2/blob/HEAD/CHANGELOG.md#Release-2025-04-11) #### General Highlights - **Dependency Update**: Updated to the latest SDK module versions #### Module Highlights - `github.com/aws/aws-sdk-go-v2/feature/dynamodb/expression`: [v1.7.79](feature/dynamodb/expression/CHANGELOG.md#v1779-2025-04-11) - **Bug Fix**: allow nested list indices in expressions - `github.com/aws/aws-sdk-go-v2/service/connectcontactlens`: [v1.28.0](service/connectcontactlens/CHANGELOG.md#v1280-2025-04-11) - **Feature**: Making sentiment optional for ListRealtimeContactAnalysisSegments Response depending on conversational analytics configuration - `github.com/aws/aws-sdk-go-v2/service/detective`: [v1.33.0](service/detective/CHANGELOG.md#v1330-2025-04-11) - **Feature**: Add support for Detective DualStack endpoints - `github.com/aws/aws-sdk-go-v2/service/dynamodb`: [v1.42.4](service/dynamodb/CHANGELOG.md#v1424-2025-04-11) - **Documentation**: Doc only update for API descriptions. - `github.com/aws/aws-sdk-go-v2/service/marketplaceentitlementservice`: [v1.29.0](service/marketplaceentitlementservice/CHANGELOG.md#v1290-2025-04-11) - **Feature**: Add support for Marketplace Entitlement Service dual-stack endpoints for CN and GOV regions - `github.com/aws/aws-sdk-go-v2/service/marketplacemetering`: [v1.29.0](service/marketplacemetering/CHANGELOG.md#v1290-2025-04-11) - **Feature**: Add support for Marketplace Metering Service dual-stack endpoints for CN regions - `github.com/aws/aws-sdk-go-v2/service/verifiedpermissions`: [v1.23.0](service/verifiedpermissions/CHANGELOG.md#v1230-2025-04-11) - **Feature**: Adds deletion protection support to policy stores. Deletion protection is disabled by default, can be enabled via the CreatePolicyStore or UpdatePolicyStore APIs, and is visible in GetPolicyStore. ### [`v1.7.1`](https://redirect.github.com/aws/aws-sdk-go-v2/blob/HEAD/CHANGELOG.md#Release-2025-04-28) #### General Highlights - **Dependency Update**: Updated to the latest SDK module versions #### Module Highlights - `github.com/aws/aws-sdk-go-v2/service/acm`: [v1.32.0](service/acm/CHANGELOG.md#v1320-2025-04-28) - **Feature**: Add support for file-based HTTP domain control validation, available through Amazon CloudFront. - `github.com/aws/aws-sdk-go-v2/service/cloudfront`: [v1.46.0](service/cloudfront/CHANGELOG.md#v1460-2025-04-28) - **Feature**: Add distribution tenant, connection group, and multi-tenant distribution APIs to the CloudFront SDK. - `github.com/aws/aws-sdk-go-v2/service/dynamodb`: [v1.43.1](service/dynamodb/CHANGELOG.md#v1431-2025-04-28) - **Documentation**: Doc only update for GSI descriptions. - `github.com/aws/aws-sdk-go-v2/service/imagebuilder`: [v1.42.0](service/imagebuilder/CHANGELOG.md#v1420-2025-04-28) - **Feature**: Add integration with SSM Parameter Store to Image Builder. - `github.com/aws/aws-sdk-go-v2/service/internal/checksum`: [v1.7.1](service/internal/checksum/CHANGELOG.md#v171-2025-04-28) - **Bug Fix**: Don't emit warnings about lack of checksum validation for non-200 responses. ### [`v1.7.0`](https://redirect.github.com/aws/aws-sdk-go-v2/blob/HEAD/CHANGELOG.md#Release-2026-01-12) #### Module Highlights - `github.com/aws/aws-sdk-go-v2/service/billing`: [v1.10.0](service/billing/CHANGELOG.md#v1100-2026-01-12) - **Feature**: Cost Categories filtering support to BillingView data filter expressions through the new costCategories parameter, enabling users to filter billing views by AWS Cost Categories for more granular cost management and allocation. - `github.com/aws/aws-sdk-go-v2/service/iotmanagedintegrations`: [v1.7.0](service/iotmanagedintegrations/CHANGELOG.md#v170-2026-01-12) - **Feature**: This release introduces WiFi Simple Setup (WSS) enabling device provisioning via barcode scanning with automated network discovery, authentication, and credential provisioning. Additionally, it introduces 2P Device Capability Rediscovery for updating hub-managed device capabilities post-onboarding. - `github.com/aws/aws-sdk-go-v2/service/sagemaker`: [v1.230.0](service/sagemaker/CHANGELOG.md#v12300-2026-01-12) - **Feature**: Added ultraServerType to the UltraServerInfo structure to support server type identification for SageMaker HyperPod </details> <details> <summary>open-telemetry/opentelemetry-go (go.opentelemetry.io/otel/sdk)</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) - </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - "" - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-feature/flagd). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xMTAuMiIsInVwZGF0ZWRJblZlciI6IjQzLjExMC4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJyZW5vdmF0ZSJdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent a60a64f commit 04338dc

File tree

6 files changed

+135
-45
lines changed

6 files changed

+135
-45
lines changed

core/go.mod

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ require (
2020
github.com/stretchr/testify v1.11.1
2121
github.com/twmb/murmur3 v1.1.8
2222
go.opentelemetry.io/contrib/exporters/autoexport v0.67.0
23-
go.opentelemetry.io/otel v1.42.0
23+
go.opentelemetry.io/otel v1.43.0
2424
go.opentelemetry.io/otel/exporters/prometheus v0.64.0
25-
go.opentelemetry.io/otel/metric v1.42.0
26-
go.opentelemetry.io/otel/sdk v1.42.0
27-
go.opentelemetry.io/otel/sdk/metric v1.42.0
28-
go.opentelemetry.io/otel/trace v1.42.0
25+
go.opentelemetry.io/otel/metric v1.43.0
26+
go.opentelemetry.io/otel/sdk v1.43.0
27+
go.opentelemetry.io/otel/sdk/metric v1.43.0
28+
go.opentelemetry.io/otel/trace v1.43.0
2929
go.uber.org/mock v0.5.2
3030
go.uber.org/zap v1.27.0
3131
gocloud.dev v0.42.0
@@ -61,25 +61,25 @@ require (
6161
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.51.0 // indirect
6262
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.51.0 // indirect
6363
github.com/aws/aws-sdk-go v1.55.6 // indirect
64-
github.com/aws/aws-sdk-go-v2 v1.36.3 // indirect
65-
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.10 // indirect
64+
github.com/aws/aws-sdk-go-v2 v1.41.5 // indirect
65+
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.7.8 // indirect
6666
github.com/aws/aws-sdk-go-v2/config v1.29.12 // indirect
6767
github.com/aws/aws-sdk-go-v2/credentials v1.17.65 // indirect
6868
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.30 // indirect
6969
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.17.69 // indirect
70-
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.34 // indirect
71-
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.34 // indirect
70+
github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.21 // indirect
71+
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.21 // indirect
7272
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.3 // indirect
73-
github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.34 // indirect
74-
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.3 // indirect
75-
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.7.0 // indirect
76-
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.15 // indirect
77-
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.15 // indirect
78-
github.com/aws/aws-sdk-go-v2/service/s3 v1.78.2 // indirect
73+
github.com/aws/aws-sdk-go-v2/internal/v4a v1.4.22 // indirect
74+
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.7 // indirect
75+
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.9.13 // indirect
76+
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.21 // indirect
77+
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.19.21 // indirect
78+
github.com/aws/aws-sdk-go-v2/service/s3 v1.97.3 // indirect
7979
github.com/aws/aws-sdk-go-v2/service/sso v1.25.2 // indirect
8080
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.30.0 // indirect
8181
github.com/aws/aws-sdk-go-v2/service/sts v1.33.17 // indirect
82-
github.com/aws/smithy-go v1.22.3 // indirect
82+
github.com/aws/smithy-go v1.24.2 // indirect
8383
github.com/barkimedes/go-deepcopy v0.0.0-20220514131651-17c30cfc62df // indirect
8484
github.com/beorn7/perks v1.0.1 // indirect
8585
github.com/cenkalti/backoff/v5 v5.0.3 // indirect
@@ -154,7 +154,7 @@ require (
154154
go.uber.org/multierr v1.11.0 // indirect
155155
go.yaml.in/yaml/v2 v2.4.3 // indirect
156156
golang.org/x/net v0.51.0 // indirect
157-
golang.org/x/sys v0.41.0 // indirect
157+
golang.org/x/sys v0.42.0 // indirect
158158
golang.org/x/term v0.40.0 // indirect
159159
golang.org/x/text v0.34.0 // indirect
160160
golang.org/x/time v0.11.0 // indirect

core/go.sum

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,12 @@ github.com/aws/aws-sdk-go v1.55.6 h1:cSg4pvZ3m8dgYcgqB97MrcdjUmZ1BeMYKUxMMB89IPk
6262
github.com/aws/aws-sdk-go v1.55.6/go.mod h1:eRwEWoyTWFMVYVQzKMNHWP5/RV4xIUGMQfXQHfHkpNU=
6363
github.com/aws/aws-sdk-go-v2 v1.36.3 h1:mJoei2CxPutQVxaATCzDUjcZEjVRdpsiiXi2o38yqWM=
6464
github.com/aws/aws-sdk-go-v2 v1.36.3/go.mod h1:LLXuLpgzEbD766Z5ECcRmi8AzSwfZItDtmABVkRLGzg=
65+
github.com/aws/aws-sdk-go-v2 v1.41.5 h1:dj5kopbwUsVUVFgO4Fi5BIT3t4WyqIDjGKCangnV/yY=
66+
github.com/aws/aws-sdk-go-v2 v1.41.5/go.mod h1:mwsPRE8ceUUpiTgF7QmQIJ7lgsKUPQOUl3o72QBrE1o=
6567
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.10 h1:zAybnyUQXIZ5mok5Jqwlf58/TFE7uvd3IAsa1aF9cXs=
6668
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.10/go.mod h1:qqvMj6gHLR/EXWZw4ZbqlPbQUyenf4h82UQUlKc+l14=
69+
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.7.8 h1:eBMB84YGghSocM7PsjmmPffTa+1FBUeNvGvFou6V/4o=
70+
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.7.8/go.mod h1:lyw7GFp3qENLh7kwzf7iMzAxDn+NzjXEAGjKS2UOKqI=
6771
github.com/aws/aws-sdk-go-v2/config v1.29.12 h1:Y/2a+jLPrPbHpFkpAAYkVEtJmxORlXoo5k2g1fa2sUo=
6872
github.com/aws/aws-sdk-go-v2/config v1.29.12/go.mod h1:xse1YTjmORlb/6fhkWi8qJh3cvZi4JoVNhc+NbJt4kI=
6973
github.com/aws/aws-sdk-go-v2/credentials v1.17.65 h1:q+nV2yYegofO/SUXruT+pn4KxkxmaQ++1B/QedcKBFM=
@@ -74,22 +78,38 @@ github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.17.69 h1:6VFPH/Zi9xYFMJKPQOX5
7478
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.17.69/go.mod h1:GJj8mmO6YT6EqgduWocwhMoxTLFitkhIrK+owzrYL2I=
7579
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.34 h1:ZK5jHhnrioRkUNOc+hOgQKlUL5JeC3S6JgLxtQ+Rm0Q=
7680
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.34/go.mod h1:p4VfIceZokChbA9FzMbRGz5OV+lekcVtHlPKEO0gSZY=
81+
github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.21 h1:Rgg6wvjjtX8bNHcvi9OnXWwcE0a2vGpbwmtICOsvcf4=
82+
github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.21/go.mod h1:A/kJFst/nm//cyqonihbdpQZwiUhhzpqTsdbhDdRF9c=
7783
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.34 h1:SZwFm17ZUNNg5Np0ioo/gq8Mn6u9w19Mri8DnJ15Jf0=
7884
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.34/go.mod h1:dFZsC0BLo346mvKQLWmoJxT+Sjp+qcVR1tRVHQGOH9Q=
85+
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.21 h1:PEgGVtPoB6NTpPrBgqSE5hE/o47Ij9qk/SEZFbUOe9A=
86+
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.21/go.mod h1:p+hz+PRAYlY3zcpJhPwXlLC4C+kqn70WIHwnzAfs6ps=
7987
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.3 h1:bIqFDwgGXXN1Kpp99pDOdKMTTb5d2KyU5X/BZxjOkRo=
8088
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.3/go.mod h1:H5O/EsxDWyU+LP/V8i5sm8cxoZgc2fdNR9bxlOFrQTo=
8189
github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.34 h1:ZNTqv4nIdE/DiBfUUfXcLZ/Spcuz+RjeziUtNJackkM=
8290
github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.34/go.mod h1:zf7Vcd1ViW7cPqYWEHLHJkS50X0JS2IKz9Cgaj6ugrs=
91+
github.com/aws/aws-sdk-go-v2/internal/v4a v1.4.22 h1:rWyie/PxDRIdhNf4DzRk0lvjVOqFJuNnO8WwaIRVxzQ=
92+
github.com/aws/aws-sdk-go-v2/internal/v4a v1.4.22/go.mod h1:zd/JsJ4P7oGfUhXn1VyLqaRZwPmZwg44Jf2dS84Dm3Y=
8393
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.3 h1:eAh2A4b5IzM/lum78bZ590jy36+d/aFLgKF/4Vd1xPE=
8494
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.3/go.mod h1:0yKJC/kb8sAnmlYa6Zs3QVYqaC8ug2AbnNChv5Ox3uA=
95+
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.7 h1:5EniKhLZe4xzL7a+fU3C2tfUN4nWIqlLesfrjkuPFTY=
96+
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.7/go.mod h1:x0nZssQ3qZSnIcePWLvcoFisRXJzcTVvYpAAdYX8+GI=
8597
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.7.0 h1:lguz0bmOoGzozP9XfRJR1QIayEYo+2vP/No3OfLF0pU=
8698
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.7.0/go.mod h1:iu6FSzgt+M2/x3Dk8zhycdIcHjEFb36IS8HVUVFoMg0=
99+
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.9.13 h1:JRaIgADQS/U6uXDqlPiefP32yXTda7Kqfx+LgspooZM=
100+
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.9.13/go.mod h1:CEuVn5WqOMilYl+tbccq8+N2ieCy0gVn3OtRb0vBNNM=
87101
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.15 h1:dM9/92u2F1JbDaGooxTq18wmmFzbJRfXfVfy96/1CXM=
88102
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.15/go.mod h1:SwFBy2vjtA0vZbjjaFtfN045boopadnoVPhu4Fv66vY=
103+
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.21 h1:c31//R3xgIJMSC8S6hEVq+38DcvUlgFY0FM6mSI5oto=
104+
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.21/go.mod h1:r6+pf23ouCB718FUxaqzZdbpYFyDtehyZcmP5KL9FkA=
89105
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.15 h1:moLQUoVq91LiqT1nbvzDukyqAlCv89ZmwaHw/ZFlFZg=
90106
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.15/go.mod h1:ZH34PJUc8ApjBIfgQCFvkWcUDBtl/WTD+uiYHjd8igA=
107+
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.19.21 h1:ZlvrNcHSFFWURB8avufQq9gFsheUgjVD9536obIknfM=
108+
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.19.21/go.mod h1:cv3TNhVrssKR0O/xxLJVRfd2oazSnZnkUeTf6ctUwfQ=
91109
github.com/aws/aws-sdk-go-v2/service/s3 v1.78.2 h1:jIiopHEV22b4yQP2q36Y0OmwLbsxNWdWwfZRR5QRRO4=
92110
github.com/aws/aws-sdk-go-v2/service/s3 v1.78.2/go.mod h1:U5SNqwhXB3Xe6F47kXvWihPl/ilGaEDe8HD/50Z9wxc=
111+
github.com/aws/aws-sdk-go-v2/service/s3 v1.97.3 h1:HwxWTbTrIHm5qY+CAEur0s/figc3qwvLWsNkF4RPToo=
112+
github.com/aws/aws-sdk-go-v2/service/s3 v1.97.3/go.mod h1:uoA43SdFwacedBfSgfFSjjCvYe8aYBS7EnU5GZ/YKMM=
93113
github.com/aws/aws-sdk-go-v2/service/sso v1.25.2 h1:pdgODsAhGo4dvzC3JAG5Ce0PX8kWXrTZGx+jxADD+5E=
94114
github.com/aws/aws-sdk-go-v2/service/sso v1.25.2/go.mod h1:qs4a9T5EMLl/Cajiw2TcbNt2UNo/Hqlyp+GiuG4CFDI=
95115
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.30.0 h1:90uX0veLKcdHVfvxhkWUQSCi5VabtwMLFutYiRke4oo=
@@ -98,6 +118,8 @@ github.com/aws/aws-sdk-go-v2/service/sts v1.33.17 h1:PZV5W8yk4OtH1JAuhV2PXwwO9v5
98118
github.com/aws/aws-sdk-go-v2/service/sts v1.33.17/go.mod h1:cQnB8CUnxbMU82JvlqjKR2HBOm3fe9pWorWBza6MBJ4=
99119
github.com/aws/smithy-go v1.22.3 h1:Z//5NuZCSW6R4PhQ93hShNbyBbn8BWCmCVCt+Q8Io5k=
100120
github.com/aws/smithy-go v1.22.3/go.mod h1:t1ufH5HMublsJYulve2RKmHDC15xu1f26kHCp/HgceI=
121+
github.com/aws/smithy-go v1.24.2 h1:FzA3bu/nt/vDvmnkg+R8Xl46gmzEDam6mZ1hzmwXFng=
122+
github.com/aws/smithy-go v1.24.2/go.mod h1:YE2RhdIuDbA5E5bTdciG9KrW3+TiEONeUWCqxX9i1Fc=
101123
github.com/barkimedes/go-deepcopy v0.0.0-20220514131651-17c30cfc62df h1:GSoSVRLoBaFpOOds6QyY1L8AX7uoY+Ln3BHc22W40X0=
102124
github.com/barkimedes/go-deepcopy v0.0.0-20220514131651-17c30cfc62df/go.mod h1:hiVxq5OP2bUGBRNS3Z/bt/reCLFNbdcST6gISi1fiOM=
103125
github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=
@@ -340,6 +362,8 @@ go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.62.0 h1:Hf9xI/X
340362
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.62.0/go.mod h1:NfchwuyNoMcZ5MLHwPrODwUF1HWCXWrL31s8gSAdIKY=
341363
go.opentelemetry.io/otel v1.42.0 h1:lSQGzTgVR3+sgJDAU/7/ZMjN9Z+vUip7leaqBKy4sho=
342364
go.opentelemetry.io/otel v1.42.0/go.mod h1:lJNsdRMxCUIWuMlVJWzecSMuNjE7dOYyWlqOXWkdqCc=
365+
go.opentelemetry.io/otel v1.43.0 h1:mYIM03dnh5zfN7HautFE4ieIig9amkNANT+xcVxAj9I=
366+
go.opentelemetry.io/otel v1.43.0/go.mod h1:JuG+u74mvjvcm8vj8pI5XiHy1zDeoCS2LB1spIq7Ay0=
343367
go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc v0.18.0 h1:deI9UQMoGFgrg5iLPgzueqFPHevDl+28YKfSpPTI6rY=
344368
go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc v0.18.0/go.mod h1:PFx9NgpNUKXdf7J4Q3agRxMs3Y07QhTCVipKmLsMKnU=
345369
go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp v0.18.0 h1:icqq3Z34UrEFk2u+HMhTtRsvo7Ues+eiJVjaJt62njs=
@@ -366,16 +390,24 @@ go.opentelemetry.io/otel/log v0.18.0 h1:XgeQIIBjZZrliksMEbcwMZefoOSMI1hdjiLEiiB0
366390
go.opentelemetry.io/otel/log v0.18.0/go.mod h1:KEV1kad0NofR3ycsiDH4Yjcoj0+8206I6Ox2QYFSNgI=
367391
go.opentelemetry.io/otel/metric v1.42.0 h1:2jXG+3oZLNXEPfNmnpxKDeZsFI5o4J+nz6xUlaFdF/4=
368392
go.opentelemetry.io/otel/metric v1.42.0/go.mod h1:RlUN/7vTU7Ao/diDkEpQpnz3/92J9ko05BIwxYa2SSI=
393+
go.opentelemetry.io/otel/metric v1.43.0 h1:d7638QeInOnuwOONPp4JAOGfbCEpYb+K6DVWvdxGzgM=
394+
go.opentelemetry.io/otel/metric v1.43.0/go.mod h1:RDnPtIxvqlgO8GRW18W6Z/4P462ldprJtfxHxyKd2PY=
369395
go.opentelemetry.io/otel/sdk v1.42.0 h1:LyC8+jqk6UJwdrI/8VydAq/hvkFKNHZVIWuslJXYsDo=
370396
go.opentelemetry.io/otel/sdk v1.42.0/go.mod h1:rGHCAxd9DAph0joO4W6OPwxjNTYWghRWmkHuGbayMts=
397+
go.opentelemetry.io/otel/sdk v1.43.0 h1:pi5mE86i5rTeLXqoF/hhiBtUNcrAGHLKQdhg4h4V9Dg=
398+
go.opentelemetry.io/otel/sdk v1.43.0/go.mod h1:P+IkVU3iWukmiit/Yf9AWvpyRDlUeBaRg6Y+C58QHzg=
371399
go.opentelemetry.io/otel/sdk/log v0.18.0 h1:n8OyZr7t7otkeTnPTbDNom6rW16TBYGtvyy2Gk6buQw=
372400
go.opentelemetry.io/otel/sdk/log v0.18.0/go.mod h1:C0+wxkTwKpOCZLrlJ3pewPiiQwpzycPI/u6W0Z9fuYk=
373401
go.opentelemetry.io/otel/sdk/log/logtest v0.18.0 h1:l3mYuPsuBx6UKE47BVcPrZoZ0q/KER57vbj2qkgDLXA=
374402
go.opentelemetry.io/otel/sdk/log/logtest v0.18.0/go.mod h1:7cHtiVJpZebB3wybTa4NG+FUo5NPe3PROz1FqB0+qdw=
375403
go.opentelemetry.io/otel/sdk/metric v1.42.0 h1:D/1QR46Clz6ajyZ3G8SgNlTJKBdGp84q9RKCAZ3YGuA=
376404
go.opentelemetry.io/otel/sdk/metric v1.42.0/go.mod h1:Ua6AAlDKdZ7tdvaQKfSmnFTdHx37+J4ba8MwVCYM5hc=
405+
go.opentelemetry.io/otel/sdk/metric v1.43.0 h1:S88dyqXjJkuBNLeMcVPRFXpRw2fuwdvfCGLEo89fDkw=
406+
go.opentelemetry.io/otel/sdk/metric v1.43.0/go.mod h1:C/RJtwSEJ5hzTiUz5pXF1kILHStzb9zFlIEe85bhj6A=
377407
go.opentelemetry.io/otel/trace v1.42.0 h1:OUCgIPt+mzOnaUTpOQcBiM/PLQ/Op7oq6g4LenLmOYY=
378408
go.opentelemetry.io/otel/trace v1.42.0/go.mod h1:f3K9S+IFqnumBkKhRJMeaZeNk9epyhnCmQh/EysQCdc=
409+
go.opentelemetry.io/otel/trace v1.43.0 h1:BkNrHpup+4k4w+ZZ86CZoHHEkohws8AY+WTX09nk+3A=
410+
go.opentelemetry.io/otel/trace v1.43.0/go.mod h1:/QJhyVBUUswCphDVxq+8mld+AvhXZLhe+8WVFxiFff0=
379411
go.opentelemetry.io/proto/otlp v1.9.0 h1:l706jCMITVouPOqEnii2fIAuO3IVGBRPV5ICjceRb/A=
380412
go.opentelemetry.io/proto/otlp v1.9.0/go.mod h1:xE+Cx5E/eEHw+ISFkwPLwCZefwVjY+pqKg1qcK03+/4=
381413
go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto=
@@ -458,6 +490,8 @@ golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
458490
golang.org/x/sys v0.16.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
459491
golang.org/x/sys v0.41.0 h1:Ivj+2Cp/ylzLiEU89QhWblYnOE9zerudt9Ftecq2C6k=
460492
golang.org/x/sys v0.41.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks=
493+
golang.org/x/sys v0.42.0 h1:omrd2nAlyT5ESRdCLYdm3+fMfNFE/+Rf4bDIQImRJeo=
494+
golang.org/x/sys v0.42.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw=
461495
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
462496
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
463497
golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k=

flagd-proxy/go.mod

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -41,25 +41,25 @@ require (
4141
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.51.0 // indirect
4242
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.51.0 // indirect
4343
github.com/aws/aws-sdk-go v1.55.6 // indirect
44-
github.com/aws/aws-sdk-go-v2 v1.36.3 // indirect
45-
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.10 // indirect
44+
github.com/aws/aws-sdk-go-v2 v1.41.5 // indirect
45+
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.7.8 // indirect
4646
github.com/aws/aws-sdk-go-v2/config v1.29.12 // indirect
4747
github.com/aws/aws-sdk-go-v2/credentials v1.17.65 // indirect
4848
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.30 // indirect
4949
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.17.69 // indirect
50-
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.34 // indirect
51-
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.34 // indirect
50+
github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.21 // indirect
51+
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.21 // indirect
5252
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.3 // indirect
53-
github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.34 // indirect
54-
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.3 // indirect
55-
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.7.0 // indirect
56-
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.15 // indirect
57-
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.15 // indirect
58-
github.com/aws/aws-sdk-go-v2/service/s3 v1.78.2 // indirect
53+
github.com/aws/aws-sdk-go-v2/internal/v4a v1.4.22 // indirect
54+
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.7 // indirect
55+
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.9.13 // indirect
56+
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.21 // indirect
57+
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.19.21 // indirect
58+
github.com/aws/aws-sdk-go-v2/service/s3 v1.97.3 // indirect
5959
github.com/aws/aws-sdk-go-v2/service/sso v1.25.2 // indirect
6060
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.30.0 // indirect
6161
github.com/aws/aws-sdk-go-v2/service/sts v1.33.17 // indirect
62-
github.com/aws/smithy-go v1.22.3 // indirect
62+
github.com/aws/smithy-go v1.24.2 // indirect
6363
github.com/beorn7/perks v1.0.1 // indirect
6464
github.com/cespare/xxhash/v2 v2.3.0 // indirect
6565
github.com/cncf/xds/go v0.0.0-20251210132809-ee656c7534f5 // indirect

0 commit comments

Comments
 (0)