Dependabot commands
You can trigger Dependabot actions by commenting on this MR
$dependabot recreate will recreate this MR rewriting all the manual changes and resolving conflicts
Bumps [github.com/getsentry/sentry-go](https://github.com/getsentry/sentry-go) from 0.25.0 to 0.26.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/getsentry/sentry-go/releases">github.com/getsentry/sentry-go's releases</a>.</em></p>
<blockquote>
<h2>0.26.0</h2>
<p>The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.26.0.</p>
<h3>Breaking Changes</h3>
<p>As previously announced, this release removes some methods from the SDK.</p>
<ul>
<li><code>sentry.TransactionName()</code> use <code>sentry.WithTransactionName()</code> instead.</li>
<li><code>sentry.OpName()</code> use <code>sentry.WithOpName()</code> instead.</li>
<li><code>sentry.TransctionSource()</code> use <code>sentry.WithTransactionSource()</code> instead.</li>
<li><code>sentry.SpanSampled()</code> use <code>sentry.WithSpanSampled()</code> instead.</li>
</ul>
<h3>Features</h3>
<ul>
<li>
<p>Add <code>WithDescription</code> span option (<a href="https://github.com/getsentry/sentry-go/pull/751">#751</a>)</p>
<pre lang="go"><code>span := sentry.StartSpan(ctx, "http.client", WithDescription("GET /api/users"))
</code></pre>
</li>
<li>
<p>Add support for package name parsing in Go 1.20 and higher (<a href="https://github.com/getsentry/sentry-go/pull/730">#730</a>)</p>
</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li>Apply <code>ClientOptions.SampleRate</code> only to errors & messages (<a href="https://github.com/getsentry/sentry-go/pull/754">#754</a>)</li>
<li>Check if git is available before executing any git commands (<a href="https://github.com/getsentry/sentry-go/pull/737">#737</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/getsentry/sentry-go/blob/master/CHANGELOG.md">github.com/getsentry/sentry-go's changelog</a>.</em></p>
<blockquote>
<h2>0.26.0</h2>
<p>The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.26.0.</p>
<h3>Breaking Changes</h3>
<p>As previously announced, this release removes some methods from the SDK.</p>
<ul>
<li><code>sentry.TransactionName()</code> use <code>sentry.WithTransactionName()</code> instead.</li>
<li><code>sentry.OpName()</code> use <code>sentry.WithOpName()</code> instead.</li>
<li><code>sentry.TransctionSource()</code> use <code>sentry.WithTransactionSource()</code> instead.</li>
<li><code>sentry.SpanSampled()</code> use <code>sentry.WithSpanSampled()</code> instead.</li>
</ul>
<h3>Features</h3>
<ul>
<li>
<p>Add <code>WithDescription</code> span option (<a href="https://github.com/getsentry/sentry-go/pull/751">#751</a>)</p>
<pre lang="go"><code>span := sentry.StartSpan(ctx, "http.client", WithDescription("GET /api/users"))
</code></pre>
</li>
<li>
<p>Add support for package name parsing in Go 1.20 and higher (<a href="https://github.com/getsentry/sentry-go/pull/730">#730</a>)</p>
</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li>Apply <code>ClientOptions.SampleRate</code> only to errors & messages (<a href="https://github.com/getsentry/sentry-go/pull/754">#754</a>)</li>
<li>Check if git is available before executing any git commands (<a href="https://github.com/getsentry/sentry-go/pull/737">#737</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/getsentry/sentry-go/commit/81ffb249e3bd090121e61e495982960f89f0e678"><code>81ffb24</code></a> release: 0.26.0</li>
<li><a href="https://github.com/getsentry/sentry-go/commit/46c2ed3cf1371ee435ea2f55322694afe0b0d3bf"><code>46c2ed3</code></a> Fix revive CI issues (<a href="https://github.com/getsentry/sentry-go/issues/763">#763</a>)</li>
<li><a href="https://github.com/getsentry/sentry-go/commit/32f1b19f9fcfec2158fca065705393e4ccc2409a"><code>32f1b19</code></a> Remove depguard (<a href="https://github.com/getsentry/sentry-go/issues/762">#762</a>)</li>
<li><a href="https://github.com/getsentry/sentry-go/commit/d60b74342c3659202c17c10cc127fd01b9f4cf68"><code>d60b743</code></a> Update CI (<a href="https://github.com/getsentry/sentry-go/issues/761">#761</a>)</li>
<li><a href="https://github.com/getsentry/sentry-go/commit/7fa0b42c04a087c8a8c7398a7468c0785cf999ac"><code>7fa0b42</code></a> doc: fix typo (<a href="https://github.com/getsentry/sentry-go/issues/760">#760</a>)</li>
<li><a href="https://github.com/getsentry/sentry-go/commit/9954a51f45fdea2816f3ddd0aac05f7834a84108"><code>9954a51</code></a> Prepare 0.26.0 (<a href="https://github.com/getsentry/sentry-go/issues/759">#759</a>)</li>
<li><a href="https://github.com/getsentry/sentry-go/commit/d302d89316ac53e40fa0563236e36f932fb4384a"><code>d302d89</code></a> Only apply <code>SampleRate </code> to errors/messages (<a href="https://github.com/getsentry/sentry-go/issues/754">#754</a>)</li>
<li><a href="https://github.com/getsentry/sentry-go/commit/fff66d18d3019c0c75c88edb26f8d79d52d8a126"><code>fff66d1</code></a> feat(tracing): Add WithDescription SpanOption (<a href="https://github.com/getsentry/sentry-go/issues/751">#751</a>)</li>
<li><a href="https://github.com/getsentry/sentry-go/commit/032ecc1861700897888aec5644403a3d0a435007"><code>032ecc1</code></a> Remove Span.isTransaction attribute (<a href="https://github.com/getsentry/sentry-go/issues/736">#736</a>)</li>
<li><a href="https://github.com/getsentry/sentry-go/commit/03c634502f8fb416a744892f1ba3c4d3baba291c"><code>03c6345</code></a> ci: improve flaky tests (<a href="https://github.com/getsentry/sentry-go/issues/744">#744</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/getsentry/sentry-go/compare/v0.25.0...v0.26.0">compare view</a></li>
</ul>
</details>
<br />
---
<details>
<summary>Dependabot commands</summary>
<br />
You can trigger Dependabot actions by commenting on this MR
- `$dependabot recreate` will recreate this MR rewriting all the manual changes and resolving conflicts
</details>
argoyle
(Migrated from gitlab.com)
merged commit into main2024-01-11 12:31:30 +00:00
This repo is archived. You cannot comment on pull requests.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Bumps github.com/getsentry/sentry-go from 0.25.0 to 0.26.0.
Release notes
Sourced from github.com/getsentry/sentry-go's releases.
Changelog
Sourced from github.com/getsentry/sentry-go's changelog.
Commits
81ffb24release: 0.26.046c2ed3Fix revive CI issues (#763)32f1b19Remove depguard (#762)d60b743Update CI (#761)7fa0b42doc: fix typo (#760)9954a51Prepare 0.26.0 (#759)d302d89Only applySampleRateto errors/messages (#754)fff66d1feat(tracing): Add WithDescription SpanOption (#751)032ecc1Remove Span.isTransaction attribute (#736)03c6345ci: improve flaky tests (#744)Dependabot commands
You can trigger Dependabot actions by commenting on this MR
$dependabot recreatewill recreate this MR rewriting all the manual changes and resolving conflicts