sentry 8.2.1 发布,事件日志和聚合平台

jopen 8年前

sentry 8.2.1 发布了,Sentry 是一个实时的事件日志和聚合平台,基于 Django 构建。Sentry 可以帮助你将 Python 程序的所有 exception 自动记录下来,然后在一个好用的 UI 上呈现和搜索。处理 exception 是每个程序的必要部分,所以 Sentry 也几乎可以说是所有项目的必备组件。

更新记录如下:

@@ -1,3 +1,8 @@

+Version 8.2.1

+-------------

+

+- Fix compatibility with setuptools 20.2

+

 Version 8.2.0

 -------------

 

 @@ -16,6 +21,11 @@ Schema Changes

 - Added ``EventTag`` model.

 - Added ``OrganizationOnboardingTask`` model.

 

+Version 8.1.3

+-------------

+

+- Fix compatibility with setuptools 20.2

+

 Version 8.1.2

 -------------

 

View 2  setup.py

 @@ -46,7 +46,7 @@

 from setuptools.command.develop import develop as DevelopCommand

 

 # The version of sentry

-VERSION = '8.2.0'

+VERSION = '8.2.1'

 

 # Also see sentry.utils.integrationdocs.DOC_FOLDER

 INTEGRATION_DOC_FOLDER = os.path.join(os.path.abspath(

View 2  src/sentry/debug/utils/packages.py

 @@ -17,7 +17,7 @@ def get_package_version(module_name, app):

         # pull version from pkg_resources if distro exists

         try:

             return pkg_resources.get_distribution(module_name).version

-        except pkg_resources.DistributionNotFound:

+        except Exception:

             pass

     if hasattr(app, 'get_version'):


下载地址:https://github.com/getsentry/sentry/archive/master.zip

来自: http://www.oschina.net//news/71168/sentry-8-2-1