Commit 6314947
authored
Update sentry-sdk requirement from 2.33.0 to 2.34.0 in /backend (#1308)
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.34.0</h2>
<h3>Various fixes & improvements</h3>
<ul>
<li>
<p>Considerably raise <code>DEFAULT_MAX_VALUE_LENGTH</code> (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4632">#4632</a>)
by <a
href="https://github.com/sentrivana"><code>@sentrivana</code></a></p>
<p>We have increased the string trimming limit considerably, allowing
you to see more data
without it being truncated. Note that this might, in rare cases, result
in issue regrouping,
for example if you're capturing message events with very long messages
(longer than the
default 1024 characters/bytes).</p>
<p>If you want to adjust the limit, you can set a
<a
href="https://docs.sentry.io/platforms/python/configuration/options/#max_value_length"><code>max_value_limit</code></a>
in your <code>sentry_sdk.init()</code>.</p>
</li>
<li>
<p><code>OpenAI</code> integration update (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4612">#4612</a>)
by <a
href="https://github.com/antonpirker"><code>@antonpirker</code></a></p>
<p>The <code>OpenAIIntegration</code> now supports <a
href="https://platform.openai.com/docs/api-reference/responses">OpenAI
Responses API</a>.</p>
<p>The data captured will also show up in the new <a
href="https://docs.sentry.io/product/insights/agents/dashboard/">AI
Agents Dashboard</a>.</p>
<p>This works out of the box, nothing to do on your side.</p>
</li>
<li>
<p>Expose <code>set_transaction_name</code> (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4634">#4634</a>)
by <a
href="https://github.com/sl0thentr0py"><code>@sl0thentr0py</code></a></p>
</li>
<li>
<p>Fix(Celery): Latency should be in milliseconds, not seconds (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4637">#4637</a>)
by <a
href="https://github.com/sentrivana"><code>@sentrivana</code></a></p>
</li>
<li>
<p>Fix(Django): Treat <code>django.template.context.BasicContext</code>
as sequence in serializer (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4621">#4621</a>)
by <a
href="https://github.com/sl0thentr0py"><code>@sl0thentr0py</code></a></p>
</li>
<li>
<p>Fix(Huggingface): Fix <code>huggingface_hub</code> CI tests. (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4619">#4619</a>)
by <a
href="https://github.com/antonpirker"><code>@antonpirker</code></a></p>
</li>
<li>
<p>Fix: Ignore deliberate thread exception warnings (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4611">#4611</a>)
by <a
href="https://github.com/sl0thentr0py"><code>@sl0thentr0py</code></a></p>
</li>
<li>
<p>Fix: Socket tests to not use example.com (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4627">#4627</a>)
by <a
href="https://github.com/sl0thentr0py"><code>@sl0thentr0py</code></a></p>
</li>
<li>
<p>Fix: Threading run patch (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4610">#4610</a>)
by <a
href="https://github.com/sl0thentr0py"><code>@sl0thentr0py</code></a></p>
</li>
<li>
<p>Tests: Simplify celery double patching test (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4626">#4626</a>)
by <a
href="https://github.com/sl0thentr0py"><code>@sl0thentr0py</code></a></p>
</li>
<li>
<p>Tests: Remove remote example.com calls (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4622">#4622</a>)
by <a
href="https://github.com/sl0thentr0py"><code>@sl0thentr0py</code></a></p>
</li>
<li>
<p>Tests: tox.ini update (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4635">#4635</a>)
by <a
href="https://github.com/sentrivana"><code>@sentrivana</code></a></p>
</li>
<li>
<p>Tests: Update tox (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4609">#4609</a>)
by <a
href="https://github.com/sentrivana"><code>@sentrivana</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.34.0</h2>
<h3>Various fixes & improvements</h3>
<ul>
<li>
<p>Considerably raise <code>DEFAULT_MAX_VALUE_LENGTH</code> (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4632">#4632</a>)
by <a
href="https://github.com/sentrivana"><code>@sentrivana</code></a></p>
<p>We have increased the string trimming limit considerably, allowing
you to see more data
without it being truncated. Note that this might, in rare cases, result
in issue regrouping,
for example if you're capturing message events with very long messages
(longer than the
default 1024 characters/bytes).</p>
<p>If you want to adjust the limit, you can set a
<a
href="https://docs.sentry.io/platforms/python/configuration/options/#max_value_length"><code>max_value_limit</code></a>
in your <code>sentry_sdk.init()</code>.</p>
</li>
<li>
<p><code>OpenAI</code> integration update (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4612">#4612</a>)
by <a
href="https://github.com/antonpirker"><code>@antonpirker</code></a></p>
<p>The <code>OpenAIIntegration</code> now supports <a
href="https://platform.openai.com/docs/api-reference/responses">OpenAI
Responses API</a>.</p>
<p>The data captured will also show up in the new <a
href="https://docs.sentry.io/product/insights/agents/dashboard/">AI
Agents Dashboard</a>.</p>
<p>This works out of the box, nothing to do on your side.</p>
</li>
<li>
<p>Expose <code>set_transaction_name</code> (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4634">#4634</a>)
by <a
href="https://github.com/sl0thentr0py"><code>@sl0thentr0py</code></a></p>
</li>
<li>
<p>Fix(Celery): Latency should be in milliseconds, not seconds (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4637">#4637</a>)
by <a
href="https://github.com/sentrivana"><code>@sentrivana</code></a></p>
</li>
<li>
<p>Fix(Django): Treat <code>django.template.context.BasicContext</code>
as sequence in serializer (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4621">#4621</a>)
by <a
href="https://github.com/sl0thentr0py"><code>@sl0thentr0py</code></a></p>
</li>
<li>
<p>Fix(Huggingface): Fix <code>huggingface_hub</code> CI tests. (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4619">#4619</a>)
by <a
href="https://github.com/antonpirker"><code>@antonpirker</code></a></p>
</li>
<li>
<p>Fix: Ignore deliberate thread exception warnings (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4611">#4611</a>)
by <a
href="https://github.com/sl0thentr0py"><code>@sl0thentr0py</code></a></p>
</li>
<li>
<p>Fix: Socket tests to not use example.com (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4627">#4627</a>)
by <a
href="https://github.com/sl0thentr0py"><code>@sl0thentr0py</code></a></p>
</li>
<li>
<p>Fix: Threading run patch (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4610">#4610</a>)
by <a
href="https://github.com/sl0thentr0py"><code>@sl0thentr0py</code></a></p>
</li>
<li>
<p>Tests: Simplify celery double patching test (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4626">#4626</a>)
by <a
href="https://github.com/sl0thentr0py"><code>@sl0thentr0py</code></a></p>
</li>
<li>
<p>Tests: Remove remote example.com calls (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4622">#4622</a>)
by <a
href="https://github.com/sl0thentr0py"><code>@sl0thentr0py</code></a></p>
</li>
<li>
<p>Tests: tox.ini update (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4635">#4635</a>)
by <a
href="https://github.com/sentrivana"><code>@sentrivana</code></a></p>
</li>
<li>
<p>Tests: Update tox (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4609">#4609</a>)
by <a
href="https://github.com/sentrivana"><code>@sentrivana</code></a></p>
</li>
</ul>
<h2>2.33.2</h2>
<h3>Various fixes & improvements</h3>
<ul>
<li>ref(spotlight): Do not import <code>sentry_sdk.spotlight</code>
unless enabled (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4607">#4607</a>)
by <a
href="https://github.com/sentrivana"><code>@sentrivana</code></a></li>
<li>ref(gnu-integration): update clickhouse stacktrace parsing (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4598">#4598</a>)
by <a
href="https://github.com/MeredithAnya"><code>@MeredithAnya</code></a></li>
</ul>
<h2>2.33.1</h2>
<h3>Various fixes & improvements</h3>
<ul>
<li>fix(integrations): allow explicit op parameter in
<code>ai_track</code> (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4597">#4597</a>)
by <a
href="https://github.com/mshavliuk"><code>@mshavliuk</code></a></li>
<li>fix: Fix <code>abs_path</code> bug in <code>serialize_frame</code>
(<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4599">#4599</a>)
by <a
href="https://github.com/szokeasaurusrex"><code>@szokeasaurusrex</code></a></li>
<li>Remove pyrsistent from test dependencies (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4588">#4588</a>)
by <a
href="https://github.com/musicinmybrain"><code>@musicinmybrain</code></a></li>
<li>Remove explicit <code>__del__</code>'s in threaded classes (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4590">#4590</a>)
by <a
href="https://github.com/sl0thentr0py"><code>@sl0thentr0py</code></a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/getsentry/sentry-python/commit/72766a79acf6df132f62584bd6ef4ac47904c155"><code>72766a7</code></a>
Update changelog</li>
<li><a
href="https://github.com/getsentry/sentry-python/commit/e1848d4f33039f04b77caf43d3d2444a18ac2dac"><code>e1848d4</code></a>
Update CHANGELOG.md</li>
<li><a
href="https://github.com/getsentry/sentry-python/commit/e84f6f30682e0b14e5a2ab575d96c686894c5aaa"><code>e84f6f3</code></a>
release: 2.34.0</li>
<li><a
href="https://github.com/getsentry/sentry-python/commit/4f9d326c86477052aa30230393497a20edb17da4"><code>4f9d326</code></a>
Considerably raise <code>DEFAULT_MAX_VALUE_LENGTH</code> (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4632">#4632</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-python/commit/fd7dca446da0815e1491a5ec2acdb67e630646fd"><code>fd7dca4</code></a>
fix(celery): Latency should be in milliseconds, not seconds (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4637">#4637</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-python/commit/fcace85734afd5fde920ab05101ae9025f7f5041"><code>fcace85</code></a>
OpenAI integration update (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4612">#4612</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-python/commit/19ed1bb0ad232f53319aec02a3be66058af338eb"><code>19ed1bb</code></a>
tests: tox.ini update (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4635">#4635</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-python/commit/070653a666f0b81438c82fb7945c208ffa63f39e"><code>070653a</code></a>
Expose set_transaction_name (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4634">#4634</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-python/commit/d71b9532c766fd90c9fc51d2f1f09b9f0dc6c792"><code>d71b953</code></a>
Fix socket tests to not use example.com (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4627">#4627</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-python/commit/bc7ca8609e221848c52446a5f89fda05c01e79ea"><code>bc7ca86</code></a>
Simplify celery double patching test (<a
href="https://redirect.github.com/getsentry/sentry-python/issues/4626">#4626</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/getsentry/sentry-python/compare/2.33.0...2.34.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 aee9aa9 commit 6314947
1 file changed
+1
-1
lines changed| 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