Skip to content

fix(deps): Update module go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp to v1.43.0 [SECURITY]#22496

Merged
kodiakhq[bot] merged 2 commits intomainfrom
renovate/go-go.opentelemetry.io-otel-exporters-otlp-otlpmetric-otlpmetrichttp-vulnerability
Apr 9, 2026
Merged

fix(deps): Update module go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp to v1.43.0 [SECURITY]#22496
kodiakhq[bot] merged 2 commits intomainfrom
renovate/go-go.opentelemetry.io-otel-exporters-otlp-otlpmetric-otlpmetrichttp-vulnerability

Conversation

@cloudquery-ci
Copy link
Copy Markdown
Contributor

@cloudquery-ci cloudquery-ci bot commented Apr 8, 2026

This PR contains the following updates:

Package Change Age Confidence
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v1.42.0v1.43.0 age confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.

GitHub Vulnerability Alerts

CVE-2026-39882

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):

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):

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):

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

attack_scenario.md

poc.zip

Fixed in: https://github.com/open-telemetry/opentelemetry-go/pull/8108


Release Notes

open-telemetry/opentelemetry-go (go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp)

v1.43.0: /v0.65.0/v0.19.0

Compare Source

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 support. (#​8012)
  • Add service detection with WithService in go.opentelemetry.io/otel/sdk/resource. (#​7642)
  • Add DefaultWithContext and EnvironmentWithContext in go.opentelemetry.io/otel/sdk/resource to support plumbing context.Context through default and environment detectors. (#​8051)
  • Support attributes with empty value (attribute.EMPTY) in go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc. (#​8038)
  • Support attributes with empty value (attribute.EMPTY) in go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc. (#​8038)
  • Support attributes with empty value (attribute.EMPTY) in go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc. (#​8038)
  • Support attributes with empty value (attribute.EMPTY) in go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp. (#​8038)
  • Support attributes with empty value (attribute.EMPTY) in go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp. (#​8038)
  • Support attributes with empty value (attribute.EMPTY) in go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp. (#​8038)
  • Support attributes with empty value (attribute.EMPTY) in go.opentelemetry.io/otel/sdk/metric/metricdata/metricdatatest. (#​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. (#​8060)
  • Add WithCardinalityLimitSelector for metric reader for configuring cardinality limits specific to the instrument kind. (#​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. (#​8038)
  • Refactor slice handling in go.opentelemetry.io/otel/attribute to optimize short slice values with fixed-size fast paths. (#​8039)
  • Improve performance of span metric recording in go.opentelemetry.io/otel/sdk/trace by returning early if self-observability is not enabled. (#​8067)
  • Improve formatting of metric data diffs in go.opentelemetry.io/otel/sdk/metric/metricdata/metricdatatest. (#​8073)
Deprecated
  • Deprecate INVALID in go.opentelemetry.io/otel/attribute. Use EMPTY instead. (#​8038)
Fixed
  • Return spec-compliant TraceIdRatioBased description. This is a breaking behavioral change, but it is necessary to
    make the implementation spec-compliant. (#​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. (#​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. (#​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. (#​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. (#​8108)
  • WithHostID detector in go.opentelemetry.io/otel/sdk/resource to use full path for kenv command on BSD. (#​8113)
  • Fix missing request.GetBody in go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp to correctly handle HTTP2 GOAWAY frame. (#​8096)
What's Changed
New Contributors

Full Changelog: open-telemetry/opentelemetry-go@v1.42.0...v1.43.0


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.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@cloudquery-ci cloudquery-ci bot added automerge Automatically merge once required checks pass security labels Apr 8, 2026
@cloudquery-ci
Copy link
Copy Markdown
Contributor Author

cloudquery-ci bot commented Apr 8, 2026

/gen sha=c6fdf50be3c4ac3071e64882f2f5720f4c4a08a3 dir=plugins/source/hackernews

@cloudquery-ci
Copy link
Copy Markdown
Contributor Author

cloudquery-ci bot commented Apr 8, 2026

/gen sha=c6fdf50be3c4ac3071e64882f2f5720f4c4a08a3 dir=plugins/source/test

@cloudquery-ci
Copy link
Copy Markdown
Contributor Author

cloudquery-ci bot commented Apr 8, 2026

/gen sha=c6fdf50be3c4ac3071e64882f2f5720f4c4a08a3 dir=plugins/source/xkcd

kodiakhq bot pushed a commit that referenced this pull request Apr 15, 2026
🤖 I have created a release *beep* *boop*
---


## [2.8.36](plugins-destination-test-v2.8.35...plugins-destination-test-v2.8.36) (2026-04-15)


### Bug Fixes

* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp to v0.19.0 [SECURITY] ([#22495](#22495)) ([c0a38fd](c0a38fd))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp to v1.43.0 [SECURITY] ([#22496](#22496)) ([1cf6439](1cf6439))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp to v1.43.0 [SECURITY] ([#22497](#22497)) ([122ba44](122ba44))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
kodiakhq bot pushed a commit that referenced this pull request Apr 15, 2026
🤖 I have created a release *beep* *boop*
---


## [5.7.7](plugins-destination-kafka-v5.7.6...plugins-destination-kafka-v5.7.7) (2026-04-15)


### Bug Fixes

* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp to v0.19.0 [SECURITY] ([#22495](#22495)) ([c0a38fd](c0a38fd))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp to v1.43.0 [SECURITY] ([#22496](#22496)) ([1cf6439](1cf6439))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp to v1.43.0 [SECURITY] ([#22497](#22497)) ([122ba44](122ba44))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
kodiakhq bot pushed a commit that referenced this pull request Apr 15, 2026
🤖 I have created a release *beep* *boop*
---


## [3.0.4](plugins-destination-meilisearch-v3.0.3...plugins-destination-meilisearch-v3.0.4) (2026-04-15)


### Bug Fixes

* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp to v0.19.0 [SECURITY] ([#22495](#22495)) ([c0a38fd](c0a38fd))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp to v1.43.0 [SECURITY] ([#22496](#22496)) ([1cf6439](1cf6439))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp to v1.43.0 [SECURITY] ([#22497](#22497)) ([122ba44](122ba44))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
kodiakhq bot pushed a commit that referenced this pull request Apr 15, 2026
🤖 I have created a release *beep* *boop*
---


## [8.14.7](plugins-destination-postgresql-v8.14.6...plugins-destination-postgresql-v8.14.7) (2026-04-15)


### Bug Fixes

* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp to v0.19.0 [SECURITY] ([#22495](#22495)) ([c0a38fd](c0a38fd))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp to v1.43.0 [SECURITY] ([#22496](#22496)) ([1cf6439](1cf6439))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp to v1.43.0 [SECURITY] ([#22497](#22497)) ([122ba44](122ba44))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
kodiakhq bot pushed a commit that referenced this pull request Apr 15, 2026
🤖 I have created a release *beep* *boop*
---


## [2.1.18](plugins-transformer-jsonflattener-v2.1.17...plugins-transformer-jsonflattener-v2.1.18) (2026-04-15)


### Bug Fixes

* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp to v0.19.0 [SECURITY] ([#22495](#22495)) ([c0a38fd](c0a38fd))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp to v1.43.0 [SECURITY] ([#22496](#22496)) ([1cf6439](1cf6439))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp to v1.43.0 [SECURITY] ([#22497](#22497)) ([122ba44](122ba44))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
kodiakhq bot pushed a commit that referenced this pull request Apr 15, 2026
🤖 I have created a release *beep* *boop*
---


## [2.14.7](plugins-destination-sqlite-v2.14.6...plugins-destination-sqlite-v2.14.7) (2026-04-15)


### Bug Fixes

* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp to v0.19.0 [SECURITY] ([#22495](#22495)) ([c0a38fd](c0a38fd))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp to v1.43.0 [SECURITY] ([#22496](#22496)) ([1cf6439](1cf6439))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp to v1.43.0 [SECURITY] ([#22497](#22497)) ([122ba44](122ba44))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
kodiakhq bot pushed a commit that referenced this pull request Apr 15, 2026
🤖 I have created a release *beep* *boop*
---


## [3.9.7](plugins-source-hackernews-v3.9.6...plugins-source-hackernews-v3.9.7) (2026-04-15)


### Bug Fixes

* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp to v0.19.0 [SECURITY] ([#22495](#22495)) ([c0a38fd](c0a38fd))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp to v1.43.0 [SECURITY] ([#22496](#22496)) ([1cf6439](1cf6439))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp to v1.43.0 [SECURITY] ([#22497](#22497)) ([122ba44](122ba44))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
kodiakhq bot pushed a commit that referenced this pull request Apr 15, 2026
🤖 I have created a release *beep* *boop*
---


## [2.6.20](plugins-transformer-basic-v2.6.19...plugins-transformer-basic-v2.6.20) (2026-04-15)


### Bug Fixes

* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp to v0.19.0 [SECURITY] ([#22495](#22495)) ([c0a38fd](c0a38fd))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp to v1.43.0 [SECURITY] ([#22496](#22496)) ([1cf6439](1cf6439))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp to v1.43.0 [SECURITY] ([#22497](#22497)) ([122ba44](122ba44))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
kodiakhq bot pushed a commit that referenced this pull request Apr 15, 2026
🤖 I have created a release *beep* *boop*
---


## [5.3.8](plugins-destination-mssql-v5.3.7...plugins-destination-mssql-v5.3.8) (2026-04-15)


### Bug Fixes

* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp to v0.19.0 [SECURITY] ([#22495](#22495)) ([c0a38fd](c0a38fd))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp to v1.43.0 [SECURITY] ([#22496](#22496)) ([1cf6439](1cf6439))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp to v1.43.0 [SECURITY] ([#22497](#22497)) ([122ba44](122ba44))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
kodiakhq bot pushed a commit that referenced this pull request Apr 15, 2026
🤖 I have created a release *beep* *boop*
---


## [4.8.18](plugins-source-test-v4.8.17...plugins-source-test-v4.8.18) (2026-04-15)


### Bug Fixes

* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp to v0.19.0 [SECURITY] ([#22495](#22495)) ([c0a38fd](c0a38fd))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp to v1.43.0 [SECURITY] ([#22496](#22496)) ([1cf6439](1cf6439))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp to v1.43.0 [SECURITY] ([#22497](#22497)) ([122ba44](122ba44))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
kodiakhq bot pushed a commit that referenced this pull request Apr 15, 2026
🤖 I have created a release *beep* *boop*
---


## [5.6.7](plugins-destination-mysql-v5.6.6...plugins-destination-mysql-v5.6.7) (2026-04-15)


### Bug Fixes

* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp to v0.19.0 [SECURITY] ([#22495](#22495)) ([c0a38fd](c0a38fd))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp to v1.43.0 [SECURITY] ([#22496](#22496)) ([1cf6439](1cf6439))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp to v1.43.0 [SECURITY] ([#22497](#22497)) ([122ba44](122ba44))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
kodiakhq bot pushed a commit that referenced this pull request Apr 15, 2026
🤖 I have created a release *beep* *boop*
---


## [5.5.7](plugins-destination-neo4j-v5.5.6...plugins-destination-neo4j-v5.5.7) (2026-04-15)


### Bug Fixes

* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp to v0.19.0 [SECURITY] ([#22495](#22495)) ([c0a38fd](c0a38fd))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp to v1.43.0 [SECURITY] ([#22496](#22496)) ([1cf6439](1cf6439))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp to v1.43.0 [SECURITY] ([#22497](#22497)) ([122ba44](122ba44))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
kodiakhq bot pushed a commit that referenced this pull request Apr 15, 2026
🤖 I have created a release *beep* *boop*
---


## [1.5.39](plugins-source-xkcd-v1.5.38...plugins-source-xkcd-v1.5.39) (2026-04-15)


### Bug Fixes

* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp to v0.19.0 [SECURITY] ([#22495](#22495)) ([c0a38fd](c0a38fd))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp to v1.43.0 [SECURITY] ([#22496](#22496)) ([1cf6439](1cf6439))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp to v1.43.0 [SECURITY] ([#22497](#22497)) ([122ba44](122ba44))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
kodiakhq bot pushed a commit that referenced this pull request Apr 15, 2026
🤖 I have created a release *beep* *boop*
---


## [1.1.36](plugins-transformer-test-v1.1.35...plugins-transformer-test-v1.1.36) (2026-04-15)


### Bug Fixes

* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp to v0.19.0 [SECURITY] ([#22495](#22495)) ([c0a38fd](c0a38fd))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp to v1.43.0 [SECURITY] ([#22496](#22496)) ([1cf6439](1cf6439))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp to v1.43.0 [SECURITY] ([#22497](#22497)) ([122ba44](122ba44))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
kodiakhq bot pushed a commit that referenced this pull request Apr 15, 2026
🤖 I have created a release *beep* *boop*
---


## [8.2.1](plugins-destination-clickhouse-v8.2.0...plugins-destination-clickhouse-v8.2.1) (2026-04-15)


### Bug Fixes

* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp to v0.19.0 [SECURITY] ([#22495](#22495)) ([c0a38fd](c0a38fd))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp to v1.43.0 [SECURITY] ([#22496](#22496)) ([1cf6439](1cf6439))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp to v1.43.0 [SECURITY] ([#22497](#22497)) ([122ba44](122ba44))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
kodiakhq bot pushed a commit that referenced this pull request Apr 15, 2026
🤖 I have created a release *beep* *boop*
---


## [4.0.2](plugins-destination-elasticsearch-v4.0.1...plugins-destination-elasticsearch-v4.0.2) (2026-04-15)


### Bug Fixes

* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp to v0.19.0 [SECURITY] ([#22495](#22495)) ([c0a38fd](c0a38fd))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp to v1.43.0 [SECURITY] ([#22496](#22496)) ([1cf6439](1cf6439))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp to v1.43.0 [SECURITY] ([#22497](#22497)) ([122ba44](122ba44))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
kodiakhq bot pushed a commit that referenced this pull request Apr 15, 2026
🤖 I have created a release *beep* *boop*
---


## [4.7.8](plugins-destination-bigquery-v4.7.7...plugins-destination-bigquery-v4.7.8) (2026-04-15)


### Bug Fixes

* **deps:** Update module cloud.google.com/go/bigquery to v1.75.0 ([#22523](#22523)) ([477d7d8](477d7d8))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp to v0.19.0 [SECURITY] ([#22495](#22495)) ([c0a38fd](c0a38fd))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp to v1.43.0 [SECURITY] ([#22496](#22496)) ([1cf6439](1cf6439))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp to v1.43.0 [SECURITY] ([#22497](#22497)) ([122ba44](122ba44))
* **deps:** Update module google.golang.org/api to v0.273.0 ([#22476](#22476)) ([826e24f](826e24f))
* **deps:** Update module google.golang.org/api to v0.274.0 ([#22524](#22524)) ([f5067c6](f5067c6))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
kodiakhq bot pushed a commit that referenced this pull request Apr 15, 2026
🤖 I have created a release *beep* *boop*
---


## [6.3.7](plugins-destination-duckdb-v6.3.6...plugins-destination-duckdb-v6.3.7) (2026-04-15)


### Bug Fixes

* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp to v0.19.0 [SECURITY] ([#22495](#22495)) ([c0a38fd](c0a38fd))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp to v1.43.0 [SECURITY] ([#22496](#22496)) ([1cf6439](1cf6439))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp to v1.43.0 [SECURITY] ([#22497](#22497)) ([122ba44](122ba44))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
kodiakhq bot pushed a commit that referenced this pull request Apr 15, 2026
🤖 I have created a release *beep* *boop*
---


## [7.10.10](plugins-destination-s3-v7.10.9...plugins-destination-s3-v7.10.10) (2026-04-15)


### Bug Fixes

* **deps:** Update aws-sdk-go-v2 monorepo ([#22475](#22475)) ([c9cb3cf](c9cb3cf))
* **deps:** Update aws-sdk-go-v2 monorepo ([#22519](#22519)) ([ab37fc2](ab37fc2))
* **deps:** Update module github.com/aws/smithy-go to v1.24.3 ([#22522](#22522)) ([b86973d](b86973d))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp to v0.19.0 [SECURITY] ([#22495](#22495)) ([c0a38fd](c0a38fd))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp to v1.43.0 [SECURITY] ([#22496](#22496)) ([1cf6439](1cf6439))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp to v1.43.0 [SECURITY] ([#22497](#22497)) ([122ba44](122ba44))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
kodiakhq bot pushed a commit that referenced this pull request Apr 15, 2026
🤖 I have created a release *beep* *boop*
---


## [5.2.7](plugins-destination-snowflake-v5.2.6...plugins-destination-snowflake-v5.2.7) (2026-04-15)


### Bug Fixes

* **deps:** Update module github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream to v1.7.8 [SECURITY] ([#22493](#22493)) ([bfc0e61](bfc0e61))
* **deps:** Update module github.com/aws/aws-sdk-go-v2/service/s3 to v1.97.3 [SECURITY] ([#22494](#22494)) ([605bf84](605bf84))
* **deps:** Update module github.com/snowflakedb/gosnowflake to v2 ([#22439](#22439)) ([5417c8e](5417c8e))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp to v0.19.0 [SECURITY] ([#22495](#22495)) ([c0a38fd](c0a38fd))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp to v1.43.0 [SECURITY] ([#22496](#22496)) ([1cf6439](1cf6439))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp to v1.43.0 [SECURITY] ([#22497](#22497)) ([122ba44](122ba44))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
kodiakhq bot pushed a commit that referenced this pull request Apr 15, 2026
🤖 I have created a release *beep* *boop*
---


## [2.8.8](plugins-destination-firehose-v2.8.7...plugins-destination-firehose-v2.8.8) (2026-04-15)


### Bug Fixes

* **deps:** Update aws-sdk-go-v2 monorepo ([#22472](#22472)) ([8d5c016](8d5c016))
* **deps:** Update module github.com/aws/aws-sdk-go-v2/config to v1.32.14 ([#22520](#22520)) ([56296bb](56296bb))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp to v0.19.0 [SECURITY] ([#22495](#22495)) ([c0a38fd](c0a38fd))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp to v1.43.0 [SECURITY] ([#22496](#22496)) ([1cf6439](1cf6439))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp to v1.43.0 [SECURITY] ([#22497](#22497)) ([122ba44](122ba44))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
kodiakhq bot pushed a commit that referenced this pull request Apr 15, 2026
🤖 I have created a release *beep* *boop*
---


## [2.8.2](plugins-destination-gremlin-v2.8.1...plugins-destination-gremlin-v2.8.2) (2026-04-15)


### Bug Fixes

* **deps:** Update aws-sdk-go-v2 monorepo ([#22473](#22473)) ([8d1340d](8d1340d))
* **deps:** Update module github.com/aws/aws-sdk-go-v2/config to v1.32.14 ([#22521](#22521)) ([21cb00b](21cb00b))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp to v0.19.0 [SECURITY] ([#22495](#22495)) ([c0a38fd](c0a38fd))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp to v1.43.0 [SECURITY] ([#22496](#22496)) ([1cf6439](1cf6439))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp to v1.43.0 [SECURITY] ([#22497](#22497)) ([122ba44](122ba44))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
kodiakhq bot pushed a commit that referenced this pull request Apr 15, 2026
🤖 I have created a release *beep* *boop*
---


## [3.0.3](plugins-destination-mongodb-v3.0.2...plugins-destination-mongodb-v3.0.3) (2026-04-15)


### Bug Fixes

* **deps:** Update aws-sdk-go-v2 monorepo ([#22474](#22474)) ([edab21c](edab21c))
* **deps:** Update aws-sdk-go-v2 monorepo ([#22518](#22518)) ([4c835e4](4c835e4))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp to v0.19.0 [SECURITY] ([#22495](#22495)) ([c0a38fd](c0a38fd))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp to v1.43.0 [SECURITY] ([#22496](#22496)) ([1cf6439](1cf6439))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp to v1.43.0 [SECURITY] ([#22497](#22497)) ([122ba44](122ba44))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
kodiakhq bot pushed a commit that referenced this pull request Apr 15, 2026
🤖 I have created a release *beep* *boop*
---


## [4.5.8](plugins-destination-azblob-v4.5.7...plugins-destination-azblob-v4.5.8) (2026-04-15)


### Bug Fixes

* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp to v0.19.0 [SECURITY] ([#22495](#22495)) ([c0a38fd](c0a38fd))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp to v1.43.0 [SECURITY] ([#22496](#22496)) ([1cf6439](1cf6439))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp to v1.43.0 [SECURITY] ([#22497](#22497)) ([122ba44](122ba44))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
kodiakhq bot pushed a commit that referenced this pull request Apr 15, 2026
🤖 I have created a release *beep* *boop*
---


## [5.5.8](plugins-destination-gcs-v5.5.7...plugins-destination-gcs-v5.5.8) (2026-04-15)


### Bug Fixes

* **deps:** Update module github.com/go-jose/go-jose/v4 to v4.1.4 [SECURITY] ([#22467](#22467)) ([5ea6f26](5ea6f26))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp to v0.19.0 [SECURITY] ([#22495](#22495)) ([c0a38fd](c0a38fd))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp to v1.43.0 [SECURITY] ([#22496](#22496)) ([1cf6439](1cf6439))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp to v1.43.0 [SECURITY] ([#22497](#22497)) ([122ba44](122ba44))
* **deps:** Update module google.golang.org/api to v0.273.0 ([#22477](#22477)) ([8fd4bea](8fd4bea))
* **deps:** Update module google.golang.org/api to v0.274.0 ([#22525](#22525)) ([b6d8afa](b6d8afa))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
kodiakhq bot pushed a commit that referenced this pull request Apr 16, 2026
🤖 I have created a release *beep* *boop*
---


## [5.5.7](plugins-destination-file-v5.5.6...plugins-destination-file-v5.5.7) (2026-04-16)


### Bug Fixes

* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp to v0.19.0 [SECURITY] ([#22495](#22495)) ([c0a38fd](c0a38fd))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp to v1.43.0 [SECURITY] ([#22496](#22496)) ([1cf6439](1cf6439))
* **deps:** Update module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp to v1.43.0 [SECURITY] ([#22497](#22497)) ([122ba44](122ba44))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment