Accepting request 1206304 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1206304 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-sentry-sdk?expand=0&rev=36
This commit is contained in:
commit
37472acc5d
@ -1,3 +1,60 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 8 06:08:53 UTC 2024 - Johannes Kastl <opensuse_buildservice@ojkastl.de>
|
||||||
|
|
||||||
|
- Update to 2.15.0:
|
||||||
|
* Integrations
|
||||||
|
Please see release notes for details
|
||||||
|
https://github.com/getsentry/sentry-python/releases/tag/2.15.0
|
||||||
|
* Miscellaneous
|
||||||
|
- Deprecate sentry_sdk.metrics (#3512) by @szokeasaurusrex
|
||||||
|
- Add name parameter to start_span() and deprecate description
|
||||||
|
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 to v4 with merge (#3545) by
|
||||||
|
@joshuarli
|
||||||
|
- Bump actions/checkout from 4.1.7 to 4.2.0 (#3585) by
|
||||||
|
@dependabot
|
||||||
|
- Update to 2.14.0:
|
||||||
|
* New SysExitIntegration (#3401) by @szokeasaurusrex
|
||||||
|
* For more information, see the documentation for the
|
||||||
|
SysExitIntegration.
|
||||||
|
* Add SENTRY_SPOTLIGHT env variable support (#3443) by @BYK
|
||||||
|
* Support Strawberry 0.239.2 (#3491) by @szokeasaurusrex
|
||||||
|
* Add separate pii_denylist to EventScrubber and run it always
|
||||||
|
(#3463) by @sl0thentr0py
|
||||||
|
* Celery: Add wrapper for Celery().send_task to support behavior
|
||||||
|
as Task.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 stdlib typing.TYPE_CHECKING
|
||||||
|
(#3447) by @dev-satoshi
|
||||||
|
* Refactor tracing_utils.py (#3452) by @rominf
|
||||||
|
* 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
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Aug 21 03:59:32 UTC 2024 - Steve Kowalik <steven.kowalik@suse.com>
|
Wed Aug 21 03:59:32 UTC 2024 - Steve Kowalik <steven.kowalik@suse.com>
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
# nothing provides python2-venusian >= 1.0 needed by python2-pyramid
|
# nothing provides python2-venusian >= 1.0 needed by python2-pyramid
|
||||||
%{?sle15_python_module_pythons}
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-sentry-sdk
|
Name: python-sentry-sdk
|
||||||
Version: 2.13.0
|
Version: 2.15.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Python SDK for Sentry.io
|
Summary: Python SDK for Sentry.io
|
||||||
License: BSD-2-Clause
|
License: BSD-2-Clause
|
||||||
@ -154,7 +154,13 @@ export DJANGO_SETTINGS_MODULE=tests.conftest
|
|||||||
# do not test integration (many package are missing at SUSE):
|
# do not test integration (many package are missing at SUSE):
|
||||||
rm -r tests/integrations
|
rm -r tests/integrations
|
||||||
# test_auto_enabling_integrations_catches_import_error asert False where False = ..., not sure
|
# test_auto_enabling_integrations_catches_import_error asert False where False = ..., not sure
|
||||||
%pytest -rs -k 'not ((test_default_release and test_utils) or test_new_scopes_compat_event or test_transport_works or test_auto_enabling_integrations_catches_import_error)'
|
IGNORED_CHECKS="(test_default_release and test_utils)"
|
||||||
|
IGNORED_CHECKS="${IGNORED_CHECKS} or test_new_scopes_compat_event"
|
||||||
|
IGNORED_CHECKS="${IGNORED_CHECKS} or test_transport_works"
|
||||||
|
IGNORED_CHECKS="${IGNORED_CHECKS} or test_auto_enabling_integrations_catches_import_error"
|
||||||
|
# https://github.com/getsentry/sentry-python/issues/3624
|
||||||
|
IGNORED_CHECKS="${IGNORED_CHECKS} or test_redis_disabled_when_not_installed"
|
||||||
|
%pytest -rs -k "not (${IGNORED_CHECKS})"
|
||||||
|
|
||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
%doc README.md CHANGELOG.md CONTRIBUTING.md CONTRIBUTING-aws-lambda.md
|
%doc README.md CHANGELOG.md CONTRIBUTING.md CONTRIBUTING-aws-lambda.md
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:60aafb137b34117b2950b54e78bac5037794617d25936bdb633695fab53b17eb
|
|
||||||
size 549156
|
|
3
sentry-python-2.15.0.tar.gz
Normal file
3
sentry-python-2.15.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:0d8385700a21f16ca930954674ff3a119b24344c142a26bf08b4fb2766a3937a
|
||||||
|
size 560317
|
Loading…
Reference in New Issue
Block a user