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.45.0 - autoclosed #664

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 12, 2023

Mend Renovate

This PR contains the following updates:

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

Release Notes

getsentry/sentry-python (sentry-sdk)

v1.45.0

Compare Source

This is the final 1.x release for the forseeable future. Development will continue on the 2.x release line. The first 2.x version will be available in the next few weeks.

Various fixes & improvements
  • Allow to upsert monitors (#​2929) by @​sentrivana

    It's now possible to provide monitor_config to the monitor decorator/context manager directly:

    from sentry_sdk.crons import monitor

v1.44.1

Compare Source

Various fixes & improvements
  • Make monitor async friendly (#​2912) by @​sentrivana

    You can now decorate your async functions with the monitor
    decorator and they will correctly report their duration
    and completion status.

  • Fixed Event | None runtime TypeError (#​2928) by @​szokeasaurusrex

v1.44.0

Compare Source

Various fixes & improvements

v1.43.0

Compare Source

Various fixes & improvements
  • Add optional keep_alive (#​2842) by @​sentrivana

    If you're experiencing frequent network issues between the SDK and Sentry,
    you can try turning on TCP keep-alive:

    import sentry_sdk
    
    sentry_sdk.init(

...your usual settings...

  keep_alive=True,

)


- Add support for Celery Redbeat cron tasks (#​2643) by @​kwigley

The SDK now supports the Redbeat scheduler in addition to the default
Celery Beat scheduler for auto instrumenting crons. See
[the docs](https://docs.sentry.io/platforms/python/integrations/celery/crons/)
for more information about how to set this up.

- `aws_event` can be an empty list (#​2849) by @​sentrivana
- Re-export `Event` in `types.py` (#​2829) by @​szokeasaurusrex
- Small API docs improvement (#​2828) by @​antonpirker
- Fixed OpenAI tests (#​2834) by @​antonpirker
- Bump `checkouts/data-schemas` from `ed078ed` to `8232f17` (#​2832) by @​dependabot

v1.42.0

Compare Source

Various fixes & improvements
  • New integration: OpenAI integration (#​2791) by @​colin-sentry

    We added an integration for OpenAI to capture errors and also performance data when using the OpenAI Python SDK.

    Useage:

    This integrations is auto-enabling, so if you have the openai package in your project it will be enabled. Just initialize Sentry before you create your OpenAI client.

    from openai import OpenAI
    
    import sentry_sdk
    
    sentry_sdk.init(
        dsn="___PUBLIC_DSN___",
        enable_tracing=True,
        traces_sample_rate=1.0,
    )
    
    client = OpenAI()

    For more information, see the documentation for OpenAI integration.

  • Discard open OpenTelemetry spans after 10 minutes (#​2801) by @​antonpirker

  • Propagate sentry-trace and baggage headers to Huey tasks (#​2792) by @​cnschn

  • Added Event type (#​2753) by @​szokeasaurusrex

  • Improve scrub_dict typing (#​2768) by @​szokeasaurusrex

  • Dependencies: bump types-protobuf from 4.24.0.20240302 to 4.24.0.20240311 (#​2797) by @​dependabot

v1.41.0

Compare Source

Various fixes & improvements
  • Add recursive scrubbing to EventScrubber (#​2755) by @​Cheapshot003

    By default, the EventScrubber will not search your events for potential
    PII recursively. With this release, you can enable this behavior with:

    import sentry_sdk
    from sentry_sdk.scrubber import EventScrubber
    
    sentry_sdk.init(

...your usual settings...

  event_scrubber=EventScrubber(recursive=True),

)


- Expose `socket_options` (#​2786) by @​sentrivana

If the SDK is experiencing connection issues (connection resets, server
closing connection without response, etc.) while sending events to Sentry,
tweaking the default `urllib3` socket options to the following can help:

```python
import socket
from urllib3.connection import HTTPConnection
import sentry_sdk

sentry_sdk.init(

### ...your usual settings...
    socket_options=HTTPConnection.default_socket_options + [
        (socket.SOL_SOCKET, socket.SO_KEEPALIVE, 1),

### note: skip the following line if you're on MacOS since TCP_KEEPIDLE doesn't exist there
        (socket.SOL_TCP, socket.TCP_KEEPIDLE, 45),
        (socket.SOL_TCP, socket.TCP_KEEPINTVL, 10),
        (socket.SOL_TCP, socket.TCP_KEEPCNT, 6),
    ],
)

v1.40.6

Compare Source

Various fixes & improvements

v1.40.5

Compare Source

Various fixes & improvements
  • Deprecate last_event_id(). (#​2749) by @​antonpirker

  • Warn if uWSGI is set up without proper thread support (#​2738) by @​sentrivana

    uWSGI has to be run in threaded mode for the SDK to run properly. If this is
    not the case, the consequences could range from features not working unexpectedly
    to uWSGI workers crashing.

    Please make sure to run uWSGI with both --enable-threads and --py-call-uwsgi-fork-hooks.

  • parsed_url can be None (#​2734) by @​sentrivana

  • Python 3.7 is not supported anymore by Lambda, so removed it and added 3.12 (#​2729) by @​antonpirker

v1.40.4

Compare Source

Various fixes & improvements

v1.40.3

Compare Source

Various fixes & improvements

v1.40.2

Compare Source

Various fixes & improvements

v1.40.1

Compare Source

Various fixes & improvements

v1.40.0

Compare Source

Various fixes & improvements

v1.39.2

Compare Source

Various fixes & improvements

v1.39.1

Compare Source

Various fixes & improvements

v1.39.0

Compare Source

Various fixes & improvements

v1.38.0

Compare Source

Various fixes & improvements

v1.37.1

Compare Source

Various fixes & improvements

v1.37.0

Compare Source

Various fixes & improvements

v1.36.0

Compare Source

Various fixes & improvements

v1.35.0

Compare Source

Various fixes & improvements
  • Updated gRPC integration: Asyncio interceptors and easier setup (#​2369) by @​fdellekart

    Our gRPC integration now instruments incoming unary-unary grpc requests and outgoing unary-unary, unary-stream grpc requests using grpcio channels. Everything works now for sync and async code.

    Before this release you had to add Sentry interceptors by hand to your gRPC code, now the only thing you need to do is adding the GRPCIntegration to you sentry_sdk_init() call. (See documentation for more information):

    import sentry_sdk
    from sentry_sdk.integrations.grpc import GRPCIntegration
    
    sentry_sdk.init(
        dsn="___PUBLIC_DSN___",
        enable_tracing=True,
        integrations=[
            GRPCIntegration(),
        ],
    )

    The old way still works, but we strongly encourage you to update your code to the way described above.

  • Python 3.12: Replace deprecated datetime functions (#​2502) by @​sentrivana

  • Metrics: Unify datetime format (#​2409) by @​mitsuhiko

  • Celery: Set correct data in check_ins (#​2500) by @​antonpirker

  • Celery: Read timezone for Crons monitors from celery_schedule if existing (#​2497) by @​antonpirker

  • Django: Removing redundant code in Django tests (#​2491) by @​vagi8

  • Django: Make reading the request body work in Django ASGI apps. (#​2495) by @​antonpirker

  • FastAPI: Use wraps on fastapi request call wrapper (#​2476) by @​nkaras

  • Fix: Probe for psycopg2 and psycopg3 parameters function. (#​2492) by @​antonpirker

  • Fix: Remove unnecessary TYPE_CHECKING alias (#​2467) by @​rafrafek

v1.34.0

Compare Source

Various fixes & improvements

v1.33.1

Compare Source

Various fixes & improvements

v1.33.0

Compare Source

Various fixes & improvements

v1.32.0

Compare Source

Various fixes & improvements

make sure to set async_execution to False if you're executing

GraphQL queries synchronously

          StrawberryIntegration(async_execution=True),
      ],
      traces_sample_rate=1.0,
  )
```

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 Oct 12, 2023
@renovate renovate bot changed the title chore(deps): update dependency sentry-sdk to v1.32.0 chore(deps): update dependency sentry-sdk to v1.33.0 Oct 31, 2023
@renovate renovate bot force-pushed the renovate/sentry-sdk-1.x branch from dc02b0f to 68a8d15 Compare October 31, 2023 13:03
@renovate renovate bot changed the title chore(deps): update dependency sentry-sdk to v1.33.0 chore(deps): update dependency sentry-sdk to v1.33.1 Oct 31, 2023
@renovate renovate bot force-pushed the renovate/sentry-sdk-1.x branch from 68a8d15 to 7b838d1 Compare October 31, 2023 20:10
@renovate renovate bot changed the title chore(deps): update dependency sentry-sdk to v1.33.1 chore(deps): update dependency sentry-sdk to v1.34.0 Nov 2, 2023
@renovate renovate bot force-pushed the renovate/sentry-sdk-1.x branch from 7b838d1 to 81ee0ad Compare November 2, 2023 16:42
@renovate renovate bot force-pushed the renovate/sentry-sdk-1.x branch from 81ee0ad to 8c0bdd2 Compare November 13, 2023 10:47
@renovate renovate bot changed the title chore(deps): update dependency sentry-sdk to v1.34.0 chore(deps): update dependency sentry-sdk to v1.35.0 Nov 13, 2023
@renovate renovate bot changed the title chore(deps): update dependency sentry-sdk to v1.35.0 chore(deps): update dependency sentry-sdk to v1.36.0 Nov 21, 2023
@renovate renovate bot force-pushed the renovate/sentry-sdk-1.x branch from 8c0bdd2 to c71037f Compare November 21, 2023 14:32
@renovate renovate bot changed the title chore(deps): update dependency sentry-sdk to v1.36.0 chore(deps): update dependency sentry-sdk to v1.37.0 Nov 24, 2023
@renovate renovate bot force-pushed the renovate/sentry-sdk-1.x branch from c71037f to e6d7da3 Compare November 24, 2023 14:00
@renovate renovate bot changed the title chore(deps): update dependency sentry-sdk to v1.37.0 chore(deps): update dependency sentry-sdk to v1.37.1 Nov 24, 2023
@renovate renovate bot force-pushed the renovate/sentry-sdk-1.x branch from e6d7da3 to cf88e98 Compare November 24, 2023 16:04
@renovate renovate bot changed the title chore(deps): update dependency sentry-sdk to v1.37.1 chore(deps): update dependency sentry-sdk to v1.38.0 Nov 29, 2023
@renovate renovate bot force-pushed the renovate/sentry-sdk-1.x branch from cf88e98 to 66ea3af Compare November 29, 2023 14:36
@renovate renovate bot changed the title chore(deps): update dependency sentry-sdk to v1.38.0 chore(deps): update dependency sentry-sdk to v1.39.0 Dec 12, 2023
@renovate renovate bot force-pushed the renovate/sentry-sdk-1.x branch 2 times, most recently from b95e2d4 to 64bb3a8 Compare December 14, 2023 17:53
@renovate renovate bot changed the title chore(deps): update dependency sentry-sdk to v1.39.0 chore(deps): update dependency sentry-sdk to v1.39.1 Dec 14, 2023
@renovate renovate bot changed the title chore(deps): update dependency sentry-sdk to v1.39.1 chore(deps): update dependency sentry-sdk to v1.39.2 Jan 10, 2024
@renovate renovate bot force-pushed the renovate/sentry-sdk-1.x branch from 64bb3a8 to a254340 Compare January 10, 2024 11:20
@renovate renovate bot changed the title chore(deps): update dependency sentry-sdk to v1.39.2 chore(deps): update dependency sentry-sdk to v1.40.0 Jan 30, 2024
@renovate renovate bot force-pushed the renovate/sentry-sdk-1.x branch 2 times, most recently from 3b9da3c to e4e2be7 Compare February 6, 2024 12:24
@renovate renovate bot changed the title chore(deps): update dependency sentry-sdk to v1.40.0 chore(deps): update dependency sentry-sdk to v1.40.1 Feb 6, 2024
@renovate renovate bot force-pushed the renovate/sentry-sdk-1.x branch from e4e2be7 to 2a61e08 Compare February 7, 2024 10:48
@renovate renovate bot changed the title chore(deps): update dependency sentry-sdk to v1.40.1 chore(deps): update dependency sentry-sdk to v1.40.2 Feb 7, 2024
@renovate renovate bot force-pushed the renovate/sentry-sdk-1.x branch from 2a61e08 to 83674a6 Compare February 9, 2024 12:41
@renovate renovate bot changed the title chore(deps): update dependency sentry-sdk to v1.40.2 chore(deps): update dependency sentry-sdk to v1.40.3 Feb 9, 2024
@renovate renovate bot force-pushed the renovate/sentry-sdk-1.x branch from 83674a6 to 1c68f99 Compare February 13, 2024 12:14
@renovate renovate bot changed the title chore(deps): update dependency sentry-sdk to v1.40.3 chore(deps): update dependency sentry-sdk to v1.40.4 Feb 13, 2024
@renovate renovate bot force-pushed the renovate/sentry-sdk-1.x branch from 1c68f99 to 5d3d88e Compare February 19, 2024 15:25
@renovate renovate bot changed the title chore(deps): update dependency sentry-sdk to v1.40.4 chore(deps): update dependency sentry-sdk to v1.40.5 Feb 19, 2024
@renovate renovate bot changed the title chore(deps): update dependency sentry-sdk to v1.40.5 chore(deps): update dependency sentry-sdk to v1.40.6 Feb 27, 2024
@renovate renovate bot force-pushed the renovate/sentry-sdk-1.x branch from 5d3d88e to 0df3238 Compare February 27, 2024 11:29
@renovate renovate bot force-pushed the renovate/sentry-sdk-1.x branch from 0df3238 to 4750bae Compare March 7, 2024 14:29
@renovate renovate bot changed the title chore(deps): update dependency sentry-sdk to v1.40.6 chore(deps): update dependency sentry-sdk to v1.41.0 Mar 7, 2024
@renovate renovate bot force-pushed the renovate/sentry-sdk-1.x branch from 4750bae to 3b1574b Compare March 13, 2024 14:47
@renovate renovate bot changed the title chore(deps): update dependency sentry-sdk to v1.41.0 chore(deps): update dependency sentry-sdk to v1.42.0 Mar 13, 2024
@renovate renovate bot changed the title chore(deps): update dependency sentry-sdk to v1.42.0 chore(deps): update dependency sentry-sdk to v1.43.0 Mar 20, 2024
@renovate renovate bot force-pushed the renovate/sentry-sdk-1.x branch from 3b1574b to 3bb34bc Compare March 20, 2024 15:58
@renovate renovate bot force-pushed the renovate/sentry-sdk-1.x branch from 3bb34bc to 45f9f86 Compare March 28, 2024 17:50
@renovate renovate bot changed the title chore(deps): update dependency sentry-sdk to v1.43.0 chore(deps): update dependency sentry-sdk to v1.44.0 Mar 28, 2024
@renovate renovate bot force-pushed the renovate/sentry-sdk-1.x branch from 45f9f86 to a379f42 Compare April 3, 2024 10:05
@renovate renovate bot changed the title chore(deps): update dependency sentry-sdk to v1.44.0 chore(deps): update dependency sentry-sdk to v1.44.1 Apr 3, 2024
@renovate renovate bot force-pushed the renovate/sentry-sdk-1.x branch from a379f42 to b0d9444 Compare April 10, 2024 17:43
@renovate renovate bot changed the title chore(deps): update dependency sentry-sdk to v1.44.1 chore(deps): update dependency sentry-sdk to v1.45.0 Apr 10, 2024
@renovate renovate bot changed the title chore(deps): update dependency sentry-sdk to v1.45.0 chore(deps): update dependency sentry-sdk to v1.45.0 - autoclosed Jul 18, 2024
@renovate renovate bot closed this Jul 18, 2024
@renovate renovate bot deleted the renovate/sentry-sdk-1.x branch July 18, 2024 20:03
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.

0 participants