pip(deps): bump sentry-sdk from 1.42.0 to 2.1.1
Bumps sentry-sdk from 1.42.0 to 2.1.1.
Release notes
Sourced from sentry-sdk's releases.
2.1.1
- Fix trace propagation in Celery tasks started by Celery Beat. (#3047) by
@​antonpirker2.1.0
fix(quart): Fix Quart integration (#3043) by
@​szokeasaurusrexNew integration: Langchain (#2911) by
@​colin-sentryUsage: (Langchain is auto enabling, so you do not need to do anything special)
from langchain_openai import ChatOpenAI import sentry_sdksentry_sdk.init( dsn="...", enable_tracing=True, traces_sample_rate=1.0, )
llm = ChatOpenAI(model="gpt-3.5-turbo-0125", temperature=0)
Check out the LangChain docs for details.
New integration: Anthropic (#2831) by
@​czyberUsage: (add the AnthropicIntegration to your
sentry_sdk.init()call)from anthropic import Anthropicimport sentry_sdk
sentry_sdk.init( dsn="...", enable_tracing=True, traces_sample_rate=1.0, integrations=[AnthropicIntegration()], )
client = Anthropic()
Check out the Anthropic docs for details.
New integration: Huggingface Hub (#3033) by
@​colin-sentryUsage: (Huggingface Hub is auto enabling, so you do not need to do anything special)
import sentry_sdk from huggingface_hub import InferenceClient
... (truncated)
Changelog
Sourced from sentry-sdk's changelog.
2.1.1
- Fix trace propagation in Celery tasks started by Celery Beat. (#3047) by
@​antonpirker2.1.0
fix(quart): Fix Quart integration (#3043) by
@​szokeasaurusrexNew integration: Langchain (#2911) by
@​colin-sentryUsage: (Langchain is auto enabling, so you do not need to do anything special)
from langchain_openai import ChatOpenAI import sentry_sdksentry_sdk.init( dsn="...", enable_tracing=True, traces_sample_rate=1.0, )
llm = ChatOpenAI(model="gpt-3.5-turbo-0125", temperature=0)
Check out the LangChain docs for details.
New integration: Anthropic (#2831) by
@​czyberUsage: (add the AnthropicIntegration to your
sentry_sdk.init()call)from anthropic import Anthropicimport sentry_sdk
sentry_sdk.init( dsn="...", enable_tracing=True, traces_sample_rate=1.0, integrations=[AnthropicIntegration()], )
client = Anthropic()
Check out the Anthropic docs for details.
New integration: Huggingface Hub (#3033) by
@​colin-sentryUsage: (Huggingface Hub is auto enabling, so you do not need to do anything special)
... (truncated)
Commits
c308cfcUpdated changelog59c3309release: 2.1.15520bdbFix DSC in celery tasks started by Celery Beat. (#3047)0f0cde7Merge branch 'release/2.1.0'385b77brelease: 2.1.0c368a2ffix(quart): Fix Quart integration (#3043)aaa8f04Reduce API cross-section for huggingface in test (#3042)41aa99bHuggingface Hub integration (#3033)eac253afeat(integrations): Add Anthropic Integration (#2831)f98f77fmeta(license): Bump copyright year (#3029)- 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)