Accepting request 878130 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/878130 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-sentry-sdk?expand=0&rev=14
This commit is contained in:
commit
0b7749e768
@ -1,3 +1,47 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 10 06:36:59 UTC 2021 - ecsos <ecsos@opensuse.org>
|
||||||
|
|
||||||
|
- Update to 1.0.0
|
||||||
|
- BREAKING CHANGE: Feat: Moved auto_session_tracking experimental
|
||||||
|
flag to a proper option and removed explicitly setting
|
||||||
|
experimental session_mode in favor of auto detecting its value,
|
||||||
|
hence enabling release health by default #994
|
||||||
|
- Fixed Django transaction name by setting the name to
|
||||||
|
request.path_info rather than request.path
|
||||||
|
- Fix for tracing by getting HTTP headers from span rather than
|
||||||
|
transaction when possible #1035
|
||||||
|
- Fix for Flask transactions missing request body in non errored
|
||||||
|
transactions #1034
|
||||||
|
- Fix for honoring the X-Forwarded-For header #1037
|
||||||
|
- Fix for worker that logs data dropping of events with level
|
||||||
|
error #1032
|
||||||
|
- Changes from 0.20.3
|
||||||
|
- Added scripts to support auto instrumentation of no code AWS
|
||||||
|
lambda Python functions
|
||||||
|
- Changes from 0.20.2
|
||||||
|
- Fix incorrect regex in craft to include wheel file in pypi
|
||||||
|
release
|
||||||
|
- Changes from 0.20.1
|
||||||
|
- Fix for error that occurs with Async Middlewares when the
|
||||||
|
middleware is a function rather than a class
|
||||||
|
- Changes from 0.20.0
|
||||||
|
- Fix for header extraction for AWS lambda/API extraction
|
||||||
|
- Fix multiple **kwargs type hints # 967
|
||||||
|
- Fix that corrects AWS lambda integration failure to detect
|
||||||
|
the aws-lambda-ric 1.0 bootstrap #976
|
||||||
|
- Fix AWSLambda integration: variable "timeout_thread" referenced
|
||||||
|
before assignment #977
|
||||||
|
- Use full git sha as release name #960
|
||||||
|
- BREAKING CHANGE: The default environment is now production,
|
||||||
|
not based on release
|
||||||
|
- Django integration now creates transaction spans for template
|
||||||
|
rendering
|
||||||
|
- Fix headers not parsed correctly in ASGI middleware,
|
||||||
|
Decode headers before creating transaction #984
|
||||||
|
- Restored ability to have tracing disabled #991
|
||||||
|
- Fix Django async views not behaving asynchronously
|
||||||
|
- Performance improvement: supported pre-aggregated sessions
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Dec 10 13:23:46 UTC 2020 - ecsos <ecsos@opensuse.org>
|
Thu Dec 10 13:23:46 UTC 2020 - ecsos <ecsos@opensuse.org>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-sentry-sdk
|
# spec file for package python-sentry-sdk
|
||||||
#
|
#
|
||||||
# Copyright (c) 2020 SUSE LLC
|
# Copyright (c) 2021 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -20,7 +20,7 @@
|
|||||||
# nothing provides python2-venusian >= 1.0 needed by python2-pyramid
|
# nothing provides python2-venusian >= 1.0 needed by python2-pyramid
|
||||||
%define skip_python2 1
|
%define skip_python2 1
|
||||||
Name: python-sentry-sdk
|
Name: python-sentry-sdk
|
||||||
Version: 0.19.5
|
Version: 1.0.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
|
||||||
@ -30,13 +30,13 @@ Source0: https://github.com/getsentry/sentry-python/archive/%{version}/se
|
|||||||
BuildRequires: %{python_module Flask >= 0.11}
|
BuildRequires: %{python_module Flask >= 0.11}
|
||||||
BuildRequires: %{python_module SQLAlchemy >= 1.2}
|
BuildRequires: %{python_module SQLAlchemy >= 1.2}
|
||||||
BuildRequires: %{python_module aiohttp >= 3.5}
|
BuildRequires: %{python_module aiohttp >= 3.5}
|
||||||
|
BuildRequires: %{python_module asttokens}
|
||||||
BuildRequires: %{python_module blinker >= 1.1}
|
BuildRequires: %{python_module blinker >= 1.1}
|
||||||
BuildRequires: %{python_module bottle >= 0.12.13}
|
BuildRequires: %{python_module bottle >= 0.12.13}
|
||||||
BuildRequires: %{python_module celery >= 3}
|
BuildRequires: %{python_module celery >= 3}
|
||||||
BuildRequires: %{python_module certifi}
|
BuildRequires: %{python_module certifi}
|
||||||
BuildRequires: %{python_module executing}
|
BuildRequires: %{python_module executing}
|
||||||
BuildRequires: %{python_module falcon >= 1.4}
|
BuildRequires: %{python_module falcon >= 1.4}
|
||||||
BuildRequires: %{python_module jsonschema}
|
|
||||||
BuildRequires: %{python_module rq >= 0.6}
|
BuildRequires: %{python_module rq >= 0.6}
|
||||||
BuildRequires: %{python_module setuptools}
|
BuildRequires: %{python_module setuptools}
|
||||||
BuildRequires: %{python_module tornado >= 5}
|
BuildRequires: %{python_module tornado >= 5}
|
||||||
@ -48,8 +48,12 @@ BuildRequires: %{python_module Werkzeug}
|
|||||||
BuildRequires: %{python_module eventlet}
|
BuildRequires: %{python_module eventlet}
|
||||||
BuildRequires: %{python_module gevent}
|
BuildRequires: %{python_module gevent}
|
||||||
BuildRequires: %{python_module hypothesis}
|
BuildRequires: %{python_module hypothesis}
|
||||||
|
BuildRequires: %{python_module jsonschema >= 3.2.0}
|
||||||
BuildRequires: %{python_module pyramid}
|
BuildRequires: %{python_module pyramid}
|
||||||
BuildRequires: %{python_module pytest-localserver}
|
BuildRequires: %{python_module pyrsistent}
|
||||||
|
BuildRequires: %{python_module pytest-cov >= 2.8.1}
|
||||||
|
BuildRequires: %{python_module pytest-forked >= 1.1.3}
|
||||||
|
BuildRequires: %{python_module pytest-localserver >= 0.5.0}
|
||||||
BuildRequires: %{python_module pytest}
|
BuildRequires: %{python_module pytest}
|
||||||
BuildRequires: %{python_module tox}
|
BuildRequires: %{python_module tox}
|
||||||
# /SECTION
|
# /SECTION
|
||||||
@ -59,12 +63,12 @@ BuildRequires: %{python_module tox}
|
|||||||
#BuildRequires: %%{python_module apache-beam >= 2.12}
|
#BuildRequires: %%{python_module apache-beam >= 2.12}
|
||||||
#BuildRequires: %%{python_module pyspark >= 2.4.4}
|
#BuildRequires: %%{python_module pyspark >= 2.4.4}
|
||||||
#BuildRequires: %%{python_module pure_eval}
|
#BuildRequires: %%{python_module pure_eval}
|
||||||
#BuildRequires: %%{python_module asttokens}
|
|
||||||
#BuildRequires: %%{python_module chalice >= 1.16.0}
|
#BuildRequires: %%{python_module chalice >= 1.16.0}
|
||||||
# /SECTION
|
# /SECTION
|
||||||
Requires: python-Flask >= 0.11
|
Requires: python-Flask >= 0.11
|
||||||
Requires: python-SQLAlchemy >= 1.2
|
Requires: python-SQLAlchemy >= 1.2
|
||||||
Requires: python-aiohttp >= 3.5
|
Requires: python-aiohttp >= 3.5
|
||||||
|
Requires: python-asttokens
|
||||||
Requires: python-blinker >= 1.1
|
Requires: python-blinker >= 1.1
|
||||||
Requires: python-bottle >= 0.12.13
|
Requires: python-bottle >= 0.12.13
|
||||||
Requires: python-celery >= 3
|
Requires: python-celery >= 3
|
||||||
@ -81,7 +85,6 @@ Requires: python-urllib3
|
|||||||
#Requires: python-apache-beam >= 2.12
|
#Requires: python-apache-beam >= 2.12
|
||||||
#Requires: python-pyspark >= 2.4.4
|
#Requires: python-pyspark >= 2.4.4
|
||||||
#Requires: python-pure_eval
|
#Requires: python-pure_eval
|
||||||
#Requires: python-asttokens
|
|
||||||
#Requires: python-chalice >= 1.16.0
|
#Requires: python-chalice >= 1.16.0
|
||||||
# /SECTION
|
# /SECTION
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
@ -112,7 +115,7 @@ rm -r tests/integrations
|
|||||||
%pytest -k 'not (test_transport_works or test_auto_enabling_integrations_catches_import_error or test_filename or test_transport_infinite_loop or test_simple_rate_limits or test_data_category_limits or test_complex_limits_without_data_category)'
|
%pytest -k 'not (test_transport_works or test_auto_enabling_integrations_catches_import_error or test_filename or test_transport_infinite_loop or test_simple_rate_limits or test_data_category_limits or test_complex_limits_without_data_category)'
|
||||||
|
|
||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
%doc README.md CHANGES.md
|
%doc README.md CHANGELOG.md
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%{python_sitelib}/*
|
%{python_sitelib}/*
|
||||||
|
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:41105936b5196fbed153d016b9425b190d7e1ea5088b3023a1c2ed041de3e0de
|
|
||||||
size 206164
|
|
3
sentry-python-1.0.0.tar.gz
Normal file
3
sentry-python-1.0.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:d84b396f31877b1a287711a55db72f93d7c586bd81f3215d687aef4a1c770261
|
||||||
|
size 213707
|
Loading…
Reference in New Issue
Block a user