dependabot[bot] opened a new pull request, #567:
URL: https://github.com/apache/dubbo-go-samples/pull/567

   Bumps 
[go.opentelemetry.io/otel/sdk](https://github.com/open-telemetry/opentelemetry-go)
 from 1.10.0 to 1.15.1.
   <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/sdk's
 changelog</a>.</em></p>
   <blockquote>
   <h2>[1.15.1/0.38.1] 2023-05-02</h2>
   <h3>Fixed</h3>
   <ul>
   <li>Remove unused imports from <code>sdk/resource/host_id_bsd.go</code> 
which caused build failures. (<a 
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/4040";>#4040</a>,
 <a 
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/4041";>#4041</a>)</li>
   </ul>
   <h2>[1.15.0/0.38.0] 2023-04-27</h2>
   <h3>Added</h3>
   <ul>
   <li>The <code>go.opentelemetry.io/otel/metric/embedded</code> package. (<a 
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/3916";>#3916</a>)</li>
   <li>The <code>Version</code> function to 
<code>go.opentelemetry.io/otel/sdk</code> to return the SDK version. (<a 
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/3949";>#3949</a>)</li>
   <li>Add a <code>WithNamespace</code> option to 
<code>go.opentelemetry.io/otel/exporters/prometheus</code> to allow users to 
prefix metrics with a namespace. (<a 
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/3970";>#3970</a>)</li>
   <li>The following configuration types were added to 
<code>go.opentelemetry.io/otel/metric/instrument</code> to be used in the 
configuration of measurement methods. (<a 
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/3971";>#3971</a>)
   <ul>
   <li>The <code>AddConfig</code> used to hold configuration for addition 
measurements
   <ul>
   <li><code>NewAddConfig</code> used to create a new 
<code>AddConfig</code></li>
   <li><code>AddOption</code> used to configure an <code>AddConfig</code></li>
   </ul>
   </li>
   <li>The <code>RecordConfig</code> used to hold configuration for recorded 
measurements
   <ul>
   <li><code>NewRecordConfig</code> used to create a new 
<code>RecordConfig</code></li>
   <li><code>RecordOption</code> used to configure a 
<code>RecordConfig</code></li>
   </ul>
   </li>
   <li>The <code>ObserveConfig</code> used to hold configuration for observed 
measurements
   <ul>
   <li><code>NewObserveConfig</code> used to create a new 
<code>ObserveConfig</code></li>
   <li><code>ObserveOption</code> used to configure an 
<code>ObserveConfig</code></li>
   </ul>
   </li>
   </ul>
   </li>
   <li><code>WithAttributeSet</code> and <code>WithAttributes</code> are added 
to <code>go.opentelemetry.io/otel/metric/instrument</code>.
   They return an option used during a measurement that defines the attribute 
Set associated with the measurement. (<a 
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/3971";>#3971</a>)</li>
   <li>The <code>Version</code> function to 
<code>go.opentelemetry.io/otel/exporters/otlp/otlpmetric</code> to return the 
OTLP metrics client version. (<a 
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/3956";>#3956</a>)</li>
   <li>The <code>Version</code> function to 
<code>go.opentelemetry.io/otel/exporters/otlp/otlptrace</code> to return the 
OTLP trace client version. (<a 
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/3956";>#3956</a>)</li>
   </ul>
   <h3>Changed</h3>
   <ul>
   <li>The <code>Extrema</code> in 
<code>go.opentelemetry.io/otel/sdk/metric/metricdata</code> is redefined with a 
generic argument of <code>[N int64 | float64]</code>. (<a 
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/3870";>#3870</a>)</li>
   <li>Update all exported interfaces from 
<code>go.opentelemetry.io/otel/metric</code> to embed their corresponding 
interface from <code>go.opentelemetry.io/otel/metric/embedded</code>.
   This adds an implementation requirement to set the interface default 
behavior for unimplemented methods. (<a 
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/3916";>#3916</a>)</li>
   <li>Move No-Op implementation from 
<code>go.opentelemetry.io/otel/metric</code> into its own package 
<code>go.opentelemetry.io/otel/metric/noop</code>. (<a 
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/3941";>#3941</a>)
   <ul>
   <li><code>metric.NewNoopMeterProvider</code> is replaced with 
<code>noop.NewMeterProvider</code></li>
   </ul>
   </li>
   <li>Add all the methods from 
<code>&quot;go.opentelemetry.io/otel/trace&quot;.SpanContext</code> to 
<code>bridgeSpanContext</code> by embedding <code>otel.SpanContext</code> in 
<code>bridgeSpanContext</code>. (<a 
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/3966";>#3966</a>)</li>
   <li>Wrap <code>UploadMetrics</code> error in 
<code>go.opentelemetry.io/otel/exporters/otlp/otlpmetric/</code> to improve 
error message when encountering generic grpc errors. (<a 
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/3974";>#3974</a>)</li>
   <li>The measurement methods for all instruments in 
<code>go.opentelemetry.io/otel/metric/instrument</code> accept an option 
instead of the variadic 
<code>&quot;go.opentelemetry.io/otel/attribute&quot;.KeyValue</code>. (<a 
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/3971";>#3971</a>)
   <ul>
   <li>The <code>Int64Counter.Add</code> method now accepts 
<code>...AddOption</code></li>
   <li>The <code>Float64Counter.Add</code> method now accepts 
<code>...AddOption</code></li>
   <li>The <code>Int64UpDownCounter.Add</code> method now accepts 
<code>...AddOption</code></li>
   <li>The <code>Float64UpDownCounter.Add</code> method now accepts 
<code>...AddOption</code></li>
   <li>The <code>Int64Histogram.Record</code> method now accepts 
<code>...RecordOption</code></li>
   <li>The <code>Float64Histogram.Record</code> method now accepts 
<code>...RecordOption</code></li>
   <li>The <code>Int64Observer.Observe</code> method now accepts 
<code>...ObserveOption</code></li>
   <li>The <code>Float64Observer.Observe</code> method now accepts 
<code>...ObserveOption</code></li>
   </ul>
   </li>
   <li>The <code>Observer</code> methods in 
<code>go.opentelemetry.io/otel/metric</code> accept an option instead of the 
variadic <code>&quot;go.opentelemetry.io/otel/attribute&quot;.KeyValue</code>. 
(<a 
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/3971";>#3971</a>)
   <ul>
   <li>The <code>Observer.ObserveInt64</code> method now accepts 
<code>...ObserveOption</code></li>
   <li>The <code>Observer.ObserveFloat64</code> method now accepts 
<code>...ObserveOption</code></li>
   </ul>
   </li>
   <li>Move global metric back to 
<code>go.opentelemetry.io/otel/metric/global</code> from 
<code>go.opentelemetry.io/otel</code>. (<a 
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/3986";>#3986</a>)</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/open-telemetry/opentelemetry-go/commit/fc96138629cecdcc04dd5cb65559ead9e485d927";><code>fc96138</code></a>
 Release v1.15.1/v0.38.1 (<a 
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/4046";>#4046</a>)</li>
   <li><a 
href="https://github.com/open-telemetry/opentelemetry-go/commit/dde1930477d26bb9ce5207666f599c4e528c0bca";><code>dde1930</code></a>
 Remove unused imports in host_id_bsd.go (<a 
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/4041";>#4041</a>)</li>
   <li><a 
href="https://github.com/open-telemetry/opentelemetry-go/commit/7c552505a9cb0462d6859cec18bfe9cbac6e38c3";><code>7c55250</code></a>
 Bump benchmark-action/github-action-benchmark from 1.15.0 to 1.17.0 (<a 
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/4042";>#4042</a>)</li>
   <li><a 
href="https://github.com/open-telemetry/opentelemetry-go/commit/8e76ab23b495ce2411d936b497fb8f1a9b35f974";><code>8e76ab2</code></a>
 Release v1.15.0/v0.38.0 (<a 
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/4035";>#4035</a>)</li>
   <li><a 
href="https://github.com/open-telemetry/opentelemetry-go/commit/180b35513ad6d79019230020e26549d790996bee";><code>180b355</code></a>
 Move readFile and execCommand to seperate files (<a 
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/4015";>#4015</a>)</li>
   <li><a 
href="https://github.com/open-telemetry/opentelemetry-go/commit/15d6ba29216246e336a675eff20819afe49fd0e1";><code>15d6ba2</code></a>
 Unify metric API into the one <code>otel/metric</code> package (<a 
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/4018";>#4018</a>)</li>
   <li><a 
href="https://github.com/open-telemetry/opentelemetry-go/commit/94f6c4fc00562fd6779e5807ed95aabcc1ee1858";><code>94f6c4f</code></a>
 Fix broken link (<a 
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/4034";>#4034</a>)</li>
   <li><a 
href="https://github.com/open-telemetry/opentelemetry-go/commit/86f325839ca329997672fbae8b054e7b6181b4d2";><code>86f3258</code></a>
 Added methods for SpanID and TraceID on bridgeSpanContext (<a 
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/3966";>#3966</a>)</li>
   <li><a 
href="https://github.com/open-telemetry/opentelemetry-go/commit/6acade86c511cfd72d2cbbe8d4e5f9f600548f0a";><code>6acade8</code></a>
 [chore] dependabot updates Sun Apr 23 14:49:00 UTC 2023 (<a 
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/4031";>#4031</a>)</li>
   <li><a 
href="https://github.com/open-telemetry/opentelemetry-go/commit/4986b7ed55a3abe7f9cfe7195ebe658c09fdd83d";><code>4986b7e</code></a>
 Bump codecov/codecov-action from 3.1.1 to 3.1.3 (<a 
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/4029";>#4029</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/open-telemetry/opentelemetry-go/compare/v1.10.0...v1.15.1";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=go.opentelemetry.io/otel/sdk&package-manager=go_modules&previous-version=1.10.0&new-version=1.15.1)](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 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>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to