From 402f8cc728c07f63692cb3b58e2305b93f61fc3b Mon Sep 17 00:00:00 2001 From: Eric Zarowny Date: Mon, 3 Jul 2017 10:29:56 -0700 Subject: [PATCH] v0.13.12 --- CHANGELOG.md | 6 ++++++ README.md | 2 +- rollbar/__init__.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a593224..721d4017 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +**0.13.12** + +- Remove the Django request body from the payload as it can contain sensitive data. See [#174](https://github.com/rollbar/pyrollbar/pull/174) +- Allow users to shorten arbitrary parts of the payload. See [#173](https://github.com/rollbar/pyrollbar/pull/173) +- Fix a Django deprecation warning. See [#165](https://github.com/rollbar/pyrollbar/pull/165) + **0.13.11** - Handle environments where `sys.argv` does not exist. See [#131](https://github.com/rollbar/pyrollbar/pull/131) diff --git a/README.md b/README.md index a0680ee8..5e4faa4b 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Rollbar notifier for Python [![Build Status](https://api.travis-ci.org/rollbar/pyrollbar.png?branch=v0.13.11)](https://travis-ci.org/rollbar/pyrollbar) +# Rollbar notifier for Python [![Build Status](https://api.travis-ci.org/rollbar/pyrollbar.png?branch=v0.13.12)](https://travis-ci.org/rollbar/pyrollbar) Python notifier for reporting exceptions, errors, and log messages to [Rollbar](https://rollbar.com). diff --git a/rollbar/__init__.py b/rollbar/__init__.py index 7fce835c..65f6593a 100644 --- a/rollbar/__init__.py +++ b/rollbar/__init__.py @@ -23,7 +23,7 @@ from rollbar.lib import dict_merge, parse_qs, text, transport, urljoin, iteritems -__version__ = '0.13.11' +__version__ = '0.13.12' __log_name__ = 'rollbar' log = logging.getLogger(__log_name__)