Skip to content

Build(deps): bump sentry-sdk[fastapi] from 2.0.1 to 2.1.1

Ronan Amicel requested to merge dependabot-pip-sentry-sdk-fastapi--2.1.1 into main

Bumps sentry-sdk[fastapi] from 2.0.1 to 2.1.1.

Release notes

Sourced from sentry-sdk[fastapi]'s releases.

2.1.1

2.1.0

  • fix(quart): Fix Quart integration (#3043) by @​szokeasaurusrex

  • New integration: Langchain (#2911) by @​colin-sentry

    Usage: (Langchain is auto enabling, so you do not need to do anything special)

    from langchain_openai import ChatOpenAI
    import sentry_sdk
    sentry_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 @​czyber

    Usage: (add the AnthropicIntegration to your sentry_sdk.init() call)

    from anthropic import Anthropic
    import 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-sentry

    Usage: (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[fastapi]'s changelog.

2.1.1

2.1.0

  • fix(quart): Fix Quart integration (#3043) by @​szokeasaurusrex

  • New integration: Langchain (#2911) by @​colin-sentry

    Usage: (Langchain is auto enabling, so you do not need to do anything special)

    from langchain_openai import ChatOpenAI
    import sentry_sdk
    sentry_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 @​czyber

    Usage: (add the AnthropicIntegration to your sentry_sdk.init() call)

    from anthropic import Anthropic
    import 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-sentry

    Usage: (Huggingface Hub is auto enabling, so you do not need to do anything special)

... (truncated)

Commits

Merge request reports