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-dev): bump sentry-sdk from 1.40.6 to 1.41.0 #1935

Merged
merged 2 commits into from Mar 13, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 7, 2024

Bumps sentry-sdk from 1.40.6 to 1.41.0.

Release notes

Sourced from sentry-sdk's releases.

1.41.0

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:

    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),
    ],
    )

  • Allow to configure merge target for releases (#2777) by @​sentrivana

  • Allow empty character in metric tags values (#2775) by @​viglia

  • Replace invalid tag values with an empty string instead of _ (#2773) by @​markushi

  • Add documentation comment to scrub_list (#2769) by @​szokeasaurusrex

  • Fixed regex to parse version in lambda package file (#2767) by @​antonpirker

  • xfail broken AWS Lambda tests for now (#2794) by @​sentrivana

  • Removed print statements because it messes with the tests (#2789) by @​antonpirker

  • Bump types-protobuf from 4.24.0.20240129 to 4.24.0.20240302 (#2782) by @​dependabot

  • Bump checkouts/data-schemas from eb941c2 to ed078ed (#2781) by @​dependabot

Changelog

Sourced from sentry-sdk's changelog.

1.41.0

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:

    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),
    ],
    )

  • Allow to configure merge target for releases (#2777) by @​sentrivana

  • Allow empty character in metric tags values (#2775) by @​viglia

  • Replace invalid tag values with an empty string instead of _ (#2773) by @​markushi

  • Add documentation comment to scrub_list (#2769) by @​szokeasaurusrex

  • Fixed regex to parse version in lambda package file (#2767) by @​antonpirker

  • xfail broken AWS Lambda tests for now (#2794) by @​sentrivana

  • Removed print statements because it messes with the tests (#2789) by @​antonpirker

  • Bump types-protobuf from 4.24.0.20240129 to 4.24.0.20240302 (#2782) by @​dependabot

... (truncated)

Commits
  • df9841e Update CHANGELOG.md
  • fc70611 release: 1.41.0
  • 8f1a125 ref(awslambda): xfail broken tests for now (#2794)
  • d62dc90 Removed print statements because it messes with the tests (#2789)
  • b96f03d build(deps): bump types-protobuf from 4.24.0.20240129 to 4.24.0.20240302 (#2782)
  • 22dd50c build(deps): bump checkouts/data-schemas from eb941c2 to ed078ed (#2781)
  • c5785fb feat(transport): Expose socket_options (#2786)
  • 0901953 Allow to configure merge target for releases (#2777)
  • e07a128 fix(docs): allow empty character in metric tags values (#2775)
  • f874407 fix(metrics): Replace invalid tag values with an empty string instead of _ (#...
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot requested a review from a team as a code owner March 7, 2024 16:10
@dependabot dependabot bot added the dependencies [auto] Pull requests that update 3rd party software libraries and requirements label Mar 7, 2024
Copy link

github-actions bot commented Mar 7, 2024

Coverage report

This PR does not seem to contain any modification to coverable code.

thekaveman
thekaveman previously approved these changes Mar 7, 2024
@thekaveman thekaveman self-assigned this Mar 7, 2024
Bumps [sentry-sdk](https://github.com/getsentry/sentry-python) from 1.40.6 to 1.41.0.
- [Release notes](https://github.com/getsentry/sentry-python/releases)
- [Changelog](https://github.com/getsentry/sentry-python/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-python@1.40.6...1.41.0)

---
updated-dependencies:
- dependency-name: sentry-sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/pip/sentry-sdk-1.41.0 branch from ce22bcb to 5d7ef46 Compare March 8, 2024 20:37
@thekaveman thekaveman merged commit 34f03d4 into dev Mar 13, 2024
10 checks passed
@thekaveman thekaveman deleted the dependabot/pip/sentry-sdk-1.41.0 branch March 13, 2024 16:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies [auto] Pull requests that update 3rd party software libraries and requirements
Projects
Status: Done
Development

Successfully merging this pull request may close these issues.

None yet

1 participant