chore(api): update all dependencies (develop) (major)
This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
cryptography (changelog) | dependencies | major |
==41.0.7 -> ==44.0.0
|
django (changelog) | dependencies | major |
4.2.18 -> 5.1.5
|
django-allauth (source, changelog) | dependencies | major |
0.63.6 -> 65.3.1
|
django-auth-ldap (changelog) | dependencies | major |
==4.8.0 -> ==5.1.0
|
django-cleanup (changelog) | dependencies | major |
==8.1.0 -> ==9.0.0
|
django-debug-toolbar (changelog) | dev | major |
==4.4.6 -> ==5.0.1
|
django-oauth-toolkit | dependencies | major |
2.4.0 -> 3.0.1
|
faker (changelog) | dev | major |
==23.3.0 -> ==33.3.1
|
flake8 (changelog) | dev | major |
==3.9.2 -> ==7.1.1
|
gunicorn (changelog) | dependencies | major |
==21.2.0 -> ==23.0.0
|
pycountry (changelog) | dependencies | major |
23.12.11 -> 24.6.1
|
pytest-cov (changelog) | dev | major |
==4.1.0 -> ==6.0.0
|
sentry-sdk (changelog) | dependencies | major |
==1.45.1 -> ==2.20.0
|
troi (changelog) | dependencies | major |
==2024.12.4.0 -> ==2025.1.10.0
|
watchdog (changelog) | dependencies | major |
==4.0.2 -> ==6.0.0
|
Release Notes
pyca/cryptography (cryptography)
v44.0.0
v43.0.3
v43.0.1
v43.0.0
v42.0.8
v42.0.7
v42.0.6
v42.0.5
v42.0.4
v42.0.3
v42.0.2
v42.0.1
v42.0.0
django/django (django)
v5.1.5
v5.1.4
v5.1.3
v5.1.2
v5.1.1
v5.1
v5.0.11
v5.0.10
v5.0.9
v5.0.8
v5.0.7
v5.0.6
v5.0.5
v5.0.4
v5.0.3
v5.0.2
v5.0.1
v5.0
allauth/django-allauth (django-allauth)
v65.3.1
v65.3.0
v65.2.0
v65.1.0
v65.0.2
v65.0.1
v65.0.0
v64.2.1
v64.2.0
v64.1.0
v64.0.0
django-auth-ldap/django-auth-ldap (django-auth-ldap)
v5.1.0
What's Changed
- Allow importing the backend without loading apps by @francoisfreitag in https://github.com/django-auth-ldap/django-auth-ldap/pull/382 (Closes #380)
- Drop support for EOL Python 3.8 by @francoisfreitag in https://github.com/django-auth-ldap/django-auth-ldap/pull/383
Full Changelog: https://github.com/django-auth-ldap/django-auth-ldap/compare/5.0.0...5.1.0
v5.0.0
Breaking changes
An LDAPError
during an LDAP search operation would cause the library to assume an empty result set.
When mirroring groups, only a portion of a user groups would be mirrored. Allowing them to proceed with authentication may then break application access controls, as membership to a group (imagine an exclude group) would be missing.
The library now systematically sends the ldap_error
django signal. If an LDAPError
occurs during an operation, the operation is aborted. In particular, when mirroring groups (LDAPUser._mirror_groups
), an AuthenticationFailed
might now be raised.
See https://github.com/django-auth-ldap/django-auth-ldap/issues/378 for details.
What else changed
- Drop support for django 3.2 by @francoisfreitag in https://github.com/django-auth-ldap/django-auth-ldap/pull/371
- Add support for Django 5.1 by @francoisfreitag in https://github.com/django-auth-ldap/django-auth-ldap/pull/373
- Restore testing for Python 3.8 and 3.9 by @francoisfreitag in https://github.com/django-auth-ldap/django-auth-ldap/pull/375
- Test support for Python 3.13 by @francoisfreitag in https://github.com/django-auth-ldap/django-auth-ldap/pull/374
Full Changelog: https://github.com/django-auth-ldap/django-auth-ldap/compare/4.8.0...5.0.0
django-commons/django-debug-toolbar (django-debug-toolbar)
v5.0.1
What's Changed
There were no functional changes in this version.
MRs
- Update release workflows to latest trusted publisher GHA. by @tim-schilling in https://github.com/django-commons/django-debug-toolbar/pull/2054
Full Changelog: https://github.com/django-commons/django-debug-toolbar/compare/5.0.0...5.0.1
v5.0.0
What's Changed
Please note that Django Debug Toolbar has now moved into the Django Commons organization.
Changelog
- Added Python 3.13 to the CI matrix.
- Removed support for Python 3.8 as it has reached end of life.
- Converted to Django Commons PyPI release process.
- Fixed a crash which occurred when using non-
str
static file values. - Documented experimental async support.
- Improved troubleshooting doc for incorrect mime types for .js static files
- Support async applications and ASGI from
Google Summer of Code Project 2024 <https://summerofcode.withgoogle.com/programs/2024/projects/iXVvyGYp>
__. - Added Django 5.1 to the CI matrix.
- Added support for the
LoginRequiredMiddleware
introduced in Django 5.1. - Support select and explain buttons for
UNION
queries on PostgreSQL. - Fixed internal toolbar requests being instrumented if the Django setting
FORCE_SCRIPT_NAME
was set. - Increase opacity of show Debug Toolbar handle to improve accessibility.
- Changed the
RedirectsPanel
to be async compatible. - Increased the contrast of text with dark mode enabled.
- Add translations for Bulgarian and Korean.
- Update translations for several languages.
- Include new translatable strings for translation.
- Fixed a crash which happened in the fallback case when session keys cannot be sorted.
MRs
- Async compatible debug-toolbar middleware by @salty-ivy in https://github.com/django-commons/django-debug-toolbar/pull/1938
- Add async tests by @salomvary in https://github.com/django-commons/django-debug-toolbar/pull/1835
- Update installation.rst by @Dr-Bernard in https://github.com/django-commons/django-debug-toolbar/pull/1967
- Make toolbar compatible with
FORCE_SCRIPT_NAME
by @dmartin in https://github.com/django-commons/django-debug-toolbar/pull/1970 - Support select and explain for UNION queries by @friedelwolff in https://github.com/django-commons/django-debug-toolbar/pull/1972
- Override
DEBUG=True
in async middleware compatibility tests by @salty-ivy in https://github.com/django-commons/django-debug-toolbar/pull/1977 - Quick hack for including csp_nonces from requests into script tags by @karolyi in https://github.com/django-commons/django-debug-toolbar/pull/1975
- Slightly increase opacity of debug toolbar button by @jribbens in https://github.com/django-commons/django-debug-toolbar/pull/1982
- Async compatible redirect panel by @salty-ivy in https://github.com/django-commons/django-debug-toolbar/pull/1976
-
🔧 update translation for Persian language by @elias-ebrahimpour in https://github.com/django-commons/django-debug-toolbar/pull/1873 - Add a paragraph describing our stance on Python typing by @matthiask in https://github.com/django-commons/django-debug-toolbar/pull/1979
- Dark mode text needs higher contrast by @myou1985 in https://github.com/django-commons/django-debug-toolbar/pull/1987
- Switch to Django Commons code of conduct by @tim-schilling in https://github.com/django-commons/django-debug-toolbar/pull/1978
- Update translations by @tim-schilling in https://github.com/django-commons/django-debug-toolbar/pull/1984
- Make Panels non async by default by @salty-ivy in https://github.com/django-commons/django-debug-toolbar/pull/1990
- Async compatible
StaticFilesPanel
by @salty-ivy in https://github.com/django-commons/django-debug-toolbar/pull/1983 - Refs #1668: Fixed the unsortable session keys fallback by @matthiask in https://github.com/django-commons/django-debug-toolbar/pull/1994
- Add Django 5.1 to the CI matrix by @matthiask in https://github.com/django-commons/django-debug-toolbar/pull/1995
- Use Heading-4 for MR template for screen-readers. by @tim-schilling in https://github.com/django-commons/django-debug-toolbar/pull/1999
- Async compatible
HistoryPanel
by @salty-ivy in https://github.com/django-commons/django-debug-toolbar/pull/1991 - Async compatible
SQLPanel
by @salty-ivy in https://github.com/django-commons/django-debug-toolbar/pull/1993 - Correct "middleware" typos by @korverdev in https://github.com/django-commons/django-debug-toolbar/pull/2003
- add support for LoginRequiredMiddleware with login_not_required decor… by @dulmandakh in https://github.com/django-commons/django-debug-toolbar/pull/2005
- Async integration tests by @salty-ivy in https://github.com/django-commons/django-debug-toolbar/pull/2001
- Modernize Python type hints and string formatting by @cclauss in https://github.com/django-commons/django-debug-toolbar/pull/2012
- Adding in support for Python 3.13 by @abeed-avayu in https://github.com/django-commons/django-debug-toolbar/pull/2014
- Fix #2011: Test the divisor, not the dividend for zero by @matthiask in https://github.com/django-commons/django-debug-toolbar/pull/2015
- Update Installation warning doc by @salty-ivy in https://github.com/django-commons/django-debug-toolbar/pull/2019
- Convert to Django Commons pypi-github release process by @tim-schilling in https://github.com/django-commons/django-debug-toolbar/pull/2017
- The static files panel shouldn't choke on unexpected data types by @matthiask in https://github.com/django-commons/django-debug-toolbar/pull/2021
- Update references to point to django-commons repo by @robhudson in https://github.com/django-commons/django-debug-toolbar/pull/2022
- Update pyupgrade's target version to Python 3.9 by @ulgens in https://github.com/django-commons/django-debug-toolbar/pull/2024
- I added more explanations to the example/readme file. by @jong-seoung in https://github.com/django-commons/django-debug-toolbar/pull/2027
- Adopt a basic security policy by @tim-schilling in https://github.com/django-commons/django-debug-toolbar/pull/2040
- Fix whitespace view in code by @thesayfulla in https://github.com/django-commons/django-debug-toolbar/pull/2043
- Documented experimental async support. by @tim-schilling in https://github.com/django-commons/django-debug-toolbar/pull/2045
- Updated Troubleshooting documentation: simpler mimetype workaround for .js file by @blep in https://github.com/django-commons/django-debug-toolbar/pull/2047
Google Summer of Code - Async project
This release contains the changes for async compatibility for the majority of panels. This is the result of the Google Summer of Code project by @salty-ivy. A massive thank you
New Contributors
- @Dr-Bernard made their first contribution in https://github.com/django-commons/django-debug-toolbar/pull/1967
- @dmartin made their first contribution in https://github.com/django-commons/django-debug-toolbar/pull/1970
- @friedelwolff made their first contribution in https://github.com/django-commons/django-debug-toolbar/pull/1972
- @karolyi made their first contribution in https://github.com/django-commons/django-debug-toolbar/pull/1975
- @jribbens made their first contribution in https://github.com/django-commons/django-debug-toolbar/pull/1982
- @elias-ebrahimpour made their first contribution in https://github.com/django-commons/django-debug-toolbar/pull/1873
- @myou1985 made their first contribution in https://github.com/django-commons/django-debug-toolbar/pull/1987
- @korverdev made their first contribution in https://github.com/django-commons/django-debug-toolbar/pull/2003
- @dulmandakh made their first contribution in https://github.com/django-commons/django-debug-toolbar/pull/2005
- @abeed-avayu made their first contribution in https://github.com/django-commons/django-debug-toolbar/pull/2014
- @robhudson made their first contribution in https://github.com/django-commons/django-debug-toolbar/pull/2022
- @ulgens made their first contribution in https://github.com/django-commons/django-debug-toolbar/pull/2024
- @jong-seoung made their first contribution in https://github.com/django-commons/django-debug-toolbar/pull/2027
- @thesayfulla made their first contribution in https://github.com/django-commons/django-debug-toolbar/pull/2043
- @blep made their first contribution in https://github.com/django-commons/django-debug-toolbar/pull/2047
Full Changelog: https://github.com/django-commons/django-debug-toolbar/compare/4.4.6...5.0.0
jazzband/django-oauth-toolkit (django-oauth-toolkit)
v3.0.1
Fixed
- #1491 Fix migration error when there are pre-existing Access Tokens.
v3.0.0
WARNING - POTENTIAL BREAKING CHANGES
- Changes to the
AbstractAccessToken
model require doing amanage.py migrate
after upgrading. - If you use swappable models you will need to make sure your custom models are also updated (usually
manage.py makemigrations
). - Old Django versions below 4.2 are no longer supported.
- A few deprecations warned about in 2.4.0 (#1345) have been removed. See below.
Added
- #1366 Add Docker containerized apps for testing IDP and RP.
-
#1454 Added compatibility with
LoginRequiredMiddleware
introduced in Django 5.1.
Changed
- Many documentation and project internals improvements.
-
#1446 Use generic models
pk
instead ofid
. This enables, for example, custom swapped models to have a different primary key field. -
#1447 Update token to TextField from CharField. Removing the 255 character limit enables supporting JWT tokens with additional claims.
This adds a SHA-256
token_checksum
field that is used to validate tokens. - #1450 Transactions wrapping writes of the Tokens now rely on Django's database routers to determine the correct database to use instead of assuming that 'default' is the correct one.
- #1455 Changed minimum supported Django version to >=4.2.
Removed
-
#1425 Remove deprecated
RedirectURIValidator
,WildcardSet
per #1345;validate_logout_request
per #1274
Fixed
- #1444, #1476 Fix several 500 errors to instead raise appropriate errors.
-
#1469 Fix
ui_locales
request parameter triggersAttributeError
under certain circumstances
Security
-
#1452 Add a new setting
REFRESH_TOKEN_REUSE_PROTECTION
. In combination withROTATE_REFRESH_TOKEN
, this prevents refresh tokens from being used more than once. See more at OAuth 2.0 Security Best Current Practice - #1481 Bump oauthlib version required to 3.2.2 and above to address CVE-2022-36087.
joke2k/faker (faker)
v33.3.1
- Fix
nl_BE
Bank Provider (BBAN, IBAN, SWIFT). Thanks @AliYmn.
v33.3.0
- Add support for Zulu (
zu_ZA
) address provider and corresponding tests. Thanks @AliYmn.
v33.2.0
- Add currency provider for
uk_UA
. Thanks @SaulTigh.
v33.1.3
- Fix type annotation on Python 3.8.
v33.1.2
- Fix
ru_RU
passport provider. Thanks @denisSurkov.
v33.1.1
- Fix address number output issue in
ko_KR
address provider. Thanks @semi-yu.
v33.1.0
- Add support for Python 3.13. Thanks @edgarrmondragon.
v33.0.0
- Revert "Make pytest fixture session-scoped".
v32.1.0
- Fix
ko_KR
road address. Thanks @semi-yu.
v32.0.0
- Make pytest fixture session-scoped. Thanks @acolombier.
v31.0.0
- Remove
Collection[str]
type fromElementTypes
. Thanks @tvuotila.
v30.10.0
- Add jobs for locale
de_AT
; added methodsjob_female
andjob_male
. Thanks @ChristinaRau.
v30.9.0
- Added Providers for
uz_UZ
language. Thanks @laziest-coder.
v30.8.2
- Revert "Add decorator to optionally format dates as string.".
v30.8.1
- Fix
month_in_guj
.
v30.8.0
- Update city names for
uk_UA
. Thanks @lexxai.
v30.7.0
- Add person provider for
gu_IN
locale. Thanks @debjeetsingha. - Add
datetime
provider forgu_IN
locale. Thanks @wh0th3h3llam1.
v30.6.0
- Add passport provider for
ru_RU
locale. Thanks @Abdujabbar.
v30.5.0
- Add Providers for
ka_GE
locale. Thanks @onesch.
v30.4.0
- Add separate male/female names along with prefix/suffix for
hi_IN
locale. Thanks @wh0th3h3llam1.
v30.3.0
- Add decorator to optionally format dates as string. Thanks @browniebroke.
v30.2.0
- Cache Factory._find_provider_class module look-ups. Thanks @huonw.
v30.1.0
- Add PIN Code range and union territories in
en_IN
address provider. Thanks @wh0th3h3llam1.
v30.0.0
- Force the slug always be generated with ASCII characters. Thanks @Pandede.
v29.0.0
- Fix
pydecimal
distribution when called with a range across0
. Thanks @AlexLitvino.
v28.4.1
- Fix issue where Faker does not properly convert min/max float values to
Decimal
. Thanks @bdjellabaldebaran.
v28.4.0
- Add
it_IT
lorem provider. Thanks @gianni-di-noia.
v28.3.0
- Fix male forms of female surnames in
uk_UA
.Thanks @AlexLitvino.
v28.2.0
- Add
es_ES
isbn provider. Thanks @mondeja.
v28.1.0
- Fix Incorrect City Spelling in
uk_UA
locale. Thanks @ch4zzy.
v28.0.0
- Fix
pydecimal
handling ofpositive
keyword. Thanks @tahzeer.
v27.4.0
- Add person provider for
pk_PK
locale. Thanks @c2-tlhah
v27.3.0
- Add providers for
vi_VN
locale. Thanks @ntd1683.
v27.2.0
- Split names in
en_IN
person provider. Thanks @wh0th3h3llam1.
v27.1.0
- Add address providoer for
en_MS
local. Thanks @carlosfunk.
v27.0.0
- Re-introduce
part_of_speech
argument towords()
method.
v26.3.0
- Extend
ro_RO
company localization with prefixes. Thanks @DDSNA.
v26.2.0
- Add Swahili (
sw
) provider for generating Swahili names. Thanks @5uru.
v26.1.0
- Add more entries to
sk_SK
Geo provider. Thanks @george0st.
v26.0.0
- Fix upper limit of nb_elements. Thanks @mileswatsonbjss.
v25.9.2
- Remove duplicate entry in currency provider.
v25.9.1
- Change
pydecimal
type hint formin_value
,max_value
to allowint
s. Thanks @parsariyahi.
v25.9.0
- Add support for Nigerian Yoruba names and surnames (
yo_NG
). Thanks @5uru.
v25.8.0
- Add handshake emoji with different color variations to emoji provider list. Thanks @tamkc.
v25.7.0
- Add missing translation for countries in
pt-BR
. Thanks @LeonardoFurtado.
v25.6.0
- Fix data in geo for
pl_PL
. Thanks @george0st, @mgorny.
v25.5.0
- Fix data in geo for
pl_PL
. Thanks @george0st.
v25.4.0
- Add landmarks in
geo
forpl_PL
. Thanks @george0st.
v25.3.0
- Add more iOS versions to
user_agent
. Thanks @george0st.
v25.2.0
- Update VAT generation in
nl_BE
to align with correct Belgian format. Thanks @JorisSpruyt.
v25.1.0
- Add geo for
pl_PL
. Thanks @george0st. - Add geo for
sk_SK
. Thanks @george0st.
v25.0.1
- Add type stub file to
setup.py
.
v25.0.0
- Drop support for Python 3.7. Thanks @kloczek.
v24.14.1
- Include type stubs in release.
v24.14.0
- Add job provider for
cs_CZ
. Thanks @george0st.
v24.13.0
- Add geo provider for
sk_SK
. Thanks @george0st. - Clean up data in
sk_SK
job provider. Thanks @george0st.
v24.12.0
- Remove offensive word from
pl_PL
lorem provider. Thanks @Rey092.
v24.11.0
- Tune
cs_CZ
phone number validation. Thanks @george0st.
v24.10.0
- Update list of
first_name_*
andlast_name
inpt_BR
PersonProvider
. Thanks @dclobato.
v24.9.0
- Update
uk_UA
phone provider. Thanks @lozik4.
v24.8.0
- Fix wrong pricetag format in
ru_RU
locale. Thanks @Pandede.
v24.7.1
- Fix previous release issue.
v24.7.0
- Update last names for
de_DE
locale. Thanks @george0st. - Update phone number formats for
cs_CZ
,sk_SK
. Thanks @george0st.
v24.6.0
- Update versions in
user_agent
provider. Thanks @george0st.
v24.5.0
- Add type hints stubs. Thanks @KaylaHood.
v24.4.0
- Add address words for
cs_CZ
. Thanks @george0st
v24.3.0
- Add phone number formats to nl_BE. Thanks @maximegmd.
v24.2.1
- Return capitalized city names in
hu_HU
. Thanks @AlexLitvino.
v24.2.0
v24.1.1
- Fix prefix for male
bg_BG
names Thanks @DimitarVanguelov.
v24.1.0
v24.0.0
- Fix returning random data for person provider in
et_EE
locale when the same seed value is set. Thanks @AlexLitvino.
pycqa/flake8 (flake8)
v7.1.1
v7.1.0
v7.0.0
v6.1.0
v6.0.0
v5.0.4
v5.0.3
v5.0.2
v5.0.1
v5.0.0
v4.0.1
v4.0.0
benoitc/gunicorn (gunicorn)
v23.0.0
Gunicorn 23.0.0 has been released. This version improve HTTP 1.1. support and which improve safety
You're invited to upgrade asap your own installation.
23.0.0 - 2024-08-10
- minor docs fixes (
🇵🇷 3217
,🇵🇷 3089
,🇵🇷 3167
) - worker_class parameter accepts a class (
🇵🇷 3079
) - fix deadlock if request terminated during chunked parsing (
🇵🇷 2688
) - permit receiving Transfer-Encodings: compress, deflate, gzip (
🇵🇷 3261
) - permit Transfer-Encoding headers specifying multiple encodings. note: no parameters, still (
🇵🇷 3261
) - sdist generation now explicitly excludes sphinx build folder (
🇵🇷 3257
) - decode bytes-typed status (as can be passed by gevent) as utf-8 instead of raising
TypeError
(🇵🇷 2336
) - raise correct Exception when encounting invalid chunked requests (
🇵🇷 3258
) - the SCRIPT_NAME and PATH_INFO headers, when received from allowed forwarders, are no longer restricted for containing an underscore (
🇵🇷 3192
) - include IPv6 loopback address
[::1]
in default for :ref:forwarded-allow-ips
and :ref:proxy-allow-ips
(🇵🇷 3192
)
** NOTE **
- The SCRIPT_NAME change mitigates a regression that appeared first in the 22.0.0 release
- Review your :ref:
forwarded-allow-ips
setting if you are still not seeing the SCRIPT_NAME transmitted - Review your :ref:
forwarder-headers
setting if you are missing headers after upgrading from a version prior to 22.0.0
** Breaking changes **
- refuse requests where the uri field is empty (
🇵🇷 3255
) - refuse requests with invalid CR/LR/NUL in heade field values (
🇵🇷 3253
) - remove temporary
--tolerate-dangerous-framing
switch from 22.0 (🇵🇷 3260
) - If any of the breaking changes affect you, be aware that now refused requests can post a security problem, especially so in setups involving request pipe-lining and/or proxies.
Fix CVE-2024-1135
v22.0.0
: Gunicorn 22.0 has been released
Gunicorn 22.0.0 has been released. This version fix the numerous security vulnerabilities. You're invited to upgrade asap your own installation.
Changes:
22.0.0 - 2024-04-17
===================
- use `utime` to notify workers liveness
- migrate setup to pyproject.toml
- fix numerous security vulnerabilities in HTTP parser (closing some request smuggling vectors)
- parsing additional requests is no longer attempted past unsupported request framing
- on HTTP versions < 1.1 support for chunked transfer is refused (only used in exploits)
- requests conflicting configured or passed SCRIPT_NAME now produce a verbose error
- Trailer fields are no longer inspected for headers indicating secure scheme
- support Python 3.12
** Breaking changes **
- minimum version is Python 3.7
- the limitations on valid characters in the HTTP method have been bounded to Internet Standards
- requests specifying unsupported transfer coding (order) are refused by default (rare)
- HTTP methods are no longer casefolded by default (IANA method registry contains none affected)
- HTTP methods containing the number sign (#) are no longer accepted by default (rare)
- HTTP versions < 1.0 or >= 2.0 are no longer accepted by default (rare, only HTTP/1.1 is supported)
- HTTP versions consisting of multiple digits or containing a prefix/suffix are no longer accepted
- HTTP header field names Gunicorn cannot safely map to variables are silently dropped, as in other software
- HTTP headers with empty field name are refused by default (no legitimate use cases, used in exploits)
- requests with both Transfer-Encoding and Content-Length are refused by default (such a message might indicate an attempt to perform request smuggling)
- empty transfer codings are no longer permitted (reportedly seen with really old & broken proxies)
** SECURITY **
- fix CVE-2024-1135
- Documentation is available there: https://docs.gunicorn.org/en/stable/news.html
- Packages: https://pypi.org/project/gunicorn/
flyingcircusio/pycountry (pycountry)
v24.6.1
-
Breaking change: Reverted the fallback to name when country common_name or official_name attributes not available, which was added in 23.12.11.
-
Fixed import of importlib_metadata to importlib.metadata
-
Fixed bug causing parent subdivision codes to be returned with additional country code preceding (i.e. GB-GB-ENG instead of GB-ENG)
-
Update to iso-codes 4.16.0. (Thanks to musicinmybrain!)
pytest-dev/pytest-cov (pytest-cov)
v6.0.0
- Updated various documentation inaccuracies, especially on subprocess handling.
- Changed fail under checks to use the precision set in the coverage configuration.
Now it will perform the check just like
coverage report
would. - Added a
--cov-precision
cli option that can override the value set in your coverage configuration. - Dropped support for now EOL Python 3.8.
v5.0.0
- Removed support for xdist rsync (now deprecated).
Contributed by Matthias Reichenbach in
#​623 <https://github.com/pytest-dev/pytest-cov/pull/623>
_. - Switched docs theme to Furo.
- Various legacy Python cleanup and CI improvements.
Contributed by Christian Clauss and Hugo van Kemenade in
#​630 <https://github.com/pytest-dev/pytest-cov/pull/630>
,#​631 <https://github.com/pytest-dev/pytest-cov/pull/631>
,#​632 <https://github.com/pytest-dev/pytest-cov/pull/632>
_ and#​633 <https://github.com/pytest-dev/pytest-cov/pull/633>
_. - Added a
pyproject.toml
example in the docs. Contributed by Dawn James in#​626 <https://github.com/pytest-dev/pytest-cov/pull/626>
_. - Modernized project's pre-commit hooks to use ruff. Initial POC contributed by
Christian Clauss in
#​584 <https://github.com/pytest-dev/pytest-cov/pull/584>
_. - Dropped support for Python 3.7.
getsentry/sentry-python (sentry-sdk)
v2.20.0
-
New integration: Add Typer integration (#3869) by @patrick91
For more information, see the documentation for the TyperIntegration.
-
New integration: Add Unleash feature flagging integration (#3888) by @aliu39
For more information, see the documentation for the UnleashIntegration.
-
Add custom tracking of feature flag evaluations (#3860) by @aliu39
-
Feature Flags: Register LD hook in setup instead of init, and don't check for initialization (#3890) by @aliu39
-
Feature Flags: Moved adding of
flags
context into Scope (#3917) by @antonpirker -
Create a separate group for feature flag test suites (#3911) by @sentrivana
-
Fix cache pollution from mutable reference (#3887) by @cmanallen
-
Centralize minimum version checking (#3910) by @sentrivana
-
Support SparkIntegration activation after SparkContext created (#3411) by @seyoon-lim
-
Preserve ARQ enqueue_job kwdefaults after patching (#3903) by @danmr
-
Add Github workflow to comment on issues when a fix was released (#3866) by @antonpirker
-
Update test matrix for Sanic (#3904) by @antonpirker
-
Rename scripts (#3885) by @sentrivana
-
Fix CI (#3878) by @sentrivana
-
Treat
potel-base
as release branch in CI (#3912) by @sentrivana -
build(deps): bump actions/create-github-app-token from 1.11.0 to 1.11.1 (#3893) by @dependabot
-
build(deps): bump codecov/codecov-action from 5.0.7 to 5.1.1 (#3867) by @dependabot
-
build(deps): bump codecov/codecov-action from 5.1.1 to 5.1.2 (#3892) by @dependabot
v2.19.2
Various fixes & improvements
- Deepcopy and ensure get_all function always terminates (#3861) by @cmanallen
- Cleanup chalice test environment (#3858) by @antonpirker
v2.19.1
Various fixes & improvements
- Fix errors when instrumenting Django cache (#3855) by @BYK
- Copy
scope.client
reference as well (#3857) by @sl0thentr0py - Don't give up on Spotlight on 3 errors (#3856) by @BYK
- Add missing stack frames (#3673) by @antonpirker
- Fix wrong metadata type in async gRPC interceptor (#3205) by @fdellekart
- Rename launch darkly hook to match JS SDK (#3743) by @aliu39
- Script for checking if our instrumented libs are Python 3.13 compatible (#3425) by @antonpirker
- Improve Ray tests (#3846) by @antonpirker
- Test with Celery
5.5.0rc3
(#3842) by @sentrivana - Fix asyncio testing setup (#3832) by @sl0thentr0py
- Bump
codecov/codecov-action
from5.0.2
to5.0.7
(#3821) by @dependabot - Fix CI (#3834) by @sentrivana
- Use new ClickHouse GH action (#3826) by @antonpirker
v2.19.0
Various fixes & improvements
- New: introduce
rust_tracing
integration. See https://docs.sentry.io/platforms/python/integrations/rust_tracing/ (#3717) by @matt-codecov - Auto enable Litestar integration (#3540) by @provinzkraut
- Deprecate
sentry_sdk.init
context manager (#3729) by @szokeasaurusrex - feat(spotlight): Send PII to Spotlight when no DSN is set (#3804) by @BYK
- feat(spotlight): Add info logs when Sentry is enabled (#3735) by @BYK
- feat(spotlight): Inject Spotlight button on Django (#3751) by @BYK
- feat(spotlight): Auto enable cache_spans for Spotlight on DEBUG (#3791) by @BYK
- fix(logging): Handle parameter
stack_info
for theLoggingIntegration
(#3745) by @gmcrocetti - fix(pure-eval): Make sentry-sdk[pure-eval] installable with pip==24.0 (#3757) by @sentrivana
- fix(rust_tracing): include_tracing_fields arg to control unvetted data in rust_tracing integration (#3780) by @matt-codecov
- fix(aws) Fix aws lambda tests (by reducing event size) (#3770) by @antonpirker
- fix(arq): fix integration with Worker settings as a dict (#3742) by @saber-solooki
- fix(httpx): Prevent Sentry baggage duplication (#3728) by @szokeasaurusrex
- fix(falcon): Don't exhaust request body stream (#3768) by @szokeasaurusrex
- fix(integrations): Check
retries_left
before capturing exception (#3803) by @malkovro - fix(openai): Use name instead of description (#3807) by @sourceful-rob
- test(gcp): Only run GCP tests when they should (#3721) by @szokeasaurusrex
- chore: Shorten CI workflow names (#3805) by @sentrivana
- chore: Test with pyspark prerelease (#3760) by @sentrivana
- build(deps): bump codecov/codecov-action from 4.6.0 to 5.0.2 (#3792) by @dependabot
- build(deps): bump actions/checkout from 4.2.1 to 4.2.2 (#3691) by @dependabot
v2.18.0
Various fixes & improvements
-
New integration: Add LaunchDarkly integration (#3648) by @cmanallen
For more information, see the documentation for the LaunchDarklyIntegration.
-
New integration: Add OpenFeature feature flagging integration (#3648) by @cmanallen
For more information, see the documentation for the OpenFeatureIntegration.
-
Add LaunchDarkly and OpenFeature integration (#3648) by @cmanallen
-
Correct typo in a comment (#3726) by @szokeasaurusrex
-
End
http.client
span on timeout (#3723) by @Zylphrex -
Check for
h2
existence in HTTP/2 transport (#3690) by @BYK -
Use
type()
instead when extracting frames (#3716) by @Zylphrex -
Prefer
python_multipart
import overmultipart
(#3710) by @musicinmybrain -
Update active thread for asgi (#3669) by @Zylphrex
-
Prepare for upstream Strawberry extension removal (#3649) by @DoctorJohn
-
Enhance README with improved clarity and developer-friendly examples (#3667) by @UTSAVS26
-
Run license compliance action on all MRs (#3699) by @szokeasaurusrex
-
Run CodeQL action on all MRs (#3698) by @szokeasaurusrex
-
Exclude fakeredis 2.26.0 on py3.6 and 3.7 (#3695) by @szokeasaurusrex
-
Unpin
pytest
fortornado-latest
tests (#3714) by @szokeasaurusrex -
Install
pytest-asyncio
forredis
tests (Python 3.12-13) (#3706) by @szokeasaurusrex -
Clarify that only pinned tests are required (#3713) by @szokeasaurusrex
-
Remove accidentally-committed print (#3712) by @szokeasaurusrex
-
Disable broken RQ test in newly-released RQ 2.0 (#3708) by @szokeasaurusrex
-
Unpin
pytest
forcelery
tests (#3701) by @szokeasaurusrex -
Unpin
pytest
on Python 3.8+gevent
tests (#3700) by @szokeasaurusrex -
Unpin
pytest
for Python 3.8+common
tests (#3697) by @szokeasaurusrex -
Remove
pytest
pin inrequirements-devenv.txt
(#3696) by @szokeasaurusrex -
Test with Falcon 4.0 (#3684) by @sentrivana
v2.17.0
Various fixes & improvements
- Add support for async calls in Anthropic and OpenAI integration (#3497) by @vetyy
- Allow custom transaction names in ASGI (#3664) by @sl0thentr0py
- Langchain: Handle case when parent span wasn't traced (#3656) by @rbasoalto
- Fix Anthropic integration when using tool calls (#3615) by @kwnath
- More defensive Django Spotlight middleware injection (#3665) by @BYK
- Remove
ensure_integration_enabled_async
(#3632) by @sentrivana - Test with newer Falcon version (#3644, #3653, #3662) by @sentrivana
- Fix mypy (#3657) by @sentrivana
- Fix flaky transport test (#3666) by @sentrivana
- Remove pin on
sphinx
(#3650) by @sentrivana - Bump
actions/checkout
from4.2.0
to4.2.1
(#3651) by @dependabot
v2.16.0
Integrations
-
Bottle: Add
failed_request_status_codes
(#3618) by @szokeasaurusrexYou can now define a set of integers that will determine which status codes should be reported to Sentry.
sentry_sdk.init( integrations=[ BottleIntegration( failed_request_status_codes={403, *range(500, 600)}, ) ] )
Examples of valid
failed_request_status_codes
:-
{500}
will only send events on HTTP 500. -
{400, *range(500, 600)}
will send events on HTTP 400 as well as the 5xx range. -
{500, 503}
will send events on HTTP 500 and 503. -
set()
(the empty set) will not send events for any HTTP status code.
The default is
{*range(500, 600)}
, meaning that all 5xx status codes are reported to Sentry. -
-
Bottle: Delete never-reached code (#3605) by @szokeasaurusrex
-
Redis: Remove flaky test (#3626) by @sentrivana
-
Django: Improve getting
psycopg3
connection info (#3580) by @nijel -
Django: Add
SpotlightMiddleware
when Spotlight is enabled (#3600) by @BYK -
Django: Open relevant error when
SpotlightMiddleware
is on (#3614) by @BYK -
Django: Support
http_methods_to_capture
in ASGI Django (#3607) by @sentrivanaASGI Django now also supports the
http_methods_to_capture
integration option. This is a configurable tuple of HTTP method verbs that should create a transaction in Sentry. The default is("CONNECT", "DELETE", "GET", "PATCH", "POST", "PUT", "TRACE",)
.OPTIONS
andHEAD
are not included by default.Here's how to use it:
sentry_sdk.init( integrations=[ DjangoIntegration( http_methods_to_capture=("GET", "POST"), ), ], )
Miscellaneous
- Add 3.13 to setup.py (#3574) by @sentrivana
- Add 3.13 to basepython (#3589) by @sentrivana
- Fix type of
sample_rate
in DSC (and add explanatory tests) (#3603) by @antonpirker - Add
httpcore
basedHTTP2Transport
(#3588) by @BYK - Add opportunistic Brotli compression (#3612) by @BYK
- Add
__notes__
support (#3620) by @szokeasaurusrex - Remove useless makefile targets (#3604) by @antonpirker
- Simplify tox version spec (#3609) by @sentrivana
- Consolidate contributing docs (#3606) by @antonpirker
- Bump
codecov/codecov-action
from4.5.0
to4.6.0
(#3617) by @dependabot
v2.15.0
Integrations
-
Configure HTTP methods to capture in ASGI/WSGI middleware and frameworks (#3531) by @antonpirker
We've added a new option to the Django, Flask, Starlette and FastAPI integrations called
http_methods_to_capture
. This is a configurable tuple of HTTP method verbs that should create a transaction in Sentry. The default is("CONNECT", "DELETE", "GET", "PATCH", "POST", "PUT", "TRACE",)
.OPTIONS
andHEAD
are not included by default.Here's how to use it (substitute Flask for your framework integration):
sentry_sdk.init( integrations=[ FlaskIntegration( http_methods_to_capture=("GET", "POST"), ), ], )
-
Django: Allow ASGI to use
drf_request
inDjangoRequestExtractor
(#3572) by @PakawiNz -
Django: Don't let
RawPostDataException
bubble up (#3553) by @sentrivana -
Django: Add
sync_capable
toSentryWrappingMiddleware
(#3510) by @szokeasaurusrex -
AIOHTTP: Add
failed_request_status_codes
(#3551) by @szokeasaurusrexYou can now define a set of integers that will determine which status codes should be reported to Sentry.
sentry_sdk.init( integrations=[ AioHttpIntegration( failed_request_status_codes={403, *range(500, 600)}, ) ] )
Examples of valid
failed_request_status_codes
:-
{500}
will only send events on HTTP 500. -
{400, *range(500, 600)}
will send events on HTTP 400 as well as the 5xx range. -
{500, 503}
will send events on HTTP 500 and 503. -
set()
(the empty set) will not send events for any HTTP status code.
The default is
{*range(500, 600)}
, meaning that all 5xx status codes are reported to Sentry. -
-
AIOHTTP: Delete test which depends on AIOHTTP behavior (#3568) by @szokeasaurusrex
-
AIOHTTP: Handle invalid responses (#3554) by @szokeasaurusrex
-
FastAPI/Starlette: Support new
failed_request_status_codes
(#3563) by @szokeasaurusrexThe format of
failed_request_status_codes
has changed from a list of integers and containers to a set:sentry_sdk.init( integrations=StarletteIntegration( failed_request_status_codes={403, *range(500, 600)}, ), )
The old way of defining
failed_request_status_codes
will continue to work for the time being. Examples of valid new-stylefailed_request_status_codes
:-
{500}
will only send events on HTTP 500. -
{400, *range(500, 600)}
will send events on HTTP 400 as well as the 5xx range. -
{500, 503}
will send events on HTTP 500 and 503. -
set()
(the empty set) will not send events for any HTTP status code.
The default is
{*range(500, 600)}
, meaning that all 5xx status codes are reported to Sentry. -
-
FastAPI/Starlette: Fix
failed_request_status_codes=[]
(#3561) by @szokeasaurusrex -
FastAPI/Starlette: Remove invalid
failed_request_status_code
tests (#3560) by @szokeasaurusrex -
FastAPI/Starlette: Refactor shared test parametrization (#3562) by @szokeasaurusrex
Miscellaneous
- Deprecate
sentry_sdk.metrics
(#3512) by @szokeasaurusrex - Add
name
parameter tostart_span()
and deprecatedescription
parameter (#3524 & #3525) by @antonpirker - Fix
add_query_source
with modules outside of project root (#3313) by @rominf - Test more integrations on 3.13 (#3578) by @sentrivana
- Fix trailing whitespace (#3579) by @sentrivana
- Improve
get_integration
typing (#3550) by @szokeasaurusrex - Make import-related tests stable (#3548) by @BYK
- Fix breadcrumb sorting (#3511) by @sentrivana
- Fix breadcrumb timestamp casting and its tests (#3546) by @BYK
- Don't use deprecated
logger.warn
(#3552) by @sentrivana - Fix Cohere API change (#3549) by @BYK
- Fix deprecation message (#3536) by @antonpirker
- Remove experimental
explain_plan
feature. (#3534) by @antonpirker - X-fail one of the Lambda tests (#3592) by @antonpirker
- Update Codecov config (#3507) by @antonpirker
- Update
actions/upload-artifact
tov4
with merge (#3545) by @joshuarli - Bump
actions/checkout
from4.1.7
to4.2.0
(#3585) by @dependabot
v2.14.0
Various fixes & improvements
-
New
SysExitIntegration
(#3401) by @szokeasaurusrexFor more information, see the documentation for the SysExitIntegration.
-
Support Strawberry
0.239.2
(#3491) by @szokeasaurusrex -
Add separate
pii_denylist
toEventScrubber
and run it always (#3463) by @sl0thentr0py -
Celery: Add wrapper for
Celery().send_task
to support behavior asTask.apply_async
(#2377) by @divaltor -
Django: SentryWrappingMiddleware.init fails if super() is object (#2466) by @cameron-simpson
-
Fix data_category for sessions envelope items (#3473) by @sl0thentr0py
-
Fix non-UTC timestamps (#3461) by @szokeasaurusrex
-
Remove obsolete object as superclass (#3480) by @sentrivana
-
Replace custom
TYPE_CHECKING
with stdlibtyping.TYPE_CHECKING
(#3447) by @dev-satoshi -
Explicitly export symbol in subpackages instead of ignoring (#3400) by @hartungstenio
-
Better test coverage reports (#3498) by @antonpirker
-
Fixed config for old coverage versions (#3504) by @antonpirker
-
Fix AWS Lambda tests (#3495) by @antonpirker
-
Remove broken Bottle tests (#3505) by @sentrivana
v2.13.0
Various fixes & improvements
-
New integration: Ray (#2400) (#2444) by @glowskir
Usage: (add the RayIntegration to your
sentry_sdk.init()
call and make sure it is called in the worker processes)import ray import sentry_sdk from sentry_sdk.integrations.ray import RayIntegration def init_sentry(): sentry_sdk.init( dsn="...", traces_sample_rate=1.0, integrations=[RayIntegration()], ) init_sentry() ray.init( runtime_env=dict(worker_process_setup_hook=init_sentry), )
For more information, see the documentation for the Ray integration.
-
New integration: Litestar (#2413) (#3358) by @KellyWalker
Usage: (add the LitestarIntegration to your
sentry_sdk.init()
)from litestar import Litestar, get import sentry_sdk from sentry_sdk.integrations.litestar import LitestarIntegration sentry_sdk.init( dsn="...", traces_sample_rate=1.0, integrations=[LitestarIntegration()], ) @​get("/") async def index() -> str: return "Hello, world!" app = Litestar(...)
For more information, see the documentation for the Litestar integration.
-
New integration: Dramatiq from @jacobsvante (#3397) by @antonpirker Usage: (add the DramatiqIntegration to your
sentry_sdk.init()
)import dramatiq import sentry_sdk from sentry_sdk.integrations.dramatiq import DramatiqIntegration sentry_sdk.init( dsn="...", traces_sample_rate=1.0, integrations=[DramatiqIntegration()], ) @​dramatiq.actor(max_retries=0) def dummy_actor(x, y): return x / y dummy_actor.send(12, 0)
For more information, see the documentation for the Dramatiq integration.
-
New config option: Expose
custom_repr
function that precedessafe_repr
invocation in serializer (#3438) by @sl0thentr0pySee: https://docs.sentry.io/platforms/python/configuration/options/#custom-repr
-
Profiling: Add client SDK info to profile chunk (#3386) by @Zylphrex
-
Serialize vars early to avoid living references (#3409) by @sl0thentr0py
-
Deprecate hub-based
sessions.py
logic (#3419) by @szokeasaurusrex -
Deprecate
is_auto_session_tracking_enabled
(#3428) by @szokeasaurusrex -
Add note to generated yaml files (#3423) by @sentrivana
-
Slim down MR template (#3382) by @sentrivana
-
Use new banner in readme (#3390) by @sentrivana
v2.12.0
Various fixes & improvements
- API: Expose the scope getters to top level API and use them everywhere (#3357) by @sl0thentr0py
- API:
push_scope
deprecation warning (#3355) (#3355) by @szokeasaurusrex - API: Replace
push_scope
(#3353, #3354) by @szokeasaurusrex - API: Deprecate, avoid, or stop using
configure_scope
(#3348, #3349, #3350, #3351) by @szokeasaurusrex - OTel: Remove experimental autoinstrumentation (#3239) by @sentrivana
- Graphene: Add span for grapqhl operation (#2788) by @czyber
- AI: Add async support for
ai_track
decorator (#3376) by @czyber - CI: Workaround bug preventing Django test runs (#3371) by @szokeasaurusrex
- CI: Remove Django setuptools pin (#3378) by @szokeasaurusrex
- Tests: Test with Django 5.1 RC (#3370) by @sentrivana
- Broaden
add_attachment
type (#3342) by @szokeasaurusrex - Add span data to the transactions trace context (#3374) by @antonpirker
- Gracefully fail attachment path not found case (#3337) by @sl0thentr0py
- Document attachment parameters (#3342) by @szokeasaurusrex
- Bump checkouts/data-schemas from
0feb234
to6d2c435
(#3369) by @dependabot - Bump checkouts/data-schemas from
88273a9
to0feb234
(#3252) by @dependabot
v2.11.0
Various fixes & improvements
-
Add
disabled_integrations
(#3328) by @sentrivanaDisabling individual integrations is now much easier. Instead of disabling all automatically enabled integrations and specifying the ones you want to keep, you can now use the new
disabled_integrations
config option to provide a list of integrations to disable:import sentry_sdk from sentry_sdk.integrations.flask import FlaskIntegration sentry_sdk.init(
Do not use the Flask integration even if Flask is installed.
disabled_integrations=[
FlaskIntegration(),
],
)
- Use operation name as transaction name in Strawberry (#​3294) by @​sentrivana
- WSGI integrations respect `SCRIPT_NAME` env variable (#​2622) by @​sarvaSanjay
- Make Django DB spans have origin `auto.db.django` (#​3319) by @​antonpirker
- Sort breadcrumbs by time before sending (#​3307) by @​antonpirker
- Fix `KeyError('sentry-monitor-start-timestamp-s')` (#​3278) by @​Mohsen-Khodabakhshi
- Set MongoDB tags directly on span data (#​3290) by @​0Calories
- Lower logger level for some messages (#​3305) by @​sentrivana and @​antonpirker
- Emit deprecation warnings from `Hub` API (#​3280) by @​szokeasaurusrex
- Clarify that `instrumenter` is internal-only (#​3299) by @​szokeasaurusrex
- Support Django 5.1 (#​3207) by @​sentrivana
- Remove apparently unnecessary `if` (#​3298) by @​szokeasaurusrex
- Preliminary support for Python 3.13 (#​3200) by @​sentrivana
- Move `sentry_sdk.init` out of `hub.py` (#​3276) by @​szokeasaurusrex
- Unhardcode integration list (#​3240) by @​rominf
- Allow passing of PostgreSQL port in tests (#​3281) by @​rominf
- Add tests for `@ai_track` decorator (#​3325) by @​colin-sentry
- Do not include type checking code in coverage report (#​3327) by @​antonpirker
- Fix test_installed_modules (#​3309) by @​szokeasaurusrex
- Fix typos and grammar in a comment (#​3293) by @​szokeasaurusrex
- Fixed failed tests setup (#​3303) by @​antonpirker
- Only assert warnings we are interested in (#​3314) by @​szokeasaurusrex
v2.10.0
Various fixes & improvements
-
Add client cert and key support to
HttpTransport
(#3258) by @grammy-jiangAdd
cert_file
andkey_file
to yoursentry_sdk.init
to use a custom client cert and key. Alternatively, the environment variablesCLIENT_CERT_FILE
andCLIENT_KEY_FILE
can be used as well. -
OpenAI: Lazy initialize tiktoken to avoid http at import time (#3287) by @colin-sentry
-
OpenAI, Langchain: Make tiktoken encoding name configurable + tiktoken usage opt-in (#3289) by @colin-sentry
Fixed a bug where having certain packages installed along the Sentry SDK caused an HTTP request to be made to OpenAI infrastructure when the Sentry SDK was initialized. The request was made when the
tiktoken
package and at least one of theopenai
orlangchain
packages were installed.The request was fetching a
tiktoken
encoding in order to correctly measure token usage in some OpenAI and Langchain calls. This behavior is now opt-in. The choice of encoding to use was made configurable as well. To opt in, set thetiktoken_encoding_name
parameter in the OpenAPI or Langchain integration.sentry_sdk.init( integrations=[ OpenAIIntegration(tiktoken_encoding_name="cl100k_base"), LangchainIntegration(tiktoken_encoding_name="cl100k_base"), ], )
-
PyMongo: Send query description as valid JSON (#3291) by @0Calories
-
Remove Python 2 compatibility code (#3284) by @szokeasaurusrex
-
Fix
sentry_sdk.init
type hint (#3283) by @szokeasaurusrex -
Deprecate
hub
inProfile
(#3270) by @szokeasaurusrex -
Stop using
Hub
ininit
(#3275) by @szokeasaurusrex -
Delete
_should_send_default_pii
(#3274) by @szokeasaurusrex -
Remove
Hub
usage inconftest
(#3273) by @szokeasaurusrex -
Rename debug logging filter (#3260) by @szokeasaurusrex
-
Update
NoOpSpan.finish
signature (#3267) by @szokeasaurusrex -
Remove
Hub
inTransaction.finish
(#3267) by @szokeasaurusrex -
Remove Hub from
capture_internal_exception
logic (#3264) by @szokeasaurusrex -
Improve
Scope._capture_internal_exception
type hint (#3264) by @szokeasaurusrex -
Correct
ExcInfo
type (#3266) by @szokeasaurusrex -
Stop using
Hub
intracing_utils
(#3269) by @szokeasaurusrex
v2.9.0
Various fixes & improvements
- ref(transport): Improve event data category typing (#3243) by @szokeasaurusrex
- ref(tracing): Improved handling of span status (#3261) by @antonpirker
- test(client): Add tests for dropped span client reports (#3244) by @szokeasaurusrex
- test(transport): Test new client report features (#3244) by @szokeasaurusrex
- feat(tracing): Record lost spans in client reports (#3244) by @szokeasaurusrex
- test(sampling): Replace custom logic with
capture_record_lost_event_calls
(#3257) by @szokeasaurusrex - test(transport): Non-order-dependent discarded events assertion (#3255) by @szokeasaurusrex
- test(core): Introduce
capture_record_lost_event_calls
fixture (#3254) by @szokeasaurusrex - test(core): Fix non-idempotent test (#3253) by @szokeasaurusrex
v2.8.0
Various fixes & improvements
-
profiler_id
uses underscore (#3249) by @Zylphrex - Don't send full env to subprocess (#3251) by @kmichel-aiven
- Stop using
Hub
inHttpTransport
(#3247) by @szokeasaurusrex - Remove
ipdb
from test requirements (#3237) by @rominf - Avoid propagation of empty baggage (#2968) by @hartungstenio
- Add entry point for
SentryPropagator
(#3086) by @mender - Bump checkouts/data-schemas from
8c13457
to88273a9
(#3225) by @dependabot
v2.7.1
Various fixes & improvements
- fix(otel): Fix missing baggage (#3218) by @sentrivana
- This is the config file of asdf-vm which we do not use. (#3215) by @antonpirker
- Added option to disable middleware spans in Starlette (#3052) by @antonpirker
- build: Update tornado version in setup.py to match code check. (#3206) by @aclemons
v2.7.0
- Add
origin
to spans and transactions (#3133) by @antonpirker - OTel: Set up typing for OTel (#3168) by @sentrivana
- OTel: Auto instrumentation skeleton (#3143) by @sentrivana
- OpenAI: If there is an internal error, still return a value (#3192) by @colin-sentry
- MongoDB: Add MongoDB collection span tag (#3182) by @0Calories
- MongoDB: Change span operation from
db.query
todb
(#3186) by @0Calories - MongoDB: Remove redundant command name in query description (#3189) by @0Calories
- Apache Spark: Fix spark driver integration (#3162) by @seyoon-lim
- Apache Spark: Add Spark test suite to tox.ini and to CI (#3199) by @sentrivana
- Codecov: Add failed test commits in MRs (#3190) by @antonpirker
- Update library, Python versions in tests (#3202) by @sentrivana
- Remove Hub from our test suite (#3197) by @antonpirker
- Use env vars for default CA cert bundle location (#3160) by @DragoonAethis
- Create a separate test group for AI (#3198) by @sentrivana
- Add additional stub packages for type checking (#3122) by @Daverball
- Proper naming of requirements files (#3191) by @antonpirker
- Pinning pip because new version does not work with some versions of Celery and Httpx (#3195) by @antonpirker
- build(deps): bump supercharge/redis-github-action from 1.7.0 to 1.8.0 (#3193) by @dependabot
- build(deps): bump actions/checkout from 4.1.6 to 4.1.7 (#3171) by @dependabot
- build(deps): update pytest-asyncio requirement (#3087) by @dependabot
v2.6.0
- Introduce continuous profiling mode (#2830) by @Zylphrex
- Profiling: Add deprecation comment for profiler internals (#3167) by @sentrivana
- Profiling: Move thread data to trace context (#3157) by @Zylphrex
- Explicitly export cron symbols for typecheckers (#3072) by @spladug
- Cleaning up ASGI tests for Django (#3180) by @antonpirker
- Celery: Add Celery receive latency (#3174) by @antonpirker
- Metrics: Update type hints for tag values (#3156) by @elramen
- Django: Fix psycopg3 reconnect error (#3111) by @szokeasaurusrex
- Tracing: Keep original function signature when decorated (#3178) by @sentrivana
- Reapply "Refactor the Celery Beat integration (#3105)" (#3144) (#3175) by @antonpirker
- Added contributor image to readme (#3183) by @antonpirker
- bump actions/checkout from 4.1.4 to 4.1.6 (#3147) by @dependabot
- bump checkouts/data-schemas from
59f9683
to8c13457
(#3146) by @dependabot
v2.5.1
This change fixes a regression in our cron monitoring feature, which caused cron checkins not to be sent. The regression appears to have been introduced in version 2.4.0.
We recommend that all users, who use Cron monitoring and are currently running sentry-python ≥2.4.0, upgrade to this release as soon as possible!
Other fixes & improvements
- feat(tracing): Warn if not-started transaction entered (#3003) by @szokeasaurusrex
- test(scope): Ensure
last_event_id
cleared (#3124) by @szokeasaurusrex - fix(scope): Clear last_event_id on scope clear (#3124) by @szokeasaurusrex
v2.5.0
Various fixes & improvements
-
Allow to configure status codes to report to Sentry in Starlette and FastAPI (#3008) by @sentrivana
By passing a new option to the FastAPI and Starlette integrations, you're now able to configure what status codes should be sent as events to Sentry. Here's how it works:
from sentry_sdk.integrations.starlette import StarletteIntegration from sentry_sdk.integrations.fastapi import FastApiIntegration sentry_sdk.init(
...
integrations=[
StarletteIntegration(
failed_request_status_codes=[403, range(500, 599)],
),
FastApiIntegration(
failed_request_status_codes=[403, range(500, 599)],
),
]
)
`failed_request_status_codes` expects a list of integers or containers (objects that allow membership checks via `in`)
of integers. Examples of valid `failed_request_status_codes`:
- `[500]` will only send events on HTTP 500.
- `[400, range(500, 599)]` will send events on HTTP 400 as well as the 500-599 range.
- `[500, 503]` will send events on HTTP 500 and 503.
The default is `[range(500, 599)]`.
See the [FastAPI](https://docs.sentry.io/platforms/python/integrations/fastapi/) and [Starlette](https://docs.sentry.io/platforms/python/integrations/starlette/) integration docs for more details.
- Support multiple keys with `cache_prefixes` (#​3136) by @​sentrivana
- Support integer Redis keys (#​3132) by @​sentrivana
- Update SDK version in CONTRIBUTING.md (#​3129) by @​sentrivana
- Bump actions/checkout from 4.1.4 to 4.1.5 (#​3067) by @​dependabot
v2.4.0
Various fixes & improvements
- Celery: Made
cache.key
span data field a list (#3110) by @antonpirker - Celery Beat: Refactor the Celery Beat integration (#3105) by @antonpirker
- GRPC: Add None check for grpc.aio interceptor (#3109) by @ordinary-jamie
- Docs: Remove
last_event_id
from migration guide (#3126) by @szokeasaurusrex - fix(django): Proper transaction names for i18n routes (#3104) by @sentrivana
- fix(scope): Copy
_last_event_id
inScope.__copy__
(#3123) by @szokeasaurusrex - fix(tests): Adapt to new Anthropic version (#3119) by @sentrivana
- build(deps): bump checkouts/data-schemas from
4381a97
to59f9683
(#3066) by @dependabot
v2.3.1
Various fixes & improvements
- Handle also byte arras as strings in Redis caches (#3101) by @antonpirker
- Do not crash exceptiongroup (by patching excepthook and keeping the name of the function) (#3099) by @antonpirker
v2.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
v2.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
v2.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
- Only propagate headers from spans within transactions (#3070) by @szokeasaurusrex
- Improve type hints for set metrics (#3048) by @elramen
- Fix
get_client
typing (#3063) by @szokeasaurusrex - Auto-enable Anthropic integration + gate imports (#3054) by @colin-sentry
- Made
MeasurementValue.unit
NotRequired (#3051) by @antonpirker
v2.1.1
- Fix trace propagation in Celery tasks started by Celery Beat. (#3047) by @antonpirker
v2.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
v2.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
v2.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:
```python
transaction = sentry_sdk.transaction(...)
later in the code execution:
scope = sentry_sdk.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:
```python
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:
```python
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 viaget_isolation_scope()
instead.Before:
with configure_scope() as scope:
scope
do something with
After:
```python
from sentry_sdk import get_isolation_scope
scope = get_isolation_scope()
gorakhargosh/watchdog (watchdog)
v6.0.0
: 6.0.0
Breaking Changes
- [inotify] Use of
select.poll()
instead of deprecatedselect.select()
, if available. (#1078) - [utils] Removed the unused
echo_class()
function from theecho
module. - [utils] Removed the unused
echo_instancemethod()
function from theecho
module. - [utils] Removed the unused
echo_module()
function from theecho
module. - [utils] Removed the unused
is_class_private_name()
function from theecho
module. - [utils] Removed the unused
is_classmethod()
function from theecho
module. - [utils] Removed the unused
is_method(met()
function from theecho
module. - [utils] Removed the unused
method_name()
function from theecho
module. - [utils] Removed the unused
name()
function from theecho
module. - [watchmedo] Removed the
--trace
CLI argument from thewatchmedo log
command, useless since events are logged by default at theLoggerTrick
class level.
Other Changes
- Pin test dependecies.
- [docs] Add typing info to quick start. (#1082)
- [inotify] Fix reading inotify file descriptor after closing it. (#1081)
- [utils] The
stop_signal
keyword-argument type of theAutoRestartTrick
class can now be either asignal.Signals
or anint
. - [utils] Added the
__repr__()
method to theTrick
class. - [watchmedo] Fixed Mypy issues.
- [watchmedo] Added the
__repr__()
method to theHelpFormatter
class. - [windows] Fixed Mypy issues.
v5.0.3
: 5.0.3
- [inotify] Improve cleaning up
Inotify
threads, and addeventlet
test cases (#1070)
v5.0.2
: 5.0.2
- Enable OS specific Mypy checks (#1064)
- [watchmedo] Fix
tricks
argument type ofschedule_tricks()
(#1063)
v5.0.1
: 5.0.1
- [kqueue] Fix
TypeError: kqueue.control() only accepts positional parameters
(#1062)
v5.0.0
: 5.0.0
Breaking Changes
- Drop support for Python 3.8 (#1055)
- [core] Enforced usage of proper keyword-arguments (#1057)
- [core] Renamed the
BaseObserverSubclassCallable
class toObserverType
(#1055) - [inotify] Renamed the
inotify_event_struct
class toInotifyEventStruct
(#1055) - [inotify] Renamed the
UnsupportedLibc
exception toUnsupportedLibcError
(#1057) - [inotify] Removed the
InotifyConstants.IN_CLOSE
constant (#1046) - [watchmedo] Renamed the
LogLevelException
exception toLogLevelError
(#1057) - [watchmedo] Renamed the
WatchdogShutdown
exception toWatchdogShutdownError
(#1057) - [windows] Renamed the
FILE_NOTIFY_INFORMATION
class toFileNotifyInformation
(#1055) - [windows] Removed the unused
WATCHDOG_TRAVERSE_MOVED_DIR_DELAY
constant (#1057)
Other Changes
- [core] Enable
disallow_untyped_calls
Mypy rule (#1055) - [core] Enable
disallow_untyped_defs
Mypy rule (#1060) - [core] Improve typing references for events (#1040)
- [inotify] Add support for
IN_CLOSE_NOWRITE
events. AFileClosedNoWriteEvent
event will be fired, and itson_closed_no_write()
dispatcher has been introduced (#1046)
Configuration
-
If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.