Skip to content

Commit a03108f

Browse files
committed
feat(docs): Add gRPC note to migration guide
1 parent f2e7c54 commit a03108f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

MIGRATION_GUIDE.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Looking to upgrade from Sentry SDK 1.x to 2.x? Here's a comprehensive list of wh
2121
Your existing implementation:
2222
```python
2323
transaction = sentry_sdk.transaction(...)
24-
24+
2525
# later in the code execution:
2626

2727
with sentry_sdk.configure_scope() as scope:
@@ -31,7 +31,7 @@ Looking to upgrade from Sentry SDK 1.x to 2.x? Here's a comprehensive list of wh
3131
needs to be changed to this:
3232
```python
3333
transaction = sentry_sdk.transaction(...)
34-
34+
3535
# later in the code execution:
3636

3737
scope = sentry_sdk.Scope.get_current_scope()
@@ -56,6 +56,7 @@ Looking to upgrade from Sentry SDK 1.x to 2.x? Here's a comprehensive list of wh
5656
- Removed support for Celery 3.\*.
5757
- Removed support for Django 1.8, 1.9, 1.10.
5858
- Removed support for Flask 0.\*.
59+
- Removed support for gRPC < 1.39.
5960
- Removed `last_event_id()` top level API. The last event ID is still returned by `capture_event()`, `capture_exception()` and `capture_message()` but the top level API `sentry_sdk.last_event_id()` has been removed.
6061
- Removed support for sending events to the `/store` endpoint. Everything is now sent to the `/envelope` endpoint. If you're on SaaS you don't have to worry about this, but if you're running Sentry yourself you'll need version `20.6.0` or higher of self-hosted Sentry.
6162
- The deprecated `with_locals` configuration option was removed. Use `include_local_variables` instead. See https://docs.sentry.io/platforms/python/configuration/options/#include-local-variables.

0 commit comments

Comments
 (0)