Update dependency sentry-sdk to v1.31.0 #156

Merged
Xefir merged 1 commits from renovate/sentry-sdk-1.x-lockfile into master 2023-09-14 07:34:12 +00:00
Owner

This PR contains the following updates:

Package Type Update Change
sentry-sdk (changelog) dependencies minor 1.30.0 -> 1.31.0

Release Notes

getsentry/sentry-python (sentry-sdk)

v1.31.0

Compare Source

Various fixes & improvements
  • New: Add integration for clickhouse-driver (#​2167) by @​mimre25

    For more information, see the documentation for clickhouse-driver for more information.

    Usage:

      import sentry_sdk
      from sentry_sdk.integrations.clickhouse_driver import ClickhouseDriverIntegration
    
      sentry_sdk.init(
          dsn='___PUBLIC_DSN___',
          integrations=[
              ClickhouseDriverIntegration(),
          ],
      )
    
  • New: Add integration for asyncpg (#​2314) by @​mimre25

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

    Usage:

      import sentry_sdk
      from sentry_sdk.integrations.asyncpg import AsyncPGIntegration
    
      sentry_sdk.init(
          dsn='___PUBLIC_DSN___',
          integrations=[
              AsyncPGIntegration(),
          ],
      )
    
  • New: Allow to override propagate_traces in Celery per task (#​2331) by @​jan-auer

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

    Usage:

      import sentry_sdk
      from sentry_sdk.integrations.celery import CeleryIntegration
    

Enable global distributed traces (this is the default, just to be explicit.)

sentry_sdk.init(
    dsn='___PUBLIC_DSN___',
    integrations=[
        CeleryIntegration(propagate_traces=True),
    ],
)

...

This will NOT propagate the trace. (The task will start its own trace):

my_task_b.apply_async(
    args=("some_parameter", ),
    headers={"sentry-propagate-traces": False},
)

- Prevent Falcon integration from breaking ASGI apps (#​2359) by @​szokeasaurusrex
- Backpressure: only downsample a max of 10 times (#​2347) by @​sl0thentr0py
- Made NoOpSpan compatible to Transactions. (#​2364) by @​antonpirker
- Cleanup ASGI integration (#​2335) by @​antonpirker
- Pin anyio in tests (dep of httpx), because new major 4.0.0 breaks tests. (#​2336) by @​antonpirker
- Added link to backpressure section in docs. (#​2354) by @​antonpirker
- Add .vscode to .gitignore (#​2317) by @​shoaib-mohd
- Documenting Spans and Transactions (#​2358) by @​antonpirker
- Fix in profiler: do not call getcwd from module root (#​2329) by @​Zylphrex
- Fix deprecated version attribute (#​2338) by @​vagi8
- Fix transaction name in Starlette and FastAPI (#​2341) by @​antonpirker
- Fix tests using Postgres (#​2362) by @​antonpirker
- build(deps): Updated linting tooling (#​2350) by @​antonpirker
- build(deps): bump sphinx from 7.2.4 to 7.2.5 (#​2344) by @​dependabot
- build(deps): bump actions/checkout from 2 to 4 (#​2352) by @​dependabot
- build(deps): bump checkouts/data-schemas from `ebc77d3` to `68def1e` (#​2351) by @​dependabot

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 Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [sentry-sdk](https://github.com/getsentry/sentry-python) ([changelog](https://github.com/getsentry/sentry-python/blob/master/CHANGELOG.md)) | dependencies | minor | `1.30.0` -> `1.31.0` | --- ### Release Notes <details> <summary>getsentry/sentry-python (sentry-sdk)</summary> ### [`v1.31.0`](https://github.com/getsentry/sentry-python/blob/HEAD/CHANGELOG.md#1310) [Compare Source](https://github.com/getsentry/sentry-python/compare/1.30.0...1.31.0) ##### Various fixes & improvements - **New:** Add integration for `clickhouse-driver` ([#&#8203;2167](https://github.com/getsentry/sentry-python/issues/2167)) by [@&#8203;mimre25](https://github.com/mimre25) For more information, see the documentation for [clickhouse-driver](https://docs.sentry.io/platforms/python/configuration/integrations/clickhouse-driver) for more information. Usage: ```python import sentry_sdk from sentry_sdk.integrations.clickhouse_driver import ClickhouseDriverIntegration sentry_sdk.init( dsn='___PUBLIC_DSN___', integrations=[ ClickhouseDriverIntegration(), ], ) ``` - **New:** Add integration for `asyncpg` ([#&#8203;2314](https://github.com/getsentry/sentry-python/issues/2314)) by [@&#8203;mimre25](https://github.com/mimre25) For more information, see the documentation for [asyncpg](https://docs.sentry.io/platforms/python/configuration/integrations/asyncpg/) for more information. Usage: ```python import sentry_sdk from sentry_sdk.integrations.asyncpg import AsyncPGIntegration sentry_sdk.init( dsn='___PUBLIC_DSN___', integrations=[ AsyncPGIntegration(), ], ) ``` - **New:** Allow to override `propagate_traces` in `Celery` per task ([#&#8203;2331](https://github.com/getsentry/sentry-python/issues/2331)) by [@&#8203;jan-auer](https://github.com/jan-auer) For more information, see the documentation for [Celery](https://docs.sentry.io//platforms/python/guides/celery/#distributed-traces) for more information. Usage: ```python import sentry_sdk from sentry_sdk.integrations.celery import CeleryIntegration ``` ### Enable global distributed traces (this is the default, just to be explicit.) sentry_sdk.init( dsn='___PUBLIC_DSN___', integrations=[ CeleryIntegration(propagate_traces=True), ], ) ... ### This will NOT propagate the trace. (The task will start its own trace): my_task_b.apply_async( args=("some_parameter", ), headers={"sentry-propagate-traces": False}, ) ``` - Prevent Falcon integration from breaking ASGI apps (#&#8203;2359) by @&#8203;szokeasaurusrex - Backpressure: only downsample a max of 10 times (#&#8203;2347) by @&#8203;sl0thentr0py - Made NoOpSpan compatible to Transactions. (#&#8203;2364) by @&#8203;antonpirker - Cleanup ASGI integration (#&#8203;2335) by @&#8203;antonpirker - Pin anyio in tests (dep of httpx), because new major 4.0.0 breaks tests. (#&#8203;2336) by @&#8203;antonpirker - Added link to backpressure section in docs. (#&#8203;2354) by @&#8203;antonpirker - Add .vscode to .gitignore (#&#8203;2317) by @&#8203;shoaib-mohd - Documenting Spans and Transactions (#&#8203;2358) by @&#8203;antonpirker - Fix in profiler: do not call getcwd from module root (#&#8203;2329) by @&#8203;Zylphrex - Fix deprecated version attribute (#&#8203;2338) by @&#8203;vagi8 - Fix transaction name in Starlette and FastAPI (#&#8203;2341) by @&#8203;antonpirker - Fix tests using Postgres (#&#8203;2362) by @&#8203;antonpirker - build(deps): Updated linting tooling (#&#8203;2350) by @&#8203;antonpirker - build(deps): bump sphinx from 7.2.4 to 7.2.5 (#&#8203;2344) by @&#8203;dependabot - build(deps): bump actions/checkout from 2 to 4 (#&#8203;2352) by @&#8203;dependabot - build(deps): bump checkouts/data-schemas from `ebc77d3` to `68def1e` (#&#8203;2351) by @&#8203;dependabot ``` </details> --- ### 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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi45My4zIiwidXBkYXRlZEluVmVyIjoiMzYuOTMuMyIsInRhcmdldEJyYW5jaCI6Im1hc3RlciJ9-->
Xefir added 1 commit 2023-09-14 06:47:58 +00:00
divent / lint (push) Successful in 2m10s Details
divent / docker (push) Successful in 1m42s Details
divent / pypi (push) Has been skipped Details
5f10ac4f0c
Update dependency sentry-sdk to v1.31.0
Xefir merged commit 5a28538a77 into master 2023-09-14 07:34:12 +00:00
Xefir deleted branch renovate/sentry-sdk-1.x-lockfile 2023-09-14 07:34:12 +00:00
Sign in to join this conversation.
No reviewers
No Label
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: Xefir/Divent#156
No description provided.