Skip to content

Commit

Permalink
build(deps): bump go.opentelemetry.io/otel/exporters/otlp/otlptrace f…
Browse files Browse the repository at this point in the history
…rom 1.28.0 to 1.31.0 (#4617)

Bumps
[go.opentelemetry.io/otel/exporters/otlp/otlptrace](https://github.com/open-telemetry/opentelemetry-go)
from 1.28.0 to 1.31.0.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md">go.opentelemetry.io/otel/exporters/otlp/otlptrace's
changelog</a>.</em></p>
<blockquote>
<h2>[1.31.0/0.53.0/0.7.0/0.0.10] 2024-10-11</h2>
<h3>Added</h3>
<ul>
<li>Add <code>go.opentelemetry.io/otel/sdk/metric/exemplar</code>
package which includes <code>Exemplar</code>, <code>Filter</code>,
<code>TraceBasedFilter</code>, <code>AlwaysOnFilter</code>,
<code>HistogramReservoir</code>, <code>FixedSizeReservoir</code>,
<code>Reservoir</code>, <code>Value</code> and <code>ValueType</code>
types. These will be used for configuring the exemplar reservoir for the
metrics sdk. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5747">#5747</a>,
<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5862">#5862</a>)</li>
<li>Add <code>WithExportBufferSize</code> option to log batch
processor.(<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5877">#5877</a>)</li>
</ul>
<h3>Changed</h3>
<ul>
<li>Enable exemplars by default in
<code>go.opentelemetry.io/otel/sdk/metric</code>. Exemplars can be
disabled by setting <code>OTEL_METRICS_EXEMPLAR_FILTER=always_off</code>
(<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5778">#5778</a>)</li>
<li><code>Logger.Enabled</code> in
<code>go.opentelemetry.io/otel/log</code> now accepts a newly introduced
<code>EnabledParameters</code> type instead of <code>Record</code>. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5791">#5791</a>)</li>
<li><code>FilterProcessor.Enabled</code> in
<code>go.opentelemetry.io/otel/sdk/log/internal/x</code> now accepts
<code>EnabledParameters</code> instead of <code>Record</code>. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5791">#5791</a>)</li>
<li>The <code>Record</code> type in
<code>go.opentelemetry.io/otel/log</code> is no longer comparable. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5847">#5847</a>)</li>
<li>Performance improvements for the trace SDK
<code>SetAttributes</code> method in <code>Span</code>. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5864">#5864</a>)</li>
<li>Reduce memory allocations for the <code>Event</code> and
<code>Link</code> lists in <code>Span</code>. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5858">#5858</a>)</li>
<li>Performance improvements for the trace SDK <code>AddEvent</code>,
<code>AddLink</code>, <code>RecordError</code> and <code>End</code>
methods in <code>Span</code>. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5874">#5874</a>)</li>
</ul>
<h3>Deprecated</h3>
<ul>
<li>Deprecate all examples under
<code>go.opentelemetry.io/otel/example</code> as they are moved to <a
href="https://github.com/open-telemetry/opentelemetry-go-contrib/tree/main/examples">Contrib
repository</a>. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5854">#5854</a>)</li>
</ul>
<h3>Fixed</h3>
<ul>
<li>The race condition for multiple <code>FixedSize</code> exemplar
reservoirs identified in <a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5814">#5814</a>
is resolved. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5819">#5819</a>)</li>
<li>Fix log records duplication in case of heterogeneous resource
attributes by correctly mapping each log record to it's resource and
scope. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5803">#5803</a>)</li>
<li>Fix timer channel drain to avoid hanging on Go 1.23. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5868">#5868</a>)</li>
<li>Fix delegation for global meter providers, and panic when calling
otel.SetMeterProvider. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5827">#5827</a>)</li>
<li>Change the <code>reflect.TypeOf</code> to use a nil pointer to not
allocate on the heap unless necessary. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5827">#5827</a>)</li>
</ul>
<h2>[1.30.0/0.52.0/0.6.0/0.0.9] 2024-09-09</h2>
<h3>Added</h3>
<ul>
<li>Support <code>OTEL_EXPORTER_OTLP_LOGS_INSECURE</code> and
<code>OTEL_EXPORTER_OTLP_INSECURE</code> environments in
<code>go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc</code>.
(<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5739">#5739</a>)</li>
<li>The <code>WithResource</code> option for
<code>NewMeterProvider</code> now merges the provided resources with the
ones from environment variables. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5773">#5773</a>)</li>
<li>The <code>WithResource</code> option for
<code>NewLoggerProvider</code> now merges the provided resources with
the ones from environment variables. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5773">#5773</a>)</li>
<li>Add UTF-8 support to
<code>go.opentelemetry.io/otel/exporters/prometheus</code>. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5755">#5755</a>)</li>
</ul>
<h3>Fixed</h3>
<ul>
<li>Fix memory leak in the global <code>MeterProvider</code> when
identical instruments are repeatedly created. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5754">#5754</a>)</li>
<li>Fix panic on instruments creation when setting meter provider. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5758">#5758</a>)</li>
<li>Fix an issue where <code>SetMeterProvider</code> in
<code>go.opentelemetry.io/otel</code> might miss the delegation for
instruments and registries. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5780">#5780</a>)</li>
</ul>
<h3>Removed</h3>
<ul>
<li>Drop support for [Go 1.21]. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5736">#5736</a>,
<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5740">#5740</a>,
<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5800">#5800</a>)</li>
</ul>
<h2>[1.29.0/0.51.0/0.5.0] 2024-08-23</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/open-telemetry/opentelemetry-go/commit/bc2fe88756962b76eb43ea2fd92ed3f5b6491cc0"><code>bc2fe88</code></a>
Release v1.31.0/v0.53.0/v0.7.0/v0.0.10 (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5883">#5883</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-go/commit/a7d5c1aef7a99e79eab0287327d3731ee2c2e3b5"><code>a7d5c1a</code></a>
Add an option to configure the exporter buffer of the BatchProcessor (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5877">#5877</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-go/commit/eb9279bed2db7f8e91dd2086cc84515e5148c4c9"><code>eb9279b</code></a>
fix(deps): update golang.org/x/exp digest to f66d83c (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5880">#5880</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-go/commit/64416533d5cc340a8cc53d98084604758283af09"><code>6441653</code></a>
Performance improvements for the trace SDK in <code>Span</code>. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5874">#5874</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-go/commit/8e9baf2165e9ae2907eb01bd96ff58b8e51eeb9e"><code>8e9baf2</code></a>
chore(deps): update lycheeverse/lychee-action action to v2 (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5878">#5878</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-go/commit/8fbaa970843f0899228bc19c1e45a31f5a5bb73e"><code>8fbaa97</code></a>
Reduce <code>newEvictedQueueLink</code> and
<code>newEvictedQueueEvent</code> memory allocations (#...</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-go/commit/4a911f965b9a159bb64334e412f6e90fc0117c9e"><code>4a911f9</code></a>
chore(deps): update googleapis to 5fefd90 (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5876">#5876</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-go/commit/98cbdcb9a68c2862d16791e1a0954365c6addfc4"><code>98cbdcb</code></a>
fix(deps): update module google.golang.org/protobuf to v1.35.1 (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5875">#5875</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-go/commit/3cbd9671528117454519809f9292fb264415cf38"><code>3cbd967</code></a>
Performance improvements for <code>recordingSpan</code>
<code>SetAttributes</code> and `addOverCapA...</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-go/commit/9e791a62bad76216fcf286eccb6c3d33b2ba0d26"><code>9e791a6</code></a>
fix(deps): update golang.org/x (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5872">#5872</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/open-telemetry/opentelemetry-go/compare/v1.28.0...v1.31.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=go.opentelemetry.io/otel/exporters/otlp/otlptrace&package-manager=go_modules&previous-version=1.28.0&new-version=1.31.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Walid Baruni <[email protected]>
  • Loading branch information
dependabot[bot] and wdbaruni authored Oct 14, 2024
1 parent 85cbe5b commit 4f9580d
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 22 deletions.
14 changes: 7 additions & 7 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -60,19 +60,19 @@ require (
github.com/vincent-petithory/dataurl v1.0.0
go.etcd.io/bbolt v1.3.8
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0
go.opentelemetry.io/otel v1.30.0
go.opentelemetry.io/otel v1.31.0
go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc v0.6.0
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.28.0
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v1.28.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.28.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.31.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.28.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.28.0
go.opentelemetry.io/otel/log v0.6.0
go.opentelemetry.io/otel/metric v1.30.0
go.opentelemetry.io/otel/sdk v1.30.0
go.opentelemetry.io/otel/metric v1.31.0
go.opentelemetry.io/otel/sdk v1.31.0
go.opentelemetry.io/otel/sdk/log v0.6.0
go.opentelemetry.io/otel/sdk/metric v1.28.0
go.opentelemetry.io/otel/trace v1.30.0
go.opentelemetry.io/otel/trace v1.31.0
go.ptx.dk/multierrgroup v0.0.3
go.uber.org/mock v0.4.0
go.uber.org/zap v1.27.0
Expand Down Expand Up @@ -265,14 +265,14 @@ require (
golang.org/x/net v0.29.0 // indirect
golang.org/x/oauth2 v0.22.0 // indirect
golang.org/x/sync v0.8.0
golang.org/x/sys v0.25.0 // indirect
golang.org/x/sys v0.26.0 // indirect
golang.org/x/term v0.24.0
golang.org/x/text v0.18.0 // indirect
golang.org/x/time v0.6.0
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect
google.golang.org/grpc v1.66.1 // indirect
google.golang.org/protobuf v1.34.2
google.golang.org/protobuf v1.35.1
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
Expand Down
31 changes: 16 additions & 15 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1107,8 +1107,8 @@ github.com/rivo/uniseg v0.4.4/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUc
github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ=
github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4=
github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs=
github.com/rogpeppe/go-internal v1.12.0 h1:exVL4IDcn6na9z1rAb56Vxr+CgyK3nn3O+epU5NdKM8=
github.com/rogpeppe/go-internal v1.12.0/go.mod h1:E+RYuTGaKKdloAfM02xzb0FW3Paa99yedzYV+kq4uf4=
github.com/rogpeppe/go-internal v1.13.1 h1:KvO1DLK/DRN07sQ1LQKScxyZJuNnedQ5/wKSR38lUII=
github.com/rogpeppe/go-internal v1.13.1/go.mod h1:uMEvuHeurkdAXX61udpOXGD/AzZDWNMNyH2VO9fmH0o=
github.com/rs/cors v1.7.0 h1:+88SsELBHx5r+hZ8TCkggzSstaWNbDvThkVK8H6f9ik=
github.com/rs/cors v1.7.0/go.mod h1:gFx+x8UowdsKA9AchylcLynDq+nNFfI8FkUZdN/jGCU=
github.com/rs/xid v1.5.0/go.mod h1:trrq9SKmegXys3aeAKXMUTdJsYXVwGY3RLcfgqegfbg=
Expand Down Expand Up @@ -1254,16 +1254,16 @@ go.opentelemetry.io/otel v1.21.0/go.mod h1:QZzNPQPm1zLX4gZK4cMi+71eaorMSGT3A4znn
go.opentelemetry.io/otel v1.22.0/go.mod h1:eoV4iAi3Ea8LkAEI9+GFT44O6T/D0GWAVFyZVCC6pMI=
go.opentelemetry.io/otel v1.23.0/go.mod h1:YCycw9ZeKhcJFrb34iVSkyT0iczq/zYDtZYFufObyB0=
go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo=
go.opentelemetry.io/otel v1.30.0 h1:F2t8sK4qf1fAmY9ua4ohFS/K+FUuOPemHUIXHtktrts=
go.opentelemetry.io/otel v1.30.0/go.mod h1:tFw4Br9b7fOS+uEao81PJjVMjW/5fvNCbpsDIXqP0pc=
go.opentelemetry.io/otel v1.31.0 h1:NsJcKPIW0D0H3NgzPDHmo0WW6SptzPdqg/L1zsIm2hY=
go.opentelemetry.io/otel v1.31.0/go.mod h1:O0C14Yl9FgkjqcCZAsE053C13OaddMYr/hz6clDkEJE=
go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc v0.6.0 h1:WYsDPt0fM4KZaMhLvY+x6TVXd85P/KNl3Ez3t+0+kGs=
go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc v0.6.0/go.mod h1:vfY4arMmvljeXPNJOE0idEwuoPMjAPCWmBMmj6R5Ksw=
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.28.0 h1:U2guen0GhqH8o/G2un8f/aG/y++OuW6MyCo6hT9prXk=
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.28.0/go.mod h1:yeGZANgEcpdx/WK0IvvRFC+2oLiMS2u4L/0Rj2M2Qr0=
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v1.28.0 h1:aLmmtjRke7LPDQ3lvpFz+kNEH43faFhzW7v8BFIEydg=
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v1.28.0/go.mod h1:TC1pyCt6G9Sjb4bQpShH+P5R53pO6ZuGnHuuln9xMeE=
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.28.0 h1:3Q/xZUyC1BBkualc9ROb4G8qkH90LXEIICcs5zv1OYY=
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.28.0/go.mod h1:s75jGIWA9OfCMzF0xr+ZgfrB5FEbbV7UuYo32ahUiFI=
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.31.0 h1:K0XaT3DwHAcV4nKLzcQvwAgSyisUghWoY20I7huthMk=
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.31.0/go.mod h1:B5Ki776z/MBnVha1Nzwp5arlzBbE3+1jk+pGmaP5HME=
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.28.0 h1:R3X6ZXmNPRR8ul6i3WgFURCHzaXjHdm0karRG/+dj3s=
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.28.0/go.mod h1:QWFXnDavXWwMx2EEcZsf3yxgEKAqsxQ+Syjp+seyInw=
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.28.0 h1:j9+03ymgYhPKmeXGk5Zu+cIZOlVzd9Zv7QIiyItjFBU=
Expand All @@ -1278,13 +1278,13 @@ go.opentelemetry.io/otel/metric v1.21.0/go.mod h1:o1p3CA8nNHW8j5yuQLdc1eeqEaPfzu
go.opentelemetry.io/otel/metric v1.22.0/go.mod h1:evJGjVpZv0mQ5QBRJoBF64yMuOf4xCWdXjK8pzFvliY=
go.opentelemetry.io/otel/metric v1.23.0/go.mod h1:MqUW2X2a6Q8RN96E2/nqNoT+z9BSms20Jb7Bbp+HiTo=
go.opentelemetry.io/otel/metric v1.24.0/go.mod h1:VYhLe1rFfxuTXLgj4CBiyz+9WYBA8pNGJgDcSFRKBco=
go.opentelemetry.io/otel/metric v1.30.0 h1:4xNulvn9gjzo4hjg+wzIKG7iNFEaBMX00Qd4QIZs7+w=
go.opentelemetry.io/otel/metric v1.30.0/go.mod h1:aXTfST94tswhWEb+5QjlSqG+cZlmyXy/u8jFpor3WqQ=
go.opentelemetry.io/otel/metric v1.31.0 h1:FSErL0ATQAmYHUIzSezZibnyVlft1ybhy4ozRPcF2fE=
go.opentelemetry.io/otel/metric v1.31.0/go.mod h1:C3dEloVbLuYoX41KpmAhOqNriGbA+qqH6PQ5E5mUfnY=
go.opentelemetry.io/otel/sdk v1.21.0/go.mod h1:Nna6Yv7PWTdgJHVRD9hIYywQBRx7pbox6nwBnZIxl/E=
go.opentelemetry.io/otel/sdk v1.22.0/go.mod h1:iu7luyVGYovrRpe2fmj3CVKouQNdTOkxtLzPvPz1DOc=
go.opentelemetry.io/otel/sdk v1.24.0/go.mod h1:KVrIYw6tEubO9E96HQpcmpTKDVn9gdv35HoYiQWGDFg=
go.opentelemetry.io/otel/sdk v1.30.0 h1:cHdik6irO49R5IysVhdn8oaiR9m8XluDaJAs4DfOrYE=
go.opentelemetry.io/otel/sdk v1.30.0/go.mod h1:p14X4Ok8S+sygzblytT1nqG98QG2KYKv++HE0LY/mhg=
go.opentelemetry.io/otel/sdk v1.31.0 h1:xLY3abVHYZ5HSfOg3l2E5LUj2Cwva5Y7yGxnSW9H5Gk=
go.opentelemetry.io/otel/sdk v1.31.0/go.mod h1:TfRbMdhvxIIr/B2N2LQW2S5v9m3gOQ/08KsbbO5BPT0=
go.opentelemetry.io/otel/sdk/log v0.6.0 h1:4J8BwXY4EeDE9Mowg+CyhWVBhTSLXVXodiXxS/+PGqI=
go.opentelemetry.io/otel/sdk/log v0.6.0/go.mod h1:L1DN8RMAduKkrwRAFDEX3E3TLOq46+XMGSbUfHU/+vE=
go.opentelemetry.io/otel/sdk/metric v1.28.0 h1:OkuaKgKrgAbYrrY0t92c+cC+2F6hsFNnCQArXCKlg08=
Expand All @@ -1293,8 +1293,8 @@ go.opentelemetry.io/otel/trace v1.21.0/go.mod h1:LGbsEB0f9LGjN+OZaQQ26sohbOmiMR+
go.opentelemetry.io/otel/trace v1.22.0/go.mod h1:RbbHXVqKES9QhzZq/fE5UnOSILqRt40a21sPw2He1xo=
go.opentelemetry.io/otel/trace v1.23.0/go.mod h1:GSGTbIClEsuZrGIzoEHqsVfxgn5UkggkflQwDScNUsk=
go.opentelemetry.io/otel/trace v1.24.0/go.mod h1:HPc3Xr/cOApsBI154IU0OI0HJexz+aw5uPdbs3UCjNU=
go.opentelemetry.io/otel/trace v1.30.0 h1:7UBkkYzeg3C7kQX8VAidWh2biiQbtAKjyIML8dQ9wmc=
go.opentelemetry.io/otel/trace v1.30.0/go.mod h1:5EyKqTzzmyqB9bwtCCq6pDLktPK6fmGf/Dph+8VI02o=
go.opentelemetry.io/otel/trace v1.31.0 h1:ffjsj1aRouKewfr85U2aGagJ46+MvodynlQ1HYdmJys=
go.opentelemetry.io/otel/trace v1.31.0/go.mod h1:TXZkRk7SM2ZQLtR6eoAWQFIHPvzQ06FJAsO1tJg480A=
go.opentelemetry.io/proto/otlp v1.0.0/go.mod h1:Sy6pihPLfYHkr3NkUbEhGHFhINUSI/v80hjKIs5JXpM=
go.opentelemetry.io/proto/otlp v1.3.1 h1:TrMUixzpM0yuc/znrFTP9MMRh8trP93mkCiDVeXrui0=
go.opentelemetry.io/proto/otlp v1.3.1/go.mod h1:0X1WI4de4ZsLrrJNLAQbFeLCm3T7yBkR0XqQ7niQU+8=
Expand Down Expand Up @@ -1635,8 +1635,8 @@ golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
golang.org/x/sys v0.19.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
golang.org/x/sys v0.20.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
golang.org/x/sys v0.21.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
golang.org/x/sys v0.25.0 h1:r+8e+loiHxRqhXVl6ML1nO3l1+oFoWbnlu2Ehimmi34=
golang.org/x/sys v0.25.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
golang.org/x/sys v0.26.0 h1:KHjCJyddX0LoSTb3J+vWpupP9p0oznkqVk/IfjymZbo=
golang.org/x/sys v0.26.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
golang.org/x/telemetry v0.0.0-20240228155512-f48c80bd79b2/go.mod h1:TeRTkGYfJXctD9OcfyVLyj2J3IxLnKwHJR8f4D8a3YE=
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
Expand Down Expand Up @@ -1969,8 +1969,9 @@ google.golang.org/protobuf v1.32.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHh
google.golang.org/protobuf v1.33.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos=
google.golang.org/protobuf v1.34.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos=
google.golang.org/protobuf v1.34.1/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos=
google.golang.org/protobuf v1.34.2 h1:6xV6lTsCfpGD21XK49h7MhtcApnLqkfYgPcdHftf6hg=
google.golang.org/protobuf v1.34.2/go.mod h1:qYOHts0dSfpeUzUFpOMr/WGzszTmLH+DiWniOlNbLDw=
google.golang.org/protobuf v1.35.1 h1:m3LfL6/Ca+fqnjnlqQXNpFPABW1UD7mjh8KO2mKFytA=
google.golang.org/protobuf v1.35.1/go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
Expand Down

0 comments on commit 4f9580d

Please sign in to comment.