Releases: getsentry/sentry-python
2.3.0
Various fixes & improvements
- NEW: Redis integration supports now Sentry Caches module. See https://docs.sentry.io/product/performance/caches/ (#3073) by @antonpirker
- NEW: Django integration supports now Sentry Caches module. See https://docs.sentry.io/product/performance/caches/ (#3009) by @antonpirker
- Fix
cohere
testsuite for new release ofcohere
(#3098) by @antonpirker - Fix ClickHouse integration where
_sentry_span
might be missing (#3096) by @sentrivana
2.2.1
Various fixes & improvements
- Add conditional check for delivery_info's existence (#3083) by @cmanallen
- Updated deps for latest langchain version (#3092) by @antonpirker
- Fixed grpcio extras to work as described in the docs (#3081) by @antonpirker
- Use pythons venv instead of virtualenv to create virtual envs (#3077) by @antonpirker
- Celery: Add comment about kwargs_headers (#3079) by @szokeasaurusrex
- Celery: Queues module producer implementation (#3079) by @szokeasaurusrex
- Fix N803 flake8 failures (#3082) by @szokeasaurusrex
2.2.0
New features
- Celery integration now sends additional data to Sentry to enable new features to guage the health of your queues
- Added a new integration for Cohere
- Reintroduced the
last_event_id
function, which had been removed in 2.0.0
Other fixes & improvements
- Add tags + data passing functionality to @ai_track (#3071) by @colin-sentry
- fix(tracing): Only propagate headers from spans within transactions (#3070) by @szokeasaurusrex
- ref(metrics): Improve type hints for set metrics (#3048) by @elramen
- ref(scope): Fix
get_client
typing (#3063) by @szokeasaurusrex - Auto-enable Anthropic integration + gate imports (#3054) by @colin-sentry
- Made MeasurementValue.unit NotRequired (#3051) by @antonpirker
2.1.1
- Fix trace propagation in Celery tasks started by Celery Beat. (#3047) by @antonpirker
2.1.0
-
fix(quart): Fix Quart integration (#3043) by @szokeasaurusrex
-
New integration: Langchain (#2911) by @colin-sentry
Usage: (Langchain is auto enabling, so you do not need to do anything special)
from langchain_openai import ChatOpenAI import sentry_sdk sentry_sdk.init( dsn="...", enable_tracing=True, traces_sample_rate=1.0, ) llm = ChatOpenAI(model="gpt-3.5-turbo-0125", temperature=0)
Check out the LangChain docs for details.
-
New integration: Anthropic (#2831) by @czyber
Usage: (add the AnthropicIntegration to your
sentry_sdk.init()
call)from anthropic import Anthropic import sentry_sdk sentry_sdk.init( dsn="...", enable_tracing=True, traces_sample_rate=1.0, integrations=[AnthropicIntegration()], ) client = Anthropic()
Check out the Anthropic docs for details.
-
New integration: Huggingface Hub (#3033) by @colin-sentry
Usage: (Huggingface Hub is auto enabling, so you do not need to do anything special)
import sentry_sdk from huggingface_hub import InferenceClient sentry_sdk.init( dsn="...", enable_tracing=True, traces_sample_rate=1.0, ) client = InferenceClient("some-model")
Check out the Huggingface docs for details. (comming soon!)
-
fix(huggingface): Reduce API cross-section for huggingface in test (#3042) by @colin-sentry
-
fix(django): Fix Django ASGI integration on Python 3.12 (#3027) by @bellini666
-
feat(perf): Add ability to put measurements directly on spans. (#2967) by @colin-sentry
-
fix(tests): Fix trytond tests (#3031) by @sentrivana
-
fix(tests): Update
pytest-asyncio
to fix CI (#3030) by @sentrivana -
fix(docs): Link to respective migration guides directly (#3020) by @sentrivana
-
docs(scope): Add docstring to
Scope.set_tags
(#2978) by @szokeasaurusrex -
test(scope): Fix typos in assert error message (#2978) by @szokeasaurusrex
-
feat(scope): New
set_tags
function (#2978) by @szokeasaurusrex -
test(scope): Add unit test for
Scope.set_tags
(#2978) by @szokeasaurusrex -
feat(scope): Add
set_tags
to top-level API (#2978) by @szokeasaurusrex -
test(scope): Add unit test for top-level API
set_tags
(#2978) by @szokeasaurusrex -
feat(tests): Parallelize tox (#3025) by @sentrivana
-
build(deps): Bump checkouts/data-schemas from
4aa14a7
to4381a97
(#3028) by @dependabot -
meta(license): Bump copyright year (#3029) by @szokeasaurusrex
2.0.1
Various fixes & improvements
- Fix: Do not use convenience decorator (#3022) by @sentrivana
- Refactoring propagation context (#2970) by @antonpirker
- Use
pid
for test database name in Django tests (#2998) by @antonpirker - Remove outdated RC mention in docs (#3018) by @sentrivana
- Delete inaccurate comment from docs (#3002) by @szokeasaurusrex
- Add Lambda function that deletes test Lambda functions (#2960) by @antonpirker
- Correct discarded transaction debug message (#3002) by @szokeasaurusrex
- Add tests for discarded transaction debug messages (#3002) by @szokeasaurusrex
- Fix comment typo in metrics (#2992) by @szokeasaurusrex
- build(deps): bump actions/checkout from 4.1.1 to 4.1.4 (#3011) by @dependabot
- build(deps): bump checkouts/data-schemas from
1e17eb5
to4aa14a7
(#2997) by @dependabot
2.0.0
This is the first major update in a long time!
We dropped support for some ancient languages and frameworks (Yes, Python 2.7 is no longer supported). Additionally we refactored a big part of the foundation of the SDK (how data inside the SDK is handled).
We hope you like it!
For a shorter version of what you need to do, to upgrade to Sentry SDK 2.0 see: https://docs.sentry.io/platforms/python/migration/1.x-to-2.x
New Features
- Additional integrations will now be activated automatically if the SDK detects the respective package is installed: Ariadne, ARQ, asyncpg, Chalice, clickhouse-driver, GQL, Graphene, huey, Loguru, PyMongo, Quart, Starlite, Strawberry.
- Added new API for custom instrumentation:
new_scope
,isolation_scope
. See the Deprecated section to see how they map to the existing APIs.
Changed
(These changes are all backwards-incompatible. Breaking Change (if you are just skimming for that phrase))
-
The Pyramid integration will not capture errors that might happen in
authenticated_userid()
in a customAuthenticationPolicy
class. -
The method
need_code_loation
of theMetricsAggregator
was renamed toneed_code_location
. -
The
BackgroundWorker
thread used to process events was renamed fromraven-sentry.BackgroundWorker
tosentry-sdk.BackgroundWorker
. -
The
reraise
function was moved fromsentry_sdk._compat
tosentry_sdk.utils
. -
The
_ScopeManager
was moved fromsentry_sdk.hub
tosentry_sdk.scope
. -
Moved the contents of
tracing_utils_py3.py
totracing_utils.py
. Thestart_child_span_decorator
is now insentry_sdk.tracing_utils
. -
The actual implementation of
get_current_span
was moved tosentry_sdk.tracing_utils
.sentry_sdk.get_current_span
is still accessible as part of the top-level API. -
sentry_sdk.tracing_utils.add_query_source()
: Removed thehub
parameter. It is not necessary anymore. -
sentry_sdk.tracing_utils.record_sql_queries()
: Removed thehub
parameter. It is not necessary anymore. -
sentry_sdk.tracing_utils.get_current_span()
does now take ascope
instead of ahub
as parameter. -
sentry_sdk.tracing_utils.should_propagate_trace()
now takes aClient
instead of aHub
as first parameter. -
sentry_sdk.utils.is_sentry_url()
now takes aClient
instead of aHub
as first parameter. -
sentry_sdk.utils._get_contextvars
does not return a tuple with three values, but a tuple with two values. Thecopy_context
was removed. -
If you create a transaction manually and later mutate the transaction in a
configure_scope
block this does not work anymore. Here is a recipe on how to change your code to make it work:
Your existing implementation:transaction = sentry_sdk.transaction(...) # later in the code execution: with sentry_sdk.configure_scope() as scope: scope.set_transaction_name("new-transaction-name")
needs to be changed to this:
transaction = sentry_sdk.transaction(...) # later in the code execution: scope = sentry_sdk.Scope.get_current_scope() scope.set_transaction_name("new-transaction-name")
-
The classes listed in the table below are now abstract base classes. Therefore, they can no longer be instantiated. Subclasses can only be instantiated if they implement all of the abstract methods.
Show table
Class Abstract methods sentry_sdk.integrations.Integration
setup_once
sentry_sdk.metrics.Metric
add
,serialize_value
, andweight
sentry_sdk.profiler.Scheduler
setup
andteardown
sentry_sdk.transport.Transport
capture_envelope
Removed
(These changes are all backwards-incompatible. Breaking Change (if you are just skimming for that phrase))
- Removed support for Python 2 and Python 3.5. The SDK now requires at least Python 3.6.
- Removed support for Celery 3.*.
- Removed support for Django 1.8, 1.9, 1.10.
- Removed support for Flask 0.*.
- Removed support for gRPC < 1.39.
- Removed support for Tornado < 6.
- Removed
last_event_id()
top level API. The last event ID is still returned bycapture_event()
,capture_exception()
andcapture_message()
but the top level APIsentry_sdk.last_event_id()
has been removed. - 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 version20.6.0
or higher of self-hosted Sentry. - The deprecated
with_locals
configuration option was removed. Useinclude_local_variables
instead. See https://docs.sentry.io/platforms/python/configuration/options/#include-local-variables. - The deprecated
request_bodies
configuration option was removed. Usemax_request_body_size
. See https://docs.sentry.io/platforms/python/configuration/options/#max-request-body-size. - Removed support for
user.segment
. It was also removed from the trace header as well as from the dynamic sampling context. - Removed support for the
install
method for custom integrations. Please usesetup_once
instead. - Removed
sentry_sdk.tracing.Span.new_span
. Usesentry_sdk.tracing.Span.start_child
instead. - Removed
sentry_sdk.tracing.Transaction.new_span
. Usesentry_sdk.tracing.Transaction.start_child
instead. - Removed support for creating transactions via
sentry_sdk.tracing.Span(transaction=...)
. To create a transaction, please usesentry_sdk.tracing.Transaction(name=...)
. - Removed
sentry_sdk.utils.Auth.store_api_url
. sentry_sdk.utils.Auth.get_api_url
's now accepts asentry_sdk.consts.EndpointType
enum instead of a string as its only parameter. We recommend omitting this argument when calling the function, since the parameter's default value is the only possiblesentry_sdk.consts.EndpointType
value. The parameter exists for future compatibility.- Removed
tracing_utils_py2.py
. Thestart_child_span_decorator
is now insentry_sdk.tracing_utils
. - Removed the
sentry_sdk.profiler.Scheduler.stop_profiling
method. Any calls to this method can simply be removed, since this was a no-op method.
Deprecated
-
Using the
Hub
directly as well as using hub-based APIs has been deprecated. Where available, use the top-level API instead; otherwise use the scope API or the client API.Before:
with hub.start_span(...): # do something
After:
import sentry_sdk with sentry_sdk.start_span(...): # do something
-
Hub cloning is deprecated.
Before:
with Hub(Hub.current) as hub: # do something with the cloned hub
After:
import sentry_sdk with sentry_sdk.isolation_scope() as scope: # do something with the forked scope
-
configure_scope
is deprecated. Use the new isolation scope directly viaScope.get_isolation_scope()
instead.Before:
with configure_scope() as scope: # do something with `scope`
After:
from sentry_sdk.scope import Scope scope = Scope.get_isolation_scope() # do something with `scope`
-
push_scope
is deprecated. Use the newnew_scope
context manager to fork the necessary scopes.Before:
with push_scope() as scope: # do something with `scope`
After:
import sentry_sdk with sentry_sdk.new_scope() as scope: # do something with `scope`
-
Accessing the client via the hub has been deprecated. Use the top-level
sentry_sdk.get_client()
to get the current client. -
profiler_mode
andprofiles_sample_rate
have been deprecated as_experiments
options. Use them as top level options instead:sentry_sdk.init( ..., profiler_mode="thread", profiles_sample_rate=1.0, )
-
Deprecated
sentry_sdk.transport.Transport.capture_event
. Please usesentry_sdk.transport.Transport.capture_envelope
, instead. -
Passing a function to
sentry_sdk.init
'stransport
keyword argument has been deprecated. If you wish to provide a custom transport, please pass asentry_sdk.transport.Transport
instance or a subclass. -
The parameter
propagate_hub
inThreadingIntegration()
was deprecated and renamed topropagate_scope
.
2.0.0rc6
Various fixes & improvements
- Restore original behavior by always creating a span (#3005) by @antonpirker
- Merge baggage headers (incoming and new created ones) (#3001) by @antonpirker
- Fix duplicate baggage headers in Celery integration introduced in SDK 2.0 (#2993) by @antonpirker
- Make it work with old and new newrelic versions (#2999) by @antonpirker
- docs: Update migration guide wording (#2987) by @colin-sentry
- docs: Tweak migration guide (#2979) by @colin-sentry
- Small updates to migration guide (#2911) by @colin-sentry
- Update CHANGELOG.md (51a906c) by @sentrivana
- release: 1.45.0 (7570e39) by @getsentry-bot
2.0.0rc5
Update CHANGELOG.md
1.45.0
This is the final 1.x release for the forseeable future. Development will continue on the 2.x release line. The first 2.x version will be available in the next few weeks.
Various fixes & improvements
-
Allow to upsert monitors (#2929) by @sentrivana
It's now possible to provide
monitor_config
to themonitor
decorator/context manager directly:from sentry_sdk.crons import monitor # All keys except `schedule` are optional monitor_config = { "schedule": {"type": "crontab", "value": "0 0 * * *"}, "timezone": "Europe/Vienna", "checkin_margin": 10, "max_runtime": 10, "failure_issue_threshold": 5, "recovery_threshold": 5, } @monitor(monitor_slug='<monitor-slug>', monitor_config=monitor_config) def tell_the_world(): print('My scheduled task...')
Check out the cron docs for details.
-
Add Django
signals_denylist
to filter signals that are attached to bysignals_spans
(#2758) by @lieryanIf you want to exclude some Django signals from performance tracking, you can use the new
signals_denylist
Django option:import django.db.models.signals import sentry_sdk sentry_sdk.init( ... integrations=[ DjangoIntegration( ... signals_denylist=[ django.db.models.signals.pre_init, django.db.models.signals.post_init, ], ), ], )
-
increment
for metrics (#2588) by @mitsuhikoincrement
andincr
are equivalent, so you can pick whichever you like more. -
Add
value
,unit
tobefore_emit_metric
(#2958) by @sentrivanaIf you add a custom
before_emit_metric
, it'll now accept 4 arguments (thekey
,value
,unit
andtags
) instead of justkey
andtags
.def before_emit(key, value, unit, tags): if key == "removed-metric": return False tags["extra"] = "foo" del tags["release"] return True sentry_sdk.init( ... _experiments={ "before_emit_metric": before_emit, } )
-
Remove experimental metric summary options (#2957) by @sentrivana
The
_experiments
optionsmetrics_summary_sample_rate
andshould_summarize_metric
have been removed. -
New normalization rules for metric keys, names, units, tags (#2946) by @sentrivana
-
Change
data_category
fromstatsd
tometric_bucket
(#2954) by @cleptric -
Accessing
__mro__
might throw aValueError
(#2952) by @sentrivana -
Suppress prompt spawned by subprocess when using
pythonw
(#2936) by @collinbanko -
Do not send "quiet" Sanic exceptions to Sentry (#2821) by @hamedsh
-
Fix type hints for
monitor
decorator (#2944) by @szokeasaurusrex -
Remove deprecated
typing
imports in crons (#2945) by @szokeasaurusrex -
Make
monitor_config
aTypedDict
(#2931) by @sentrivana -
Add
devenv-requirements.txt
and update env setup instructions (#2761) by @arr-ee -
Bump
types-protobuf
from4.24.0.20240311
to4.24.0.20240408
(#2941) by @dependabot -
Disable Codecov check run annotations (#2537) by @eliatcodecov