Bump sentry-sdk from 1.40.5 to 2.13.0
Bumps sentry-sdk from 1.40.5 to 2.13.0.
Release notes
Sourced from sentry-sdk's releases.
2.13.0
Various fixes & improvements
New integration: Ray (#2400) (#2444) by
@glowskirUsage: (add the RayIntegration to your
sentry_sdk.init()call and make sure it is called in the worker processes)import rayimport 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
@KellyWalkerUsage: (add the LitestarIntegration to your
sentry_sdk.init())from litestar import Litestar, getimport 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
@glowskirUsage: (add the RayIntegration to your
sentry_sdk.init()call and make sure it is called in the worker processes)import rayimport 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
@KellyWalkerUsage: (add the LitestarIntegration to your
sentry_sdk.init())from litestar import Litestar, getimport 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
570307cUpdated changelog4c1ea7arelease: 2.13.017a6cf0feat: Add ray integration support (#2400) (#2444)4858996Expose custom_repr function that precedes safe_repr invocation in serializer ...275c63eref(sessions): Deprecate hub-basedsessions.pylogic (#3419)6a4e729ref(sessions): Deprecateis_auto_session_tracking_enabled(#3428)a6cb9b1Add note to generated yaml files (#3423)19c4069test(sessions): Remove unnecessary line (#3418)da0392fDramatiq integration from@jacobsvante(#3397)7d46709Serialize vars early to avoid living references (#3409)- Additional commits viewable in compare view
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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill 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 versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)