Hello community,

here is the log from the commit of package python-sentry-sdk for 
openSUSE:Factory checked in at 2019-11-09 23:44:40
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-sentry-sdk (Old)
 and      /work/SRC/openSUSE:Factory/.python-sentry-sdk.new.2990 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-sentry-sdk"

Sat Nov  9 23:44:40 2019 rev:9 rq:746765 version:0.13.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-sentry-sdk/python-sentry-sdk.changes      
2019-10-27 13:40:49.685253528 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-sentry-sdk.new.2990/python-sentry-sdk.changes
    2019-11-09 23:44:43.881684337 +0100
@@ -1,0 +2,7 @@
+Fri Nov  8 23:09:33 UTC 2019 - Jimmy Berry <[email protected]>
+
+- Update to 0.13.2
+  - Fix a bug in APM that would cause wrong durations to be
+    displayed on non-UTC servers.
+
+-------------------------------------------------------------------

Old:
----
  python-sentry-sdk-0.13.1.tar.gz

New:
----
  python-sentry-sdk-0.13.2.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-sentry-sdk.spec ++++++
--- /var/tmp/diff_new_pack.mfvCg5/_old  2019-11-09 23:44:44.425685133 +0100
+++ /var/tmp/diff_new_pack.mfvCg5/_new  2019-11-09 23:44:44.429685139 +0100
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-sentry-sdk
-Version:        0.13.1
+Version:        0.13.2
 Release:        0
 Summary:        Python SDK for Sentry.io
 License:        BSD-2-Clause

++++++ python-sentry-sdk-0.13.1.tar.gz -> python-sentry-sdk-0.13.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sentry-python-0.13.1/.travis.yml 
new/sentry-python-0.13.2/.travis.yml
--- old/sentry-python-0.13.1/.travis.yml        2019-10-25 10:03:15.000000000 
+0200
+++ new/sentry-python-0.13.2/.travis.yml        2019-11-07 19:31:40.000000000 
+0100
@@ -53,6 +53,7 @@
 install:
   - pip install tox
   - pip install codecov
+  - make install-zeus-cli
   - bash scripts/download-semaphore.sh
 
 script:
@@ -61,6 +62,7 @@
   - coverage combine .coverage*
   - coverage xml -i
   - codecov --file coverage.xml
+  - '[[ -z "$ZEUS_API_TOKEN" ]] || zeus upload -t 
"application/x-cobertura+xml" coverage.xml'
 
 notifications:
   webhooks:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sentry-python-0.13.1/CHANGES.md 
new/sentry-python-0.13.2/CHANGES.md
--- old/sentry-python-0.13.1/CHANGES.md 2019-10-25 10:03:15.000000000 +0200
+++ new/sentry-python-0.13.2/CHANGES.md 2019-11-07 19:31:40.000000000 +0100
@@ -27,6 +27,10 @@
 
 A major release `N` implies the previous release `N-1` will no longer receive 
updates. We generally do not backport bugfixes to older versions unless they 
are security relevant. However, feel free to ask for backports of specific 
commits on the bugtracker.
 
+## 0.13.2
+
+* Fix a bug in APM that would cause wrong durations to be displayed on non-UTC 
servers.
+
 ## 0.13.1
 
 * Add new global functions for setting scope/context data.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sentry-python-0.13.1/docs/conf.py 
new/sentry-python-0.13.2/docs/conf.py
--- old/sentry-python-0.13.1/docs/conf.py       2019-10-25 10:03:15.000000000 
+0200
+++ new/sentry-python-0.13.2/docs/conf.py       2019-11-07 19:31:40.000000000 
+0100
@@ -22,7 +22,7 @@
 copyright = u"2019, Sentry Team and Contributors"
 author = u"Sentry Team and Contributors"
 
-release = "0.13.1"
+release = "0.13.2"
 version = ".".join(release.split(".")[:2])  # The short X.Y version.
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sentry-python-0.13.1/sentry_sdk/consts.py 
new/sentry-python-0.13.2/sentry_sdk/consts.py
--- old/sentry-python-0.13.1/sentry_sdk/consts.py       2019-10-25 
10:03:15.000000000 +0200
+++ new/sentry-python-0.13.2/sentry_sdk/consts.py       2019-11-07 
19:31:40.000000000 +0100
@@ -72,7 +72,7 @@
 del _get_default_options
 
 
-VERSION = "0.13.1"
+VERSION = "0.13.2"
 SDK_INFO = {
     "name": "sentry.python",
     "version": VERSION,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/sentry-python-0.13.1/sentry_sdk/integrations/celery.py 
new/sentry-python-0.13.2/sentry_sdk/integrations/celery.py
--- old/sentry-python-0.13.1/sentry_sdk/integrations/celery.py  2019-10-25 
10:03:15.000000000 +0200
+++ new/sentry-python-0.13.2/sentry_sdk/integrations/celery.py  2019-11-07 
19:31:40.000000000 +0100
@@ -72,6 +72,10 @@
         ignore_logger("celery.worker.job")
         ignore_logger("celery.app.trace")
 
+        # This is stdout/err redirected to a logger, can't deal with this
+        # (need event_level=logging.WARN to reproduce)
+        ignore_logger("celery.redirected")
+
 
 def _wrap_apply_async(task, f):
     # type: (Any, F) -> F
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sentry-python-0.13.1/sentry_sdk/tracing.py 
new/sentry-python-0.13.2/sentry_sdk/tracing.py
--- old/sentry-python-0.13.1/sentry_sdk/tracing.py      2019-10-25 
10:03:15.000000000 +0200
+++ new/sentry-python-0.13.2/sentry_sdk/tracing.py      2019-11-07 
19:31:40.000000000 +0100
@@ -133,7 +133,7 @@
         self.hub = hub
         self._tags = {}  # type: Dict[str, str]
         self._data = {}  # type: Dict[str, Any]
-        self.start_timestamp = datetime.now()
+        self.start_timestamp = datetime.utcnow()
 
         #: End timestamp of span
         self.timestamp = None  # type: Optional[datetime]
@@ -279,7 +279,7 @@
             # This transaction is already finished, so we should not flush it 
again.
             return None
 
-        self.timestamp = datetime.now()
+        self.timestamp = datetime.utcnow()
 
         _maybe_create_breadcrumbs_from_span(hub, self)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sentry-python-0.13.1/setup.py 
new/sentry-python-0.13.2/setup.py
--- old/sentry-python-0.13.1/setup.py   2019-10-25 10:03:15.000000000 +0200
+++ new/sentry-python-0.13.2/setup.py   2019-11-07 19:31:40.000000000 +0100
@@ -12,7 +12,7 @@
 
 setup(
     name="sentry-sdk",
-    version="0.13.1",
+    version="0.13.2",
     author="Sentry Team and Contributors",
     author_email="[email protected]",
     url="https://github.com/getsentry/sentry-python";,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sentry-python-0.13.1/tests/test_transport.py 
new/sentry-python-0.13.2/tests/test_transport.py
--- old/sentry-python-0.13.1/tests/test_transport.py    2019-10-25 
10:03:15.000000000 +0200
+++ new/sentry-python-0.13.2/tests/test_transport.py    2019-11-07 
19:31:40.000000000 +0100
@@ -44,7 +44,7 @@
     Hub.current.bind_client(client)
     request.addfinalizer(lambda: Hub.current.bind_client(None))
 
-    add_breadcrumb(level="info", message="i like bread", 
timestamp=datetime.now())
+    add_breadcrumb(level="info", message="i like bread", 
timestamp=datetime.utcnow())
     capture_message("löl")
 
     getattr(client, client_flush_method)()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sentry-python-0.13.1/tox.ini 
new/sentry-python-0.13.2/tox.ini
--- old/sentry-python-0.13.1/tox.ini    2019-10-25 10:03:15.000000000 +0200
+++ new/sentry-python-0.13.2/tox.ini    2019-11-07 19:31:40.000000000 +0100
@@ -156,7 +156,7 @@
 
     spark: pyspark==2.4.4
 
-    linters: black
+    linters: black==19.03b0
     linters: flake8
     linters: flake8-import-order
     linters: mypy==0.740


Reply via email to