-
-
Notifications
You must be signed in to change notification settings - Fork 4.5k
chore(deps): Upgrade Sentry Python SDK to 2.16.0 #78998
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): Upgrade Sentry Python SDK to 2.16.0 #78998
Conversation
This version comes with Brotli compression and HTTP2Transport which are enabled as part of this patch.
src/sentry/utils/sdk.py
Outdated
| sdk_options.setdefault("_experiments", {}).update( | ||
| transport_http2=True, | ||
| ) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just to minimize risk a bit -- should the upgrade and enabling this be two separate patches? (would also allow fast reverting one without the other if it goes poorly)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, makes sense. I was actually hoping to trigger this with a feature flag but not sure if that makes sense.
Will update this to not have http2 turned on.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@asottile-sentry reverted this part.
asottile-sentry
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This reverts commit 6b158e8.
|
PR reverted: cccaf96 |
This reverts commit 6b158e8. Co-authored-by: asottile-sentry <103459774+asottile-sentry@users.noreply.github.com>
|
reverting as this broke the development environment: |
This version comes with Brotli compression and HTTP2Transport which are enabled as part of this patch. We already have `httpcore>=1.*` and `Brotli` as part of our dependencies so no changes needed in this patch regarding getting these installed.
This reverts commit 6b158e8. Co-authored-by: asottile-sentry <103459774+asottile-sentry@users.noreply.github.com>

This version comes with Brotli compression and HTTP2Transport which are enabled as part of this patch.
We already have
httpcore>=1.*andBrotlias part of our dependencies so no changes needed in this patch regarding getting these installed.