Skip to content
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency sentry-sdk to v1.25.1 #2424

Merged
merged 1 commit into from
Jun 12, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 15, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
sentry-sdk (changelog) ==1.22.2 -> ==1.25.1 age adoption passing confidence

Release Notes

getsentry/sentry-python

v1.25.1

Compare Source

Django update (ongoing)

Collections of improvements to our Django integration.

By: @​mgaligniana (#​1773)

Various fixes & improvements

v1.25.0

Compare Source

Various fixes & improvements

v1.24.0

Compare Source

Various fixes & improvements
  • New: Celery Beat exclude tasks option (#​2130) by @​antonpirker

    You can exclude Celery Beat tasks from being auto-instrumented. To do this, add a list of tasks you want to exclude as option exclude_beat_tasks when creating CeleryIntegration. The list can contain simple strings with the full task name, as specified in the Celery Beat schedule, or regular expressions to match multiple tasks.

    For more information, see the documentation for Crons for more information.

    Usage:

        exclude_beat_tasks = [
            "some-task-a",
            "payment-check-.*",
        ]
        sentry_sdk.init(
            dsn='___PUBLIC_DSN___',
            integrations=[
                CeleryIntegration(
                    monitor_beat_tasks=True,
                    exclude_beat_tasks=exclude_beat_tasks,
                ),
            ],
        )

    In this example the task some-task-a and all tasks with a name starting with payment-check- will be ignored.

  • New: Add support for ExceptionGroups (#​2025) by @​antonpirker

    Note: If running Self-Hosted Sentry, you should wait to adopt this SDK update until after updating to the 23.6.0 (est. June 2023) release of Sentry. Updating early will not break anything, but you will not get the full benefit of the Exception Groups improvements to issue grouping that were added to the Sentry backend.

  • Prefer importlib.metadata over pkg_resources if available (#​2081) by @​sentrivana

  • Work with a copy of request, vars in the event (#​2125) by @​sentrivana

  • Pinned version of dependency that broke the build (#​2133) by @​antonpirker

v1.23.1

Compare Source

Various fixes & improvements

v1.23.0

Compare Source

Various fixes & improvements
  • New: Add loguru integration (#​1994) by @​PerchunPak

    Check the documentation for more information.

    Usage:

    from loguru import logger
    import sentry_sdk
    from sentry_sdk.integrations.loguru import LoguruIntegration
    
    sentry_sdk.init(
        dsn="___PUBLIC_DSN___",
        integrations=[
            LoguruIntegration(),
        ],
    )
    
    logger.debug("I am ignored")
    logger.info("I am a breadcrumb")
    logger.error("I am an event", extra=dict(bar=43))
    logger.exception("An exception happened")
    • An error event with the message "I am an event" will be created.
    • "I am a breadcrumb" will be attached as a breadcrumb to that event.
    • bar will end up in the extra attributes of that event.
    • "An exception happened" will send the current exception from sys.exc_info() with the stack trace to Sentry. If there's no exception, the current stack will be attached.
    • The debug message "I am ignored" will not be captured by Sentry. To capture it, set level to DEBUG or lower in LoguruIntegration.
  • Do not truncate request body if request_bodies is "always" (#​2092) by @​sentrivana

  • Fixed Celery headers for Beat auto-instrumentation (#​2102) by @​antonpirker

  • Add db.operation to Redis and MongoDB spans (#​2089) by @​antonpirker

  • Make sure we're importing redis the library (#​2106) by @​sentrivana

  • Add include_source_context option (#​2020) by @​farhat-nawaz and @​sentrivana

  • Import Markup from markupsafe (#​2047) by @​rco-ableton

  • Fix __qualname__ missing attribute in asyncio integration (#​2105) by @​sl0thentr0py

  • Remove relay extension from AWS Layer (#​2068) by @​sl0thentr0py

  • Add a note about pip freeze to the bug template (#​2103) by @​sentrivana


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 becomes conflicted, 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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added the renovate label May 15, 2023
@github-actions
Copy link

github-actions bot commented May 15, 2023

Coverage report

Total coverage

Status Category Percentage Covered / Total
🔴 Statements 12% 84/700
🔴 Branches 13.69% 49/358
🔴 Functions 9.62% 25/260
🔴 Lines 23.23% 528/2273

Status of coverage: 🟢 - ok, 🟡 - slightly more than threshold, 🔴 - under the threshold

Report generated by 🧪jest coverage report action from 47ebae2

@renovate renovate bot changed the title chore(deps): update dependency sentry-sdk to v1.23.0 chore(deps): update dependency sentry-sdk to v1.23.1 May 17, 2023
@renovate renovate bot force-pushed the renovate/sentry-sdk-1.x branch from 6912425 to b37a0f2 Compare May 17, 2023 13:27
@renovate renovate bot changed the title chore(deps): update dependency sentry-sdk to v1.23.1 chore(deps): update dependency sentry-sdk to v1.24.0 May 23, 2023
@renovate renovate bot force-pushed the renovate/sentry-sdk-1.x branch from b37a0f2 to ccb5c39 Compare May 23, 2023 13:16
@renovate renovate bot changed the title chore(deps): update dependency sentry-sdk to v1.24.0 chore(deps): update dependency sentry-sdk to v1.25.0 Jun 2, 2023
@renovate renovate bot changed the title chore(deps): update dependency sentry-sdk to v1.25.0 chore(deps): update dependency sentry-sdk to v1.25.1 Jun 7, 2023
@renovate renovate bot force-pushed the renovate/sentry-sdk-1.x branch from 98aff06 to a4c83a7 Compare June 7, 2023 18:22
@goapunk goapunk enabled auto-merge (rebase) June 12, 2023 11:14
@renovate renovate bot force-pushed the renovate/sentry-sdk-1.x branch from a4c83a7 to 47ebae2 Compare June 12, 2023 11:15
@goapunk goapunk merged commit 5035396 into main Jun 12, 2023
@goapunk goapunk deleted the renovate/sentry-sdk-1.x branch June 12, 2023 11:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant