chore(pip-prod)(deps): bump sentry-sdk from 1.45.0 to 2.0.1 #216

Merged
dependabot[bot] merged 1 commits from dependabot/pip/sentry-sdk-2.0.1 into next 2024-04-26 17:49:51 +02:00
dependabot[bot] commented 2024-04-26 17:09:46 +02:00 (Migrated from github.com)

Bumps sentry-sdk from 1.45.0 to 2.0.1.

Release notes

Sourced from sentry-sdk's releases.

2.0.1

Various fixes & improvements

2.0.0

This is the first major update in a long time!

We dropped support for some ancient languages and frameworks (Yes, Python 2.7 is no longer supported). Additionally we refactored a big part of the foundation of the SDK (how data inside the SDK is handled).

We hope you like it!

For a shorter version of what you need to do, to upgrade to Sentry SDK 2.0 see: https://docs.sentry.io/platforms/python/migration/1.x-to-2.x

New Features

  • Additional integrations will now be activated automatically if the SDK detects the respective package is installed: Ariadne, ARQ, asyncpg, Chalice, clickhouse-driver, GQL, Graphene, huey, Loguru, PyMongo, Quart, Starlite, Strawberry.
  • Added new API for custom instrumentation: new_scope, isolation_scope. See the Deprecated section to see how they map to the existing APIs.

Changed

(These changes are all backwards-incompatible. Breaking Change (if you are just skimming for that phrase))

  • The Pyramid integration will not capture errors that might happen in authenticated_userid() in a custom AuthenticationPolicy class.
  • The method need_code_loation of the MetricsAggregator was renamed to need_code_location.
  • The BackgroundWorker thread used to process events was renamed from raven-sentry.BackgroundWorker to sentry-sdk.BackgroundWorker.
  • The reraise function was moved from sentry_sdk._compat to sentry_sdk.utils.
  • The _ScopeManager was moved from sentry_sdk.hub to sentry_sdk.scope.
  • Moved the contents of tracing_utils_py3.py to tracing_utils.py. The start_child_span_decorator is now in sentry_sdk.tracing_utils.
  • The actual implementation of get_current_span was moved to sentry_sdk.tracing_utils. sentry_sdk.get_current_span is still accessible as part of the top-level API.
  • sentry_sdk.tracing_utils.add_query_source(): Removed the hub parameter. It is not necessary anymore.
  • sentry_sdk.tracing_utils.record_sql_queries(): Removed the hub parameter. It is not necessary anymore.
  • sentry_sdk.tracing_utils.get_current_span() does now take a scope instead of a hub as parameter.
  • sentry_sdk.tracing_utils.should_propagate_trace() now takes a Client instead of a Hub as first parameter.
  • sentry_sdk.utils.is_sentry_url() now takes a Client instead of a Hub as first parameter.
  • sentry_sdk.utils._get_contextvars does not return a tuple with three values, but a tuple with two values. The copy_context was removed.
  • If you create a transaction manually and later mutate the transaction in a configure_scope block this does not work anymore. Here is a recipe on how to change your code to make it work: Your existing implementation:
    transaction = sentry_sdk.transaction(...)
    

... (truncated)

Changelog

Sourced from sentry-sdk's changelog.

2.0.1

Various fixes & improvements

2.0.0

This is the first major update in a long time!

We dropped support for some ancient languages and frameworks (Yes, Python 2.7 is no longer supported). Additionally we refactored a big part of the foundation of the SDK (how data inside the SDK is handled).

We hope you like it!

For a shorter version of what you need to do, to upgrade to Sentry SDK 2.0 see: https://docs.sentry.io/platforms/python/migration/1.x-to-2.x

New Features

  • Additional integrations will now be activated automatically if the SDK detects the respective package is installed: Ariadne, ARQ, asyncpg, Chalice, clickhouse-driver, GQL, Graphene, huey, Loguru, PyMongo, Quart, Starlite, Strawberry.
  • Added new API for custom instrumentation: new_scope, isolation_scope. See the Deprecated section to see how they map to the existing APIs.

Changed

(These changes are all backwards-incompatible. Breaking Change (if you are just skimming for that phrase))

  • The Pyramid integration will not capture errors that might happen in authenticated_userid() in a custom AuthenticationPolicy class.
  • The method need_code_loation of the MetricsAggregator was renamed to need_code_location.
  • The BackgroundWorker thread used to process events was renamed from raven-sentry.BackgroundWorker to sentry-sdk.BackgroundWorker.
  • The reraise function was moved from sentry_sdk._compat to sentry_sdk.utils.
  • The _ScopeManager was moved from sentry_sdk.hub to sentry_sdk.scope.
  • Moved the contents of tracing_utils_py3.py to tracing_utils.py. The start_child_span_decorator is now in sentry_sdk.tracing_utils.
  • The actual implementation of get_current_span was moved to sentry_sdk.tracing_utils. sentry_sdk.get_current_span is still accessible as part of the top-level API.
  • sentry_sdk.tracing_utils.add_query_source(): Removed the hub parameter. It is not necessary anymore.
  • sentry_sdk.tracing_utils.record_sql_queries(): Removed the hub parameter. It is not necessary anymore.
  • sentry_sdk.tracing_utils.get_current_span() does now take a scope instead of a hub as parameter.
  • sentry_sdk.tracing_utils.should_propagate_trace() now takes a Client instead of a Hub as first parameter.
  • sentry_sdk.utils.is_sentry_url() now takes a Client instead of a Hub as first parameter.
  • sentry_sdk.utils._get_contextvars does not return a tuple with three values, but a tuple with two values. The copy_context was removed.
  • If you create a transaction manually and later mutate the transaction in a configure_scope block this does not work anymore. Here is a recipe on how to change your code to make it work: Your existing implementation:

... (truncated)

Commits
  • 882ed7f Updated changelog
  • ce89048 release: 2.0.1
  • 162773c fix(integrations): Do not use convenience decorator (#3022)
  • a626f01 Add Lambda function that deletes test Lambda functions (#2960)
  • f5db9ce Refactoring propagation context (#2970)
  • d91a510 Use pid for test database name in Django tests (#2998)
  • 534a301 test(tracing): Add tests for discarded transaction debug messages
  • 5aa7c9b fix(tracing): Correct discarded transaction debug message
  • bda9deb docs(tracing): Delete inaccurate comment
  • 6a73368 build(deps): bump checkouts/data-schemas from 1e17eb5 to 4aa14a7 (#2997)
  • Additional commits viewable in compare view

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 1.45.0 to 2.0.1. <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.0.1</h2> <h3>Various fixes &amp; improvements</h3> <ul> <li>Fix: Do not use convenience decorator (<a href="https://redirect.github.com/getsentry/sentry-python/issues/3022">#3022</a>) by <a href="https://github.com/sentrivana"><code>@​sentrivana</code></a></li> <li>Refactoring propagation context (<a href="https://redirect.github.com/getsentry/sentry-python/issues/2970">#2970</a>) by <a href="https://github.com/antonpirker"><code>@​antonpirker</code></a></li> <li>Use <code>pid</code> for test database name in Django tests (<a href="https://redirect.github.com/getsentry/sentry-python/issues/2998">#2998</a>) by <a href="https://github.com/antonpirker"><code>@​antonpirker</code></a></li> <li>Remove outdated RC mention in docs (<a href="https://redirect.github.com/getsentry/sentry-python/issues/3018">#3018</a>) by <a href="https://github.com/sentrivana"><code>@​sentrivana</code></a></li> <li>Delete inaccurate comment from docs (<a href="https://redirect.github.com/getsentry/sentry-python/issues/3002">#3002</a>) by <a href="https://github.com/szokeasaurusrex"><code>@​szokeasaurusrex</code></a></li> <li>Add Lambda function that deletes test Lambda functions (<a href="https://redirect.github.com/getsentry/sentry-python/issues/2960">#2960</a>) by <a href="https://github.com/antonpirker"><code>@​antonpirker</code></a></li> <li>Correct discarded transaction debug message (<a href="https://redirect.github.com/getsentry/sentry-python/issues/3002">#3002</a>) by <a href="https://github.com/szokeasaurusrex"><code>@​szokeasaurusrex</code></a></li> <li>Add tests for discarded transaction debug messages (<a href="https://redirect.github.com/getsentry/sentry-python/issues/3002">#3002</a>) by <a href="https://github.com/szokeasaurusrex"><code>@​szokeasaurusrex</code></a></li> <li>Fix comment typo in metrics (<a href="https://redirect.github.com/getsentry/sentry-python/issues/2992">#2992</a>) by <a href="https://github.com/szokeasaurusrex"><code>@​szokeasaurusrex</code></a></li> <li>build(deps): bump actions/checkout from 4.1.1 to 4.1.4 (<a href="https://redirect.github.com/getsentry/sentry-python/issues/3011">#3011</a>) by <a href="https://github.com/dependabot"><code>@​dependabot</code></a></li> <li>build(deps): bump checkouts/data-schemas from <code>1e17eb5</code> to <code>4aa14a7</code> (<a href="https://redirect.github.com/getsentry/sentry-python/issues/2997">#2997</a>) by <a href="https://github.com/dependabot"><code>@​dependabot</code></a></li> </ul> <h2>2.0.0</h2> <p>This is the first major update in a <em>long</em> time!</p> <p>We dropped support for some ancient languages and frameworks (Yes, Python 2.7 is no longer supported). Additionally we refactored a big part of the foundation of the SDK (how data inside the SDK is handled).</p> <p>We hope you like it!</p> <p>For a shorter version of what you need to do, to upgrade to Sentry SDK 2.0 see: <a href="https://docs.sentry.io/platforms/python/migration/1.x-to-2.x">https://docs.sentry.io/platforms/python/migration/1.x-to-2.x</a></p> <h3>New Features</h3> <ul> <li>Additional integrations will now be activated automatically if the SDK detects the respective package is installed: Ariadne, ARQ, asyncpg, Chalice, clickhouse-driver, GQL, Graphene, huey, Loguru, PyMongo, Quart, Starlite, Strawberry.</li> <li>Added new API for custom instrumentation: <code>new_scope</code>, <code>isolation_scope</code>. See the <a href="https://github.com/getsentry/sentry-python/blob/HEAD/#deprecated">Deprecated</a> section to see how they map to the existing APIs.</li> </ul> <h3>Changed</h3> <p>(These changes are all backwards-incompatible. <strong>Breaking Change</strong> (if you are just skimming for that phrase))</p> <ul> <li>The Pyramid integration will not capture errors that might happen in <code>authenticated_userid()</code> in a custom <code>AuthenticationPolicy</code> class.</li> <li>The method <code>need_code_loation</code> of the <code>MetricsAggregator</code> was renamed to <code>need_code_location</code>.</li> <li>The <code>BackgroundWorker</code> thread used to process events was renamed from <code>raven-sentry.BackgroundWorker</code> to <code>sentry-sdk.BackgroundWorker</code>.</li> <li>The <code>reraise</code> function was moved from <code>sentry_sdk._compat</code> to <code>sentry_sdk.utils</code>.</li> <li>The <code>_ScopeManager</code> was moved from <code>sentry_sdk.hub</code> to <code>sentry_sdk.scope</code>.</li> <li>Moved the contents of <code>tracing_utils_py3.py</code> to <code>tracing_utils.py</code>. The <code>start_child_span_decorator</code> is now in <code>sentry_sdk.tracing_utils</code>.</li> <li>The actual implementation of <code>get_current_span</code> was moved to <code>sentry_sdk.tracing_utils</code>. <code>sentry_sdk.get_current_span</code> is still accessible as part of the top-level API.</li> <li><code>sentry_sdk.tracing_utils.add_query_source()</code>: Removed the <code>hub</code> parameter. It is not necessary anymore.</li> <li><code>sentry_sdk.tracing_utils.record_sql_queries()</code>: Removed the <code>hub</code> parameter. It is not necessary anymore.</li> <li><code>sentry_sdk.tracing_utils.get_current_span()</code> does now take a <code>scope</code> instead of a <code>hub</code> as parameter.</li> <li><code>sentry_sdk.tracing_utils.should_propagate_trace()</code> now takes a <code>Client</code> instead of a <code>Hub</code> as first parameter.</li> <li><code>sentry_sdk.utils.is_sentry_url()</code> now takes a <code>Client</code> instead of a <code>Hub</code> as first parameter.</li> <li><code>sentry_sdk.utils._get_contextvars</code> does not return a tuple with three values, but a tuple with two values. The <code>copy_context</code> was removed.</li> <li>If you create a transaction manually and later mutate the transaction in a <code>configure_scope</code> block this does not work anymore. Here is a recipe on how to change your code to make it work: Your existing implementation: <pre lang="python"><code>transaction = sentry_sdk.transaction(...) <p></code></pre></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.0.1</h2> <h3>Various fixes &amp; improvements</h3> <ul> <li>Fix: Do not use convenience decorator (<a href="https://redirect.github.com/getsentry/sentry-python/issues/3022">#3022</a>) by <a href="https://github.com/sentrivana"><code>@​sentrivana</code></a></li> <li>Refactoring propagation context (<a href="https://redirect.github.com/getsentry/sentry-python/issues/2970">#2970</a>) by <a href="https://github.com/antonpirker"><code>@​antonpirker</code></a></li> <li>Use <code>pid</code> for test database name in Django tests (<a href="https://redirect.github.com/getsentry/sentry-python/issues/2998">#2998</a>) by <a href="https://github.com/antonpirker"><code>@​antonpirker</code></a></li> <li>Remove outdated RC mention in docs (<a href="https://redirect.github.com/getsentry/sentry-python/issues/3018">#3018</a>) by <a href="https://github.com/sentrivana"><code>@​sentrivana</code></a></li> <li>Delete inaccurate comment from docs (<a href="https://redirect.github.com/getsentry/sentry-python/issues/3002">#3002</a>) by <a href="https://github.com/szokeasaurusrex"><code>@​szokeasaurusrex</code></a></li> <li>Add Lambda function that deletes test Lambda functions (<a href="https://redirect.github.com/getsentry/sentry-python/issues/2960">#2960</a>) by <a href="https://github.com/antonpirker"><code>@​antonpirker</code></a></li> <li>Correct discarded transaction debug message (<a href="https://redirect.github.com/getsentry/sentry-python/issues/3002">#3002</a>) by <a href="https://github.com/szokeasaurusrex"><code>@​szokeasaurusrex</code></a></li> <li>Add tests for discarded transaction debug messages (<a href="https://redirect.github.com/getsentry/sentry-python/issues/3002">#3002</a>) by <a href="https://github.com/szokeasaurusrex"><code>@​szokeasaurusrex</code></a></li> <li>Fix comment typo in metrics (<a href="https://redirect.github.com/getsentry/sentry-python/issues/2992">#2992</a>) by <a href="https://github.com/szokeasaurusrex"><code>@​szokeasaurusrex</code></a></li> <li>build(deps): bump actions/checkout from 4.1.1 to 4.1.4 (<a href="https://redirect.github.com/getsentry/sentry-python/issues/3011">#3011</a>) by <a href="https://github.com/dependabot"><code>@​dependabot</code></a></li> <li>build(deps): bump checkouts/data-schemas from <code>1e17eb5</code> to <code>4aa14a7</code> (<a href="https://redirect.github.com/getsentry/sentry-python/issues/2997">#2997</a>) by <a href="https://github.com/dependabot"><code>@​dependabot</code></a></li> </ul> <h2>2.0.0</h2> <p>This is the first major update in a <em>long</em> time!</p> <p>We dropped support for some ancient languages and frameworks (Yes, Python 2.7 is no longer supported). Additionally we refactored a big part of the foundation of the SDK (how data inside the SDK is handled).</p> <p>We hope you like it!</p> <p>For a shorter version of what you need to do, to upgrade to Sentry SDK 2.0 see: <a href="https://docs.sentry.io/platforms/python/migration/1.x-to-2.x">https://docs.sentry.io/platforms/python/migration/1.x-to-2.x</a></p> <h3>New Features</h3> <ul> <li>Additional integrations will now be activated automatically if the SDK detects the respective package is installed: Ariadne, ARQ, asyncpg, Chalice, clickhouse-driver, GQL, Graphene, huey, Loguru, PyMongo, Quart, Starlite, Strawberry.</li> <li>Added new API for custom instrumentation: <code>new_scope</code>, <code>isolation_scope</code>. See the <a href="https://github.com/getsentry/sentry-python/blob/master/#deprecated">Deprecated</a> section to see how they map to the existing APIs.</li> </ul> <h3>Changed</h3> <p>(These changes are all backwards-incompatible. <strong>Breaking Change</strong> (if you are just skimming for that phrase))</p> <ul> <li>The Pyramid integration will not capture errors that might happen in <code>authenticated_userid()</code> in a custom <code>AuthenticationPolicy</code> class.</li> <li>The method <code>need_code_loation</code> of the <code>MetricsAggregator</code> was renamed to <code>need_code_location</code>.</li> <li>The <code>BackgroundWorker</code> thread used to process events was renamed from <code>raven-sentry.BackgroundWorker</code> to <code>sentry-sdk.BackgroundWorker</code>.</li> <li>The <code>reraise</code> function was moved from <code>sentry_sdk._compat</code> to <code>sentry_sdk.utils</code>.</li> <li>The <code>_ScopeManager</code> was moved from <code>sentry_sdk.hub</code> to <code>sentry_sdk.scope</code>.</li> <li>Moved the contents of <code>tracing_utils_py3.py</code> to <code>tracing_utils.py</code>. The <code>start_child_span_decorator</code> is now in <code>sentry_sdk.tracing_utils</code>.</li> <li>The actual implementation of <code>get_current_span</code> was moved to <code>sentry_sdk.tracing_utils</code>. <code>sentry_sdk.get_current_span</code> is still accessible as part of the top-level API.</li> <li><code>sentry_sdk.tracing_utils.add_query_source()</code>: Removed the <code>hub</code> parameter. It is not necessary anymore.</li> <li><code>sentry_sdk.tracing_utils.record_sql_queries()</code>: Removed the <code>hub</code> parameter. It is not necessary anymore.</li> <li><code>sentry_sdk.tracing_utils.get_current_span()</code> does now take a <code>scope</code> instead of a <code>hub</code> as parameter.</li> <li><code>sentry_sdk.tracing_utils.should_propagate_trace()</code> now takes a <code>Client</code> instead of a <code>Hub</code> as first parameter.</li> <li><code>sentry_sdk.utils.is_sentry_url()</code> now takes a <code>Client</code> instead of a <code>Hub</code> as first parameter.</li> <li><code>sentry_sdk.utils._get_contextvars</code> does not return a tuple with three values, but a tuple with two values. The <code>copy_context</code> was removed.</li> <li>If you create a transaction manually and later mutate the transaction in a <code>configure_scope</code> block this does not work anymore. Here is a recipe on how to change your code to make it work: Your existing implementation: <pre lang="python"><code></code></pre> </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/882ed7f60537113f10d825c48b011c49a6095bda"><code>882ed7f</code></a> Updated changelog</li> <li><a href="https://github.com/getsentry/sentry-python/commit/ce89048b8ba84e4b709d026e4ec291779b7df0a3"><code>ce89048</code></a> release: 2.0.1</li> <li><a href="https://github.com/getsentry/sentry-python/commit/162773c47d033e2f87ea8ede0876136eb3bc170f"><code>162773c</code></a> fix(integrations): Do not use convenience decorator (<a href="https://redirect.github.com/getsentry/sentry-python/issues/3022">#3022</a>)</li> <li><a href="https://github.com/getsentry/sentry-python/commit/a626f013be03a363d130bc2d20e80734226aa33a"><code>a626f01</code></a> Add Lambda function that deletes test Lambda functions (<a href="https://redirect.github.com/getsentry/sentry-python/issues/2960">#2960</a>)</li> <li><a href="https://github.com/getsentry/sentry-python/commit/f5db9ce4eedd0666cdbf99ef5ee238ae266835e7"><code>f5db9ce</code></a> Refactoring propagation context (<a href="https://redirect.github.com/getsentry/sentry-python/issues/2970">#2970</a>)</li> <li><a href="https://github.com/getsentry/sentry-python/commit/d91a510337fae9a1969ad8acf0a0f8098996a91f"><code>d91a510</code></a> Use <code>pid</code> for test database name in Django tests (<a href="https://redirect.github.com/getsentry/sentry-python/issues/2998">#2998</a>)</li> <li><a href="https://github.com/getsentry/sentry-python/commit/534a3011f03f8408faaded8ba653c5befa2cef45"><code>534a301</code></a> test(tracing): Add tests for discarded transaction debug messages</li> <li><a href="https://github.com/getsentry/sentry-python/commit/5aa7c9bd91fdf597fb876d831da0bdf2e2bda495"><code>5aa7c9b</code></a> fix(tracing): Correct discarded transaction debug message</li> <li><a href="https://github.com/getsentry/sentry-python/commit/bda9deba2adf0f3647355111695817ca7efe4c29"><code>bda9deb</code></a> docs(tracing): Delete inaccurate comment</li> <li><a href="https://github.com/getsentry/sentry-python/commit/6a733683ebd9728bab065b6e2d9ea11687e204a4"><code>6a73368</code></a> build(deps): bump checkouts/data-schemas from <code>1e17eb5</code> to <code>4aa14a7</code> (<a href="https://redirect.github.com/getsentry/sentry-python/issues/2997">#2997</a>)</li> <li>Additional commits viewable in <a href="https://github.com/getsentry/sentry-python/compare/1.45.0...2.0.1">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=1.45.0&new-version=2.0.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 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-04-26 17:09:46 +02:00
sonarqubecloud[bot] commented 2024-04-26 17:48:37 +02:00 (Migrated from github.com)

Please retry analysis of this Pull-Request directly on SonarCloud

Please retry analysis of this Pull-Request directly on SonarCloud
sonarqubecloud[bot] commented 2024-04-26 17:48:37 +02:00 (Migrated from github.com)

Quality Gate Passed Quality Gate passed

Issues
0 New issues
0 Accepted issues

Measures
0 Security Hotspots
No data about Coverage
No data about Duplication

See analysis details on SonarCloud

## [![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=216) **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=216&resolved=false&inNewCodePeriod=true) ![](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/common/accepted-16px.png '') [0 Accepted issues](https://sonarcloud.io/component_measures?id=luketainton_webexmemebot&pullRequest=216&metric=new_accepted_issues&view=list) 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=216&resolved=false&inNewCodePeriod=true) ![](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/common/no-data-16px.png '') No data about Coverage ![](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/common/no-data-16px.png '') No data about Duplication [See analysis details on SonarCloud](https://sonarcloud.io/dashboard?id=luketainton_webexmemebot&pullRequest=216)
Sign in to join this conversation.
No description provided.