chore(pip-prod)(deps): bump sentry-sdk from 2.12.0 to 2.13.0 #334

Merged
dependabot[bot] merged 1 commits from dependabot/pip/sentry-sdk-2.13.0 into main 2024-08-13 17:23:16 +02:00
dependabot[bot] commented 2024-08-13 17:11:50 +02:00 (Migrated from github.com)

Bumps sentry-sdk from 2.12.0 to 2.13.0.

Release notes

Sourced from sentry-sdk's releases.

2.13.0

Various fixes & improvements

  • New integration: Ray (#2400) (#2444) by @​glowskir

    Usage: (add the RayIntegration to your sentry_sdk.init() call and make sure it is called in the worker processes)

    import ray
    

    import sentry_sdk from sentry_sdk.integrations.ray import RayIntegration

    def init_sentry(): sentry_sdk.init( dsn="...", traces_sample_rate=1.0, integrations=[RayIntegration()], )

    init_sentry()

    ray.init( runtime_env=dict(worker_process_setup_hook=init_sentry), )

    For more information, see the documentation for the Ray integration.

  • New integration: Litestar (#2413) (#3358) by @​KellyWalker

    Usage: (add the LitestarIntegration to your sentry_sdk.init())

    from litestar import Litestar, get
    

    import sentry_sdk from sentry_sdk.integrations.litestar import LitestarIntegration

    sentry_sdk.init( dsn="...", traces_sample_rate=1.0, integrations=[LitestarIntegration()], )

    @​get("/") async def index() -> str: return "Hello, world!"

    app = Litestar(...)

    For more information, see the documentation for the Litestar integration.

... (truncated)

Changelog

Sourced from sentry-sdk's changelog.

2.13.0

Various fixes & improvements

  • New integration: Ray (#2400) (#2444) by @​glowskir

    Usage: (add the RayIntegration to your sentry_sdk.init() call and make sure it is called in the worker processes)

    import ray
    

    import sentry_sdk from sentry_sdk.integrations.ray import RayIntegration

    def init_sentry(): sentry_sdk.init( dsn="...", traces_sample_rate=1.0, integrations=[RayIntegration()], )

    init_sentry()

    ray.init( runtime_env=dict(worker_process_setup_hook=init_sentry), )

    For more information, see the documentation for the Ray integration.

  • New integration: Litestar (#2413) (#3358) by @​KellyWalker

    Usage: (add the LitestarIntegration to your sentry_sdk.init())

    from litestar import Litestar, get
    

    import sentry_sdk from sentry_sdk.integrations.litestar import LitestarIntegration

    sentry_sdk.init( dsn="...", traces_sample_rate=1.0, integrations=[LitestarIntegration()], )

    @​get("/") async def index() -> str: return "Hello, world!"

    app = Litestar(...)

    For more information, see the documentation for the Litestar integration.

... (truncated)

Commits

Dependabot compatibility score

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 commands and options

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)
Bumps [sentry-sdk](https://github.com/getsentry/sentry-python) from 2.12.0 to 2.13.0. <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.13.0</h2> <h3>Various fixes &amp; improvements</h3> <ul> <li> <p><strong>New integration:</strong> <a href="https://docs.sentry.io/platforms/python/integrations/ray/">Ray</a> (<a href="https://redirect.github.com/getsentry/sentry-python/issues/2400">#2400</a>) (<a href="https://redirect.github.com/getsentry/sentry-python/issues/2444">#2444</a>) by <a href="https://github.com/glowskir"><code>@​glowskir</code></a></p> <p>Usage: (add the RayIntegration to your <code>sentry_sdk.init()</code> call and make sure it is called in the worker processes)</p> <pre lang="python"><code>import ray <p>import sentry_sdk from sentry_sdk.integrations.ray import RayIntegration</p> <p>def init_sentry(): sentry_sdk.init( dsn=&quot;...&quot;, traces_sample_rate=1.0, integrations=[RayIntegration()], )</p> <p>init_sentry()</p> <p>ray.init( runtime_env=dict(worker_process_setup_hook=init_sentry), ) </code></pre></p> <p>For more information, see the documentation for the <a href="https://docs.sentry.io/platforms/python/integrations/ray/">Ray integration</a>.</p> </li> <li> <p><strong>New integration:</strong> <a href="https://docs.sentry.io/platforms/python/integrations/litestar/">Litestar</a> (<a href="https://redirect.github.com/getsentry/sentry-python/issues/2413">#2413</a>) (<a href="https://redirect.github.com/getsentry/sentry-python/issues/3358">#3358</a>) by <a href="https://github.com/KellyWalker"><code>@​KellyWalker</code></a></p> <p>Usage: (add the LitestarIntegration to your <code>sentry_sdk.init()</code>)</p> <pre lang="python"><code>from litestar import Litestar, get <p>import sentry_sdk from sentry_sdk.integrations.litestar import LitestarIntegration</p> <p>sentry_sdk.init( dsn=&quot;...&quot;, traces_sample_rate=1.0, integrations=[LitestarIntegration()], )</p> <p><a href="https://github.com/get"><code>@​get</code></a>(&quot;/&quot;) async def index() -&gt; str: return &quot;Hello, world!&quot;</p> <p>app = Litestar(...) </code></pre></p> <p>For more information, see the documentation for the <a href="https://docs.sentry.io/platforms/python/integrations/litestar/">Litestar integration</a>.</p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </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.13.0</h2> <h3>Various fixes &amp; improvements</h3> <ul> <li> <p><strong>New integration:</strong> <a href="https://docs.sentry.io/platforms/python/integrations/ray/">Ray</a> (<a href="https://redirect.github.com/getsentry/sentry-python/issues/2400">#2400</a>) (<a href="https://redirect.github.com/getsentry/sentry-python/issues/2444">#2444</a>) by <a href="https://github.com/glowskir"><code>@​glowskir</code></a></p> <p>Usage: (add the RayIntegration to your <code>sentry_sdk.init()</code> call and make sure it is called in the worker processes)</p> <pre lang="python"><code>import ray <p>import sentry_sdk from sentry_sdk.integrations.ray import RayIntegration</p> <p>def init_sentry(): sentry_sdk.init( dsn=&quot;...&quot;, traces_sample_rate=1.0, integrations=[RayIntegration()], )</p> <p>init_sentry()</p> <p>ray.init( runtime_env=dict(worker_process_setup_hook=init_sentry), ) </code></pre></p> <p>For more information, see the documentation for the <a href="https://docs.sentry.io/platforms/python/integrations/ray/">Ray integration</a>.</p> </li> <li> <p><strong>New integration:</strong> <a href="https://docs.sentry.io/platforms/python/integrations/litestar/">Litestar</a> (<a href="https://redirect.github.com/getsentry/sentry-python/issues/2413">#2413</a>) (<a href="https://redirect.github.com/getsentry/sentry-python/issues/3358">#3358</a>) by <a href="https://github.com/KellyWalker"><code>@​KellyWalker</code></a></p> <p>Usage: (add the LitestarIntegration to your <code>sentry_sdk.init()</code>)</p> <pre lang="python"><code>from litestar import Litestar, get <p>import sentry_sdk from sentry_sdk.integrations.litestar import LitestarIntegration</p> <p>sentry_sdk.init( dsn=&quot;...&quot;, traces_sample_rate=1.0, integrations=[LitestarIntegration()], )</p> <p><a href="https://github.com/get"><code>@​get</code></a>(&quot;/&quot;) async def index() -&gt; str: return &quot;Hello, world!&quot;</p> <p>app = Litestar(...) </code></pre></p> <p>For more information, see the documentation for the <a href="https://docs.sentry.io/platforms/python/integrations/litestar/">Litestar integration</a>.</p> </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/570307c946020e9fefdb22904585170cd6d2717d"><code>570307c</code></a> Updated changelog</li> <li><a href="https://github.com/getsentry/sentry-python/commit/4c1ea7adb4390eb05e16b7f48e09e40afe472fb9"><code>4c1ea7a</code></a> release: 2.13.0</li> <li><a href="https://github.com/getsentry/sentry-python/commit/17a6cf0f411234aaca7842c9081ef2621c8b8e62"><code>17a6cf0</code></a> feat: Add ray integration support (<a href="https://redirect.github.com/getsentry/sentry-python/issues/2400">#2400</a>) (<a href="https://redirect.github.com/getsentry/sentry-python/issues/2444">#2444</a>)</li> <li><a href="https://github.com/getsentry/sentry-python/commit/48589966945785787a2855533386a2648e9df784"><code>4858996</code></a> Expose custom_repr function that precedes safe_repr invocation in serializer ...</li> <li><a href="https://github.com/getsentry/sentry-python/commit/275c63efe9959dac68cc6ab3019545d74ea85ea8"><code>275c63e</code></a> ref(sessions): Deprecate hub-based <code>sessions.py</code> logic (<a href="https://redirect.github.com/getsentry/sentry-python/issues/3419">#3419</a>)</li> <li><a href="https://github.com/getsentry/sentry-python/commit/6a4e72977cd3cd926cb1ca5bcef47011957fcbe7"><code>6a4e729</code></a> ref(sessions): Deprecate <code>is_auto_session_tracking_enabled</code> (<a href="https://redirect.github.com/getsentry/sentry-python/issues/3428">#3428</a>)</li> <li><a href="https://github.com/getsentry/sentry-python/commit/a6cb9b197a57f564e16d17fd9836878627417c7d"><code>a6cb9b1</code></a> Add note to generated yaml files (<a href="https://redirect.github.com/getsentry/sentry-python/issues/3423">#3423</a>)</li> <li><a href="https://github.com/getsentry/sentry-python/commit/19c4069d6f97811ae72331f81c62973b4bf3b8af"><code>19c4069</code></a> test(sessions): Remove unnecessary line (<a href="https://redirect.github.com/getsentry/sentry-python/issues/3418">#3418</a>)</li> <li><a href="https://github.com/getsentry/sentry-python/commit/da0392fbcc0c2030b1ae3fddaccab978e23a810c"><code>da0392f</code></a> Dramatiq integration from <a href="https://github.com/jacobsvante"><code>@​jacobsvante</code></a> (<a href="https://redirect.github.com/getsentry/sentry-python/issues/3397">#3397</a>)</li> <li><a href="https://github.com/getsentry/sentry-python/commit/7d46709eaccf4e6db96804163645fb379eef59d7"><code>7d46709</code></a> Serialize vars early to avoid living references (<a href="https://redirect.github.com/getsentry/sentry-python/issues/3409">#3409</a>)</li> <li>Additional commits viewable in <a href="https://github.com/getsentry/sentry-python/compare/2.12.0...2.13.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=sentry-sdk&package-manager=pip&previous-version=2.12.0&new-version=2.13.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>
luketainton (Migrated from github.com) reviewed 2024-08-13 17:11:50 +02:00
sonarqubecloud[bot] commented 2024-08-13 17:12:54 +02:00 (Migrated from github.com)
## [![Quality Gate Passed](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/checks/QualityGateBadge/qg-passed-20px.png 'Quality Gate Passed')](https://sonarcloud.io/dashboard?id=luketainton_webexmemebot&pullRequest=334) **Quality Gate passed** Issues ![](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/common/passed-16px.png '') [0 New issues](https://sonarcloud.io/project/issues?id=luketainton_webexmemebot&pullRequest=334&issueStatuses=OPEN,CONFIRMED&sinceLeakPeriod=true) ![](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/common/accepted-16px.png '') [0 Accepted issues](https://sonarcloud.io/project/issues?id=luketainton_webexmemebot&pullRequest=334&issueStatuses=ACCEPTED) Measures ![](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/common/passed-16px.png '') [0 Security Hotspots](https://sonarcloud.io/project/security_hotspots?id=luketainton_webexmemebot&pullRequest=334&issueStatuses=OPEN,CONFIRMED&sinceLeakPeriod=true) ![](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/common/passed-16px.png '') [0.0% Coverage on New Code](https://sonarcloud.io/component_measures?id=luketainton_webexmemebot&pullRequest=334&metric=new_coverage&view=list) ![](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/common/passed-16px.png '') [0.0% Duplication on New Code](https://sonarcloud.io/component_measures?id=luketainton_webexmemebot&pullRequest=334&metric=new_duplicated_lines_density&view=list) [See analysis details on SonarCloud](https://sonarcloud.io/dashboard?id=luketainton_webexmemebot&pullRequest=334)
Sign in to join this conversation.
No description provided.