Bump sentry-sdk[flask] from 1.40.6 to 1.41.0
Created by: dependabot[bot]
Bumps sentry-sdk[flask] from 1.40.6 to 1.41.0.
Release notes
Sourced from sentry-sdk[flask]'s releases.
1.41.0
Various fixes & improvements
Add recursive scrubbing to
EventScrubber(#2755) by@Cheapshot003By default, the
EventScrubberwill 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@sentrivanaIf the SDK is experiencing connection issues (connection resets, server closing connection without response, etc.) while sending events to Sentry, tweaking the default
urllib3socket 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
@sentrivanaAllow empty character in metric tags values (#2775) by
@vigliaReplace invalid tag values with an empty string instead of _ (#2773) by
@markushiAdd documentation comment to
scrub_list(#2769) by@szokeasaurusrexFixed regex to parse version in lambda package file (#2767) by
@antonpirkerxfail broken AWS Lambda tests for now (#2794) by
@sentrivanaRemoved print statements because it messes with the tests (#2789) by
@antonpirkerBump
types-protobuffrom 4.24.0.20240129 to 4.24.0.20240302 (#2782) by@dependabotBump
checkouts/data-schemasfromeb941c2toed078ed(#2781) by@dependabot
Changelog
Sourced from sentry-sdk[flask]'s changelog.
1.41.0
Various fixes & improvements
Add recursive scrubbing to
EventScrubber(#2755) by@Cheapshot003By default, the
EventScrubberwill 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@sentrivanaIf the SDK is experiencing connection issues (connection resets, server closing connection without response, etc.) while sending events to Sentry, tweaking the default
urllib3socket 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
@sentrivanaAllow empty character in metric tags values (#2775) by
@vigliaReplace invalid tag values with an empty string instead of _ (#2773) by
@markushiAdd documentation comment to
scrub_list(#2769) by@szokeasaurusrexFixed regex to parse version in lambda package file (#2767) by
@antonpirkerxfail broken AWS Lambda tests for now (#2794) by
@sentrivanaRemoved print statements because it messes with the tests (#2789) by
@antonpirkerBump
types-protobuffrom 4.24.0.20240129 to 4.24.0.20240302 (#2782) by@dependabot
... (truncated)
Commits
-
df9841eUpdate CHANGELOG.md -
fc70611release: 1.41.0 -
8f1a125ref(awslambda): xfail broken tests for now (#2794) -
d62dc90Removed print statements because it messes with the tests (#2789) -
b96f03dbuild(deps): bump types-protobuf from 4.24.0.20240129 to 4.24.0.20240302 (#2782) -
22dd50cbuild(deps): bump checkouts/data-schemas fromeb941c2toed078ed(#2781) -
c5785fbfeat(transport): Exposesocket_options(#2786) -
0901953Allow to configure merge target for releases (#2777) -
e07a128fix(docs): allow empty character in metric tags values (#2775) -
f874407fix(metrics): Replace invalid tag values with an empty string instead of _ (#... - Additional commits viewable in compare view
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 rebasewill rebase this PR -
@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it -
@dependabot mergewill merge this PR after your CI passes on it -
@dependabot squash and mergewill squash and merge this PR after your CI passes on it -
@dependabot cancel mergewill cancel a previously requested merge and block automerging -
@dependabot reopenwill reopen this PR if it is closed -
@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually -
@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency -
@dependabot ignore this major versionwill 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 versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)