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.15.0 #4923

Merged
merged 1 commit into from
Feb 7, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 7, 2023

Mend Renovate

This PR contains the following updates:

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

Release Notes

getsentry/sentry-python

v1.15.0

Compare Source

Various fixes & improvements
  • New: Add Huey Integration (#​1555) by @​Zhenay

    This integration will create performance spans when Huey tasks will be enqueued and when they will be executed.

    Usage:

    Task definition in demo.py:

    import time
    
    from huey import SqliteHuey, crontab
    
    import sentry_sdk
    from sentry_sdk.integrations.huey import HueyIntegration
    
    sentry_sdk.init(
        dsn="...",
        integrations=[
            HueyIntegration(),
        ],
        traces_sample_rate=1.0,
    )
    
    huey = SqliteHuey(filename='/tmp/demo.db')
    
    @​huey.task()
    def add_numbers(a, b):
        return a + b

    Running the tasks in run.py:

    from demo import add_numbers, flaky_task, nightly_backup
    
    import sentry_sdk
    from sentry_sdk.integrations.huey import HueyIntegration
    from sentry_sdk.tracing import TRANSACTION_SOURCE_COMPONENT, Transaction
    
    def main():
        sentry_sdk.init(
            dsn="...",
            integrations=[
                HueyIntegration(),
            ],
            traces_sample_rate=1.0,
        )
    
        with sentry_sdk.start_transaction(name="testing_huey_tasks", source=TRANSACTION_SOURCE_COMPONENT):
            r = add_numbers(1, 2)
    
    if __name__ == "__main__":
        main()
  • Profiling: Do not send single sample profiles (#​1879) by @​Zylphrex

  • Profiling: Add additional test coverage for profiler (#​1877) by @​Zylphrex

  • Profiling: Always use builtin time.sleep (#​1869) by @​Zylphrex

  • Profiling: Defaul in_app decision to None (#​1855) by @​Zylphrex

  • Profiling: Remove use of threading.Event (#​1864) by @​Zylphrex

  • Profiling: Enable profiling on all transactions (#​1797) by @​Zylphrex

  • FastAPI: Fix check for Starlette in FastAPI integration (#​1868) by @​antonpirker

  • Flask: Do not overwrite default for username with email address in FlaskIntegration (#​1873) by @​homeworkprod

  • Tests: Add py3.11 to test-common (#​1871) by @​Zylphrex

  • Fix: Don't log whole event in before_send / event_processor drops (#​1863) by @​sl0thentr0py


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 Feb 7, 2023
@fuzzylogic2000 fuzzylogic2000 enabled auto-merge (rebase) February 7, 2023 12:08
@fuzzylogic2000 fuzzylogic2000 merged commit 2960fca into main Feb 7, 2023
@fuzzylogic2000 fuzzylogic2000 deleted the renovate/sentry-sdk-1.x branch February 7, 2023 12:11
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