Skip to content

Commit

Permalink
v0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ezarowny committed Apr 18, 2016
1 parent 2eac356 commit 9650e9b
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 12 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
# Change Log

**0.12.0**

- Fix and update Twisted support. See [#109](https://github.com/rollbar/pyrollbar/pull/109)
- **Breaking Changes**: [treq](https://github.com/twisted/treq) is now required for using Twisted with pyrollbar.


**0.11.6**

- Improve object handling for SQLAlchemy. See [#108](https://github.com/rollbar/pyrollbar/pull/108)

**0.11.5**

- Fixed a bug when custom `__repr__()` calls resulted in an exception being thrown. See [#102](https://github.com/rollbar/pyrollbar/pull/102)
- Fixed a bug when custom `__repr__()` calls resulted in an exception being thrown. See [#102](https://github.com/rollbar/pyrollbar/pull/102)

**0.11.4**

Expand Down
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Rollbar notifier for Python [![Build Status](https://api.travis-ci.org/rollbar/pyrollbar.png?branch=v0.11.6)](https://travis-ci.org/rollbar/pyrollbar)
# Rollbar notifier for Python [![Build Status](https://api.travis-ci.org/rollbar/pyrollbar.png?branch=v0.12.0)](https://travis-ci.org/rollbar/pyrollbar)

<!-- RemoveNext -->
Python notifier for reporting exceptions, errors, and log messages to [Rollbar](https://rollbar.com).
Expand Down Expand Up @@ -71,7 +71,7 @@ pyramid.includes =
pyramid_debugtoolbar
rollbar.contrib.pyramid
```

And add these rollbar configuration variables:

```ini
Expand Down Expand Up @@ -144,7 +144,7 @@ bottle.install(rbr) #install globally
@bottle.get('/')
def raise_error():
'''
When navigating to /, we'll get a regular 500 page from bottle,
When navigating to /, we'll get a regular 500 page from bottle,
as well as have the error below listed on Rollbar.
'''
raise Exception('Hello, Rollbar!')
Expand Down Expand Up @@ -311,7 +311,7 @@ Default: ```True```
</dd>
<dt>endpoint</dt>
<dd>URL items are posted to.

Default: ```https://api.rollbar.com/api/1/item/```

</dd>
Expand All @@ -324,11 +324,11 @@ Default: ```https://api.rollbar.com/api/1/item/```
Valid levels: ```'critical'```, ```'error'```, ```'warning'```, ```'info'```, ```'debug'``` and ```'ignored'```.

Use ```'ignored'``` if you want an Exception (sub)class to never be reported to Rollbar.

Any exceptions not found in this configuration setting will default to ```'error'```.

Django ```settings.py``` example (and Django default):

```python
from django.http import Http404

Expand All @@ -341,17 +341,17 @@ ROLLBAR = {
```

In a Pyramid ``ini`` file, define each tuple as an individual whitespace delimited line, for example:

```
rollbar.exception_level_filters =
pyramid.exceptions.ConfigurationError critical
#...
```

</dd>
<dt>handler</dt>
<dd>The method for reporting rollbar items to api.rollbar.com

One of:

- blocking -- runs in main thread
Expand Down Expand Up @@ -403,7 +403,7 @@ Default: ```thread```
</dl>
</dd>
<dt>root</dt>
<dd>Absolute path to the root of your application, not including the final ```/```.
<dd>Absolute path to the root of your application, not including the final ```/```.
</dd>
<dt>scrub_fields</dt>
<dd>List of sensitive field names to scrub out of request params and locals. Values will be replaced with asterisks. If overriding, make sure to list all fields you want to scrub, not just fields you want to add to the default. Param names are converted to lowercase before comparing against the scrub list.
Expand Down
2 changes: 1 addition & 1 deletion rollbar/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from __future__ import absolute_import
from __future__ import unicode_literals

__version__ = '0.11.6'
__version__ = '0.12.0'

import copy
import inspect
Expand Down

0 comments on commit 9650e9b

Please sign in to comment.