Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Update dependency sentry-sdk to v2.43.0#296

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Open
renovate wants to merge1 commit intomain
base:main
Choose a base branch
Loading
fromrenovate/sentry-sdk-2.x-lockfile

Conversation

@renovate
Copy link
Contributor

@renovaterenovatebot commentedJul 15, 2024
edited
Loading

This PR contains the following updates:

PackageChangeAgeConfidence
sentry-sdk (changelog)2.10.0 ->2.43.0ageconfidence

Release Notes

getsentry/sentry-python (sentry-sdk)

v2.43.0

Compare Source

Various fixes & improvements
  • Pydantic AI integration (#​4906) by@​constantinius

    Enable the new Pydantic AI integration with the code snippet below, and you can use the Sentry AI dashboards to observe your AI calls:

    importsentry_sdkfromsentry_sdk.integrations.pydantic_aiimportPydanticAIIntegrationsentry_sdk.init(dsn="<your-dsn>",# Set traces_sample_rate to 1.0 to capture 100%# of transactions for tracing.traces_sample_rate=1.0,# Add data like inputs and responses;# see https://docs.sentry.io/platforms/python/data-management/data-collected/ for more infosend_default_pii=True,integrations=[PydanticAIIntegration(),    ],)
  • MCP Python SDK (#​4964) by@​constantinius

    Enable the new Python MCP integration with the code snippet below:

    importsentry_sdkfromsentry_sdk.integrations.mcpimportMCPIntegrationsentry_sdk.init(dsn="<your-dsn>",# Set traces_sample_rate to 1.0 to capture 100%# of transactions for tracing.traces_sample_rate=1.0,# Add data like inputs and responses;# see https://docs.sentry.io/platforms/python/data-management/data-collected/ for more infosend_default_pii=True,integrations=[MCPIntegration(),    ],)
  • fix(google-genai): Set agent name (#​5038) by@​constantinius

  • fix(integrations): hooking into error tracing function to find out if an execute tool span should be set to error (#​4986) by@​constantinius

  • fix(django): Improve logic for classifying cache hits and misses (#​5029) by@​alexander-alderman-webb

  • chore(metrics): Rename _metrics to metrics (#​5035) by@​alexander-alderman-webb

  • fix(tracemetrics): Bump metric buffer size to 1k (#​5031) by@​k-fish

  • fix startlette deprecation warning (#​5034) by@​DeoLeung

  • fix(strawberry): Remove autodetection, always use sync extension (#​4984) by@​sentrivana

  • build(deps): bump actions/upload-artifact from 4 to 5 (#​5032) by@​dependabot

  • fix(ai): truncate messages for google genai (#​4992) by@​shellmayr

  • fix(ai): add message truncation to litellm (#​4973) by@​shellmayr

  • feat(langchain): Support v1 (#​4874) by@​sentrivana

  • ci: Runcommon test suite on Python 3.14t (#​4969) by@​alexander-alderman-webb

  • feat: Officially support 3.14 & run integration tests on 3.14 (#​4974) by@​sentrivana

  • Make logger template format safer to missing kwargs (#​4981) by@​sl0thentr0py

  • tests(huggingface): Support 1.0.0rc7 (#​4979) by@​alexander-alderman-webb

  • feat: Enable HTTP request code origin by default (#​4967) by@​alexander-alderman-webb

  • ci: Runcommon test suite on Python 3.14 (#​4896) by@​sentrivana

v2.42.1

Compare Source

Various fixes & improvements

v2.42.0

Compare Source

Various fixes & improvements
  • feat: Add source information for slow outgoing HTTP requests (#​4902) by@​alexander-alderman-webb

  • tests: Update tox (#​4913) by@​sentrivana

  • fix(Ray): Retain the original function name when patching Ray tasks (#​4858) by@​svartalf

  • feat(ai): Addpython-genai integration (#​4891) by@​vgrozdanic
    Enable the new Google GenAI integration with the code snippet below, and you can use the Sentry AI dashboards to observe your AI calls:

    importsentry_sdkfromsentry_sdk.integrations.google_genaiimportGoogleGenAIIntegrationsentry_sdk.init(dsn="<your-dsn>",

Set traces_sample_rate to 1.0 to capture 100%

of transactions for tracing.

  traces_sample_rate=1.0,

Add data like inputs and responses;

seehttps://docs.sentry.io/platforms/python/data-management/data-collected/ for more info

  send_default_pii=True,  integrations=[      GoogleGenAIIntegration(),  ],

)

v2.41.0

Compare Source

Various fixes & improvements

v2.40.0

Compare Source

Various fixes & improvements
  • Add LiteLLM integration (#​4864) by@​constantinius
    Once you've enabled thenew LiteLLM integration, you can use the Sentry AI Agents Monitoring, a Sentry dashboard that helps you understand what's going on with your AI requests:

    importsentry_sdkfromsentry_sdk.integrations.litellmimportLiteLLMIntegrationsentry_sdk.init(dsn="<your-dsn>",

Set traces_sample_rate to 1.0 to capture 100%

of transactions for tracing.

  traces_sample_rate=1.0,

Add data like inputs and responses;

seehttps://docs.sentry.io/platforms/python/data-management/data-collected/ for more info

  send_default_pii=True,  integrations=[      LiteLLMIntegration(),  ],

)

- Litestar: Copy request info to prevent cookies mutation (#&#8203;4883) by @&#8203;alexander-alderman-webb- Add tracing to `DramatiqIntegration` (#&#8203;4571) by @&#8203;Igreh- Also emit spans for MCP tool calls done by the LLM (#&#8203;4875) by @&#8203;constantinius- Option to not trace HTTP requests based on status codes (#&#8203;4869) by @&#8203;alexander-alderman-webbYou can now disable transactions for incoming requests with specific HTTP status codes. The [new `trace_ignore_status_codes` option](https://docs.sentry.io/platforms/python/configuration/options/#trace_ignore_status_codes) accepts a `set` of status codes as integers. If a transaction wraps a request that results in one of the provided status codes, the transaction will be unsampled.  ```pythonimport sentry_sdksentry_sdk.init(    trace_ignore_status_codes={301, 302, 303, *range(305, 400), 404},)

v2.39.0

Compare Source

Various fixes & improvements

Note: This is my last release. So long, and thanks for all the fish! by@​antonpirker

v2.38.0

Compare Source

Various fixes & improvements

v2.37.1

Compare Source

Various fixes & improvements

v2.37.0

Compare Source

v2.36.0

Compare Source

Various fixes & improvements
importsentry_sdkfromsentry_sdk.integrations.unraisablehookimportUnraisablehookIntegrationsentry_sdk.init(dsn="...",integrations=[UnraisablehookIntegration(),    ])

v2.35.2

Compare Source

Various fixes & improvements

v2.35.1

Compare Source

Various fixes & improvements

v2.35.0

Compare Source

Various fixes & improvements

v2.34.1

Compare Source

Various fixes & improvements

v2.34.0

Compare Source

Various fixes & improvements

v2.33.2

Compare Source

Various fixes & improvements

v2.33.1

Compare Source

Various fixes & improvements

v2.33.0

Compare Source

Various fixes & improvements

v2.32.0

Compare Source

Various fixes & improvements

v2.31.0

Compare Source

Various fixes & improvements
importsentry_sdkfromsentry_sdk.integrations.openai_agentsimportOpenAIAgentsIntegration

v2.30.0

Compare Source

Various fixes & improvements
  • New beta feature: Sentry logs for Loguru (#​4445) by@​sentrivana

    We can now capture Loguru logs and send them to Sentry.

importsentry_sdkfromsentry_sdk.integrations.loguruimportLoguruIntegration

v2.29.1

Compare Source

Various fixes & improvements

v2.29.0

Compare Source

Various fixes & improvements

v2.28.0

Compare Source

Various fixes & improvements

v2.27.0

Compare Source

Various fixes & improvements

v2.26.1

Compare Source

Various fixes & improvements

v2.26.0

Compare Source

Various fixes & improvements

v2.25.1

Compare Source

Various fixes & improvements

v2.25.0

Compare Source

Various fixes & improvements
  • **New

Configuration

📅Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated byMend Renovate. View therepository job log.

@renovaterenovatebot requested a review fromks129 as acode ownerJuly 15, 2024 12:07
@renovaterenovatebot changed the titleUpdate dependency sentry-sdk to v2.10.0Update dependency sentry-sdk to v2.10.0 - autoclosedJul 19, 2024
@renovaterenovatebot closed thisJul 19, 2024
@renovaterenovatebot deleted the renovate/sentry-sdk-2.x-lockfile branchJuly 19, 2024 21:22
@renovaterenovatebot changed the titleUpdate dependency sentry-sdk to v2.10.0 - autoclosedUpdate dependency sentry-sdk to v2.10.0Jul 24, 2024
@renovaterenovatebot reopened thisJul 24, 2024
@renovaterenovatebot restored the renovate/sentry-sdk-2.x-lockfile branchJuly 24, 2024 09:26
@renovaterenovatebotforce-pushed therenovate/sentry-sdk-2.x-lockfile branch fromb1e92ac to256c37cCompareJuly 24, 2024 09:27
@renovaterenovatebot changed the titleUpdate dependency sentry-sdk to v2.10.0Update dependency sentry-sdk to v2.11.0Jul 24, 2024
@renovaterenovatebotforce-pushed therenovate/sentry-sdk-2.x-lockfile branch from256c37c tod3fb5dbCompareJuly 28, 2024 19:08
@renovaterenovatebot changed the titleUpdate dependency sentry-sdk to v2.11.0Update dependency sentry-sdk to v2.12.0Jul 31, 2024
@renovaterenovatebotforce-pushed therenovate/sentry-sdk-2.x-lockfile branch fromd3fb5db toaede171CompareJuly 31, 2024 12:17
@renovaterenovatebotforce-pushed therenovate/sentry-sdk-2.x-lockfile branch fromaede171 to3ff4dfdCompareAugust 13, 2024 16:24
@renovaterenovatebot changed the titleUpdate dependency sentry-sdk to v2.12.0Update dependency sentry-sdk to v2.13.0Aug 13, 2024
@renovaterenovatebotforce-pushed therenovate/sentry-sdk-2.x-lockfile branch from3ff4dfd todf642b2CompareSeptember 9, 2024 16:35
@renovaterenovatebot changed the titleUpdate dependency sentry-sdk to v2.13.0Update dependency sentry-sdk to v2.14.0Sep 9, 2024
@renovaterenovatebot changed the titleUpdate dependency sentry-sdk to v2.14.0Update dependency sentry-sdk to v2.15.0Oct 1, 2024
@renovaterenovatebotforce-pushed therenovate/sentry-sdk-2.x-lockfile branch 2 times, most recently fromeee934a tocd84bf7CompareOctober 8, 2024 13:41
@renovaterenovatebot changed the titleUpdate dependency sentry-sdk to v2.15.0Update dependency sentry-sdk to v2.16.0Oct 8, 2024
@renovaterenovatebotforce-pushed therenovate/sentry-sdk-2.x-lockfile branch fromcd84bf7 tof74d5eeCompareOctober 17, 2024 10:12
@renovaterenovatebot changed the titleUpdate dependency sentry-sdk to v2.16.0Update dependency sentry-sdk to v2.17.0Oct 17, 2024
@renovaterenovatebotforce-pushed therenovate/sentry-sdk-2.x-lockfile branch fromf74d5ee to1da6f66CompareNovember 4, 2024 14:05
@renovaterenovatebot changed the titleUpdate dependency sentry-sdk to v2.17.0Update dependency sentry-sdk to v2.18.0Nov 4, 2024
@renovaterenovatebotforce-pushed therenovate/sentry-sdk-2.x-lockfile branch from1da6f66 toa91bc5aCompareNovember 21, 2024 16:49
@renovaterenovatebot changed the titleUpdate dependency sentry-sdk to v2.18.0Update dependency sentry-sdk to v2.19.0Nov 21, 2024
@renovaterenovatebotforce-pushed therenovate/sentry-sdk-2.x-lockfile branch froma91bc5a to5af7ea5CompareDecember 5, 2024 18:13
@renovaterenovatebot changed the titleUpdate dependency sentry-sdk to v2.19.0Update dependency sentry-sdk to v2.19.1Dec 5, 2024
@renovaterenovatebotforce-pushed therenovate/sentry-sdk-2.x-lockfile branch from5af7ea5 to8573b59CompareDecember 6, 2024 09:11
@renovaterenovatebot changed the titleUpdate dependency sentry-sdk to v2.19.1Update dependency sentry-sdk to v2.19.2Dec 6, 2024
@renovaterenovatebotforce-pushed therenovate/sentry-sdk-2.x-lockfile branch from30bf048 to70bd8b0CompareJuly 30, 2025 11:47
@renovaterenovatebot changed the titleUpdate dependency sentry-sdk to v2.34.0Update dependency sentry-sdk to v2.34.1Jul 30, 2025
@renovaterenovatebotforce-pushed therenovate/sentry-sdk-2.x-lockfile branch 2 times, most recently fromdbe0b73 to472f05aCompareAugust 14, 2025 22:21
@renovaterenovatebot changed the titleUpdate dependency sentry-sdk to v2.34.1Update dependency sentry-sdk to v2.35.0Aug 14, 2025
@renovaterenovatebotforce-pushed therenovate/sentry-sdk-2.x-lockfile branch from472f05a to501d679CompareAugust 26, 2025 15:55
@renovaterenovatebot changed the titleUpdate dependency sentry-sdk to v2.35.0Update dependency sentry-sdk to v2.35.1Aug 26, 2025
@renovaterenovatebotforce-pushed therenovate/sentry-sdk-2.x-lockfile branch from501d679 to568223eCompareSeptember 2, 2025 00:00
@renovaterenovatebot changed the titleUpdate dependency sentry-sdk to v2.35.1Update dependency sentry-sdk to v2.35.2Sep 2, 2025
@renovaterenovatebotforce-pushed therenovate/sentry-sdk-2.x-lockfile branch from568223e tob87ca3bCompareSeptember 4, 2025 09:31
@renovaterenovatebot changed the titleUpdate dependency sentry-sdk to v2.35.2Update dependency sentry-sdk to v2.36.0Sep 4, 2025
@renovaterenovatebotforce-pushed therenovate/sentry-sdk-2.x-lockfile branch fromb87ca3b toe19adf1CompareSeptember 5, 2025 12:36
@renovaterenovatebot changed the titleUpdate dependency sentry-sdk to v2.36.0Update dependency sentry-sdk to v2.37.0Sep 5, 2025
@renovaterenovatebotforce-pushed therenovate/sentry-sdk-2.x-lockfile branch frome19adf1 to7ac2aceCompareSeptember 9, 2025 14:43
@renovaterenovatebot changed the titleUpdate dependency sentry-sdk to v2.37.0Update dependency sentry-sdk to v2.37.1Sep 9, 2025
@renovaterenovatebotforce-pushed therenovate/sentry-sdk-2.x-lockfile branch from7ac2ace tof6eb628CompareSeptember 16, 2025 03:09
@renovaterenovatebot changed the titleUpdate dependency sentry-sdk to v2.37.1Update dependency sentry-sdk to v2.38.0Sep 16, 2025
@renovaterenovatebotforce-pushed therenovate/sentry-sdk-2.x-lockfile branch fromf6eb628 to7cb918cCompareSeptember 25, 2025 09:55
@renovaterenovatebot changed the titleUpdate dependency sentry-sdk to v2.38.0Update dependency sentry-sdk to v2.39.0Sep 25, 2025
@renovaterenovatebotforce-pushed therenovate/sentry-sdk-2.x-lockfile branch from7cb918c to5698237CompareOctober 6, 2025 13:16
@renovaterenovatebot changed the titleUpdate dependency sentry-sdk to v2.39.0Update dependency sentry-sdk to v2.40.0Oct 6, 2025
@renovaterenovatebotforce-pushed therenovate/sentry-sdk-2.x-lockfile branch from5698237 tof25ad1eCompareOctober 9, 2025 16:27
@renovaterenovatebot changed the titleUpdate dependency sentry-sdk to v2.40.0Update dependency sentry-sdk to v2.41.0Oct 9, 2025
@renovaterenovatebotforce-pushed therenovate/sentry-sdk-2.x-lockfile branch fromf25ad1e toac91837CompareOctober 15, 2025 09:10
@renovaterenovatebot changed the titleUpdate dependency sentry-sdk to v2.41.0Update dependency sentry-sdk to v2.42.0Oct 15, 2025
@renovaterenovatebotforce-pushed therenovate/sentry-sdk-2.x-lockfile branch fromac91837 tofeee657CompareOctober 20, 2025 15:33
@renovaterenovatebot changed the titleUpdate dependency sentry-sdk to v2.42.0Update dependency sentry-sdk to v2.42.1Oct 20, 2025
| datasource | package    | from   | to     || ---------- | ---------- | ------ | ------ || pypi       | sentry-sdk | 2.10.0 | 2.43.0 |
@renovaterenovatebotforce-pushed therenovate/sentry-sdk-2.x-lockfile branch fromfeee657 to6396730CompareOctober 29, 2025 11:44
@renovaterenovatebot changed the titleUpdate dependency sentry-sdk to v2.42.1Update dependency sentry-sdk to v2.43.0Oct 29, 2025
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment

Reviewers

@ks129ks129Awaiting requested review from ks129ks129 is a code owner

At least 1 approving review is required to merge this pull request.

Assignees

No one assigned

Labels

None yet

Projects

None yet

Milestone

No milestone

Development

Successfully merging this pull request may close these issues.

1 participant


[8]ページ先頭

©2009-2025 Movatter.jp