-
Notifications
You must be signed in to change notification settings - Fork 110
Commit 1e7078a
authored
Update sentry-sdk requirement from 2.24.0 to 2.25.0 in /backend (#1170)
Updates the requirements on
[sentry-sdk](https://github.com/getsentry/sentry-python) to permit the
latest version.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/getsentry/sentry-python/releases">sentry-sdk's
releases</a>.</em></p>
<blockquote>
<h2>2.25.0</h2>
<h3>Various fixes & improvements</h3>
<ul>
<li>
<p><strong>New Beta Feature</strong> Enable Sentry logs in
<code>logging</code> Integration (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4143">#4143</a>)
by <a
href="https://github.com/colin-sentry"><code>@colin-sentry</code></a></p>
<p>You can now send existing log messages to the new Sentry Logs
feature.</p>
<p>For more information see: <a
href="https://github.com/getsentry/sentry/discussions/86804">https://github.com/getsentry/sentry/discussions/86804</a></p>
<p>This is how you can use it (Sentry Logs is in beta right now so the
API can still change):</p>
<pre lang="python"><code>import logging
<p>import sentry_sdk<br />
from sentry_sdk.integrations.logging import LoggingIntegration</p>
<h1>Setup Sentry SDK to send log messages with a level of
"error" or higher to Sentry.</h1>
<p>sentry_sdk.init(<br />
dsn="...",<br />
_experiments={<br />
"enable_sentry_logs": True<br />
}<br />
integrations=[<br />
LoggingIntegration(sentry_logs_level=logging.ERROR),<br />
]<br />
)</p>
<h1>Your existing logging setup</h1>
<p>some_logger = logging.Logger("some-logger")</p>
<p>some_logger.info('In this example info events will not be sent to
Sentry logs. my_value=%s', my_value)<br />
some_logger.error('But error events will be sent to Sentry logs.
my_value=%s', my_value)<br />
</code></pre></p>
</li>
<li>
<p>Spotlight: Sample everything 100% w/ Spotlight & no DSN set (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4207">#4207</a>)
by <a href="https://github.com/BYK"><code>@BYK</code></a></p>
</li>
<li>
<p>Dramatiq: use set_transaction_name (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4175">#4175</a>)
by <a
href="https://github.com/timdrijvers"><code>@timdrijvers</code></a></p>
</li>
<li>
<p>toxgen: Make it clearer which suites can be migrated (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4196">#4196</a>)
by <a
href="https://github.com/sentrivana"><code>@sentrivana</code></a></p>
</li>
<li>
<p>Move Litestar under toxgen (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4197">#4197</a>)
by <a
href="https://github.com/sentrivana"><code>@sentrivana</code></a></p>
</li>
<li>
<p>Added flake8 plugings to pre-commit call of flake8 (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4190">#4190</a>)
by <a
href="https://github.com/antonpirker"><code>@antonpirker</code></a></p>
</li>
<li>
<p>Deprecate Scope.user (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4194">#4194</a>)
by <a
href="https://github.com/sentrivana"><code>@sentrivana</code></a></p>
</li>
<li>
<p>Fix hanging when capturing long stacktrace (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4191">#4191</a>)
by <a
href="https://github.com/szokeasaurusrex"><code>@szokeasaurusrex</code></a></p>
</li>
<li>
<p>Fix GraphQL failures (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4208">#4208</a>)
by <a
href="https://github.com/sentrivana"><code>@sentrivana</code></a></p>
</li>
<li>
<p>Fix flaky test (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4198">#4198</a>)
by <a
href="https://github.com/sentrivana"><code>@sentrivana</code></a></p>
</li>
<li>
<p>Update Ubuntu in Github test runners (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4204">#4204</a>)
by <a
href="https://github.com/antonpirker"><code>@antonpirker</code></a></p>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/getsentry/sentry-python/blob/master/CHANGELOG.md">sentry-sdk's
changelog</a>.</em></p>
<blockquote>
<h2>2.25.0</h2>
<h3>Various fixes & improvements</h3>
<ul>
<li>
<p><strong>New Beta Feature</strong> Enable Sentry logs in
<code>logging</code> Integration (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4143">#4143</a>)
by <a
href="https://github.com/colin-sentry"><code>@colin-sentry</code></a></p>
<p>You can now send existing log messages to the new Sentry Logs
feature.</p>
<p>For more information see: <a
href="https://github.com/getsentry/sentry/discussions/86804">https://github.com/getsentry/sentry/discussions/86804</a></p>
<p>This is how you can use it (Sentry Logs is in beta right now so the
API can still change):</p>
<pre lang="python"><code>import logging
<p>import sentry_sdk<br />
from sentry_sdk.integrations.logging import LoggingIntegration</p>
<h1>Setup Sentry SDK to send log messages with a level of
"error" or higher to Sentry.</h1>
<p>sentry_sdk.init(<br />
dsn="...",<br />
_experiments={<br />
"enable_sentry_logs": True<br />
}<br />
integrations=[<br />
LoggingIntegration(sentry_logs_level=logging.ERROR),<br />
]<br />
)</p>
<h1>Your existing logging setup</h1>
<p>some_logger = logging.Logger("some-logger")</p>
<p>some_logger.info('In this example info events will not be sent to
Sentry logs. my_value=%s', my_value)<br />
some_logger.error('But error events will be sent to Sentry logs.
my_value=%s', my_value)<br />
</code></pre></p>
</li>
<li>
<p>Spotlight: Sample everything 100% w/ Spotlight & no DSN set (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4207">#4207</a>)
by <a href="https://github.com/BYK"><code>@BYK</code></a></p>
</li>
<li>
<p>Dramatiq: use set_transaction_name (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4175">#4175</a>)
by <a
href="https://github.com/timdrijvers"><code>@timdrijvers</code></a></p>
</li>
<li>
<p>toxgen: Make it clearer which suites can be migrated (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4196">#4196</a>)
by <a
href="https://github.com/sentrivana"><code>@sentrivana</code></a></p>
</li>
<li>
<p>Move Litestar under toxgen (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4197">#4197</a>)
by <a
href="https://github.com/sentrivana"><code>@sentrivana</code></a></p>
</li>
<li>
<p>Added flake8 plugings to pre-commit call of flake8 (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4190">#4190</a>)
by <a
href="https://github.com/antonpirker"><code>@antonpirker</code></a></p>
</li>
<li>
<p>Deprecate Scope.user (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4194">#4194</a>)
by <a
href="https://github.com/sentrivana"><code>@sentrivana</code></a></p>
</li>
<li>
<p>Fix hanging when capturing long stacktrace (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4191">#4191</a>)
by <a
href="https://github.com/szokeasaurusrex"><code>@szokeasaurusrex</code></a></p>
</li>
<li>
<p>Fix GraphQL failures (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4208">#4208</a>)
by <a
href="https://github.com/sentrivana"><code>@sentrivana</code></a></p>
</li>
<li>
<p>Fix flaky test (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4198">#4198</a>)
by <a
href="https://github.com/sentrivana"><code>@sentrivana</code></a></p>
</li>
<li>
<p>Update Ubuntu in Github test runners (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4204">#4204</a>)
by <a
href="https://github.com/antonpirker"><code>@antonpirker</code></a></p>
</li>
</ul>
<h2>2.24.1</h2>
<h3>Various fixes & improvements</h3>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/getsentry/sentry-python/commit/44cd9b7d61df5a99fc70d013232be43b6e7f5bda"><code>44cd9b7</code></a>
Merge branch 'master' into release/2.25.0</li>
<li><a
href="https://github.com/getsentry/sentry-python/commit/fae17b384cb1867d4c02267682e5113c48ffedc0"><code>fae17b3</code></a>
Pin <code>fakeredis</code> until <code>rq</code> can work with the new
version (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4216">#4216</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-python/commit/711816b0a828835ae729b84fafd749ef669cf932"><code>711816b</code></a>
Updated changelog</li>
<li><a
href="https://github.com/getsentry/sentry-python/commit/8841b1fd72c0018edb48f53b206390ca245d3999"><code>8841b1f</code></a>
release: 2.25.0</li>
<li><a
href="https://github.com/getsentry/sentry-python/commit/3b28649994cb27944b96c81706c97cc1d9cc3301"><code>3b28649</code></a>
feat: Sample everything 100% w/ Spotlight & no DSN set (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4207">#4207</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-python/commit/4aaadf4f2daee72c7d792f1b82bdb701254ca37b"><code>4aaadf4</code></a>
Update Ubuntu in Github test runners (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4204">#4204</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-python/commit/3d2f04469050b6469f6454465b9e0f4c6fecbb8a"><code>3d2f044</code></a>
ci: Fix GraphQL failures (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4208">#4208</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-python/commit/e432fb46684ad2cd2ec3cc350ec89ab746a741d3"><code>e432fb4</code></a>
fix: Don't hang when capturing long stacktrace (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4191">#4191</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-python/commit/2f4b0280048d103d95120ad5f802ec39157e3bc8"><code>2f4b028</code></a>
feat(logs): Make the <code>logging</code> integration send Sentry logs
(<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4143">#4143</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-python/commit/6f49bfb9fe4f4c7b18db668f0bac79d7be917bb3"><code>6f49bfb</code></a>
toxgen: Make it clearer which suites can be migrated (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4196">#4196</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/getsentry/sentry-python/compare/2.24.0...2.25.0">compare
view</a></li>
</ul>
</details>
<br />
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>1 parent 3fadfb2 commit 1e7078aCopy full SHA for 1e7078a
File tree
Expand file treeCollapse file tree
1 file changed
+1
-1
lines changedFilter options
- backend
Expand file treeCollapse file tree
1 file changed
+1
-1
lines changed+1-1Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
22 | 22 |
| |
23 | 23 |
| |
24 | 24 |
| |
25 |
| - | |
| 25 | + | |
26 | 26 |
| |
27 | 27 |
| |
28 | 28 |
| |
|
0 commit comments