summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Removed django-celery has it’s no more needed with celery 3.1celery_3_1_xXavier Ordoquy2013-12-052-2/+0
|
* Acknowledge the loss of celery’s with_eager_tasksXavier Ordoquy2013-12-052-5/+3
|
* Merge pull request #389 from getsentry/rewrite-contextDavid Cramer2013-12-046-138/+145
|\ | | | | Updates context() API
| * New context() APIDavid Cramer2013-12-026-138/+145
|/ | | | | | | | | | | | | | | | | | | | | | | This makes the API much easier to use, and resembles the raven-ruby implementation. Users can continually merge context (generally within their middleware), and simply need to call context.clear() to refresh it. The following APIs are added as part of this changeset: ``` Client.context -- the accessible context instance >>> Client.context.get() Client.context.clear() -- flush the current context >>> Client.context.clear() Client.user_context() -- a shortcut to set the user interface >>> Client.user_context({'email': 'foo@example.com'}) Client.tags_context() -- add additional tags to context (or overwrite an existing tag) >>> Client.tags_context({'key': 'value'}) Client.extra_context() -- add additional data to context (or overwrite an existing key in the data) >>> Client.extra_context({'key': 'value'}) ```
* Merge pull request #386 from crankycoder/features/ipv4_by_defaultDavid Cramer2013-11-291-1/+1
|\ | | | | Fixes the BaseUDPTransport to use IPv4 by default
| * BaseUDPTransport was just picking the first address from getaddrinfoVictor Ng2013-11-291-1/+1
|/ | | | | instead of using the first IPv4 address by default as per the documentation
* Support for atomic transactions (Django 1.6)David Cramer2013-11-281-1/+6
|
* Merge pull request #383 from gthb/fix-handler-init-missing-level-paramXavier Ordoquy2013-11-251-2/+2
|\ | | | | Allow level param in Django SentryHandler.__init__
| * Allow level param in Django SentryHandler.__init__Gunnlaugur Þór Briem2013-11-251-2/+2
|/ | | | For consistency with superclass and with logging.Handler
* Merge pull request #381 from mattrobenolt/wheelMatt Robenolt2013-11-132-0/+8
|\ | | | | Package up as a wheel
| * Automate publishingMatt Robenolt2013-11-131-0/+5
| |
| * Package up as a wheelMatt Robenolt2013-11-131-0/+3
|/
* Also updated the exclude versions.Xavier Ordoquy2013-11-081-2/+2
|
* Merge branch 'master' of github.com:getsentry/raven-pythonXavier Ordoquy2013-11-0826-40/+448
|\
| * Fixed linking errorXavier Ordoquy2013-11-051-1/+1
| |
| * Merge pull request #379 from jaraco/masterXavier Ordoquy2013-11-051-0/+2
| |\ | | | | | | Update base.py
| | * Update base.pyJason R. Coombs2013-11-051-0/+2
| |/ | | | | Document captureException kwargs parameter.
| * 3.5.23.5.2David Cramer2013-11-041-1/+1
| |
| * Merge pull request #378 from rory-geoghegan-ecometrica/masterDavid Cramer2013-11-042-8/+9
| |\ | | | | | | Fixed bug in logging.py where messages were not being printed to stderr.
| | * Fixed bug in logging.py where messages were not being printed to stderr.Rory Geoghegan2013-11-042-8/+9
| |/ | | | | | | | | Also took the opportunity to port the print statments in logbook.py to python3.
| * Fixed the default level value.Xavier Ordoquy2013-10-271-5/+3
| |
| * Merge pull request #319 from ianzeng/masterXavier Ordoquy2013-10-271-2/+6
| |\ | | | | | | filter logging level for Flask sentry middleware
| | * filter logging level for Flask sentry middlewarezengyi2013-06-081-2/+6
| | |
| * | 3.5.13.5.1David Cramer2013-10-251-1/+1
| | |
| * | Dont hard error when we are outside of request contextDavid Cramer2013-10-251-0/+8
| | |
| * | Merge pull request #375 from mjallday/geventXavier Ordoquy2013-10-171-1/+1
| |\ \ | | | | | | | | pass exception, not the value on failure
| | * | pass exception, not the value on failureMarshall Jones2013-10-171-1/+1
| |/ /
| * | Allow default tag context to be setDavid Cramer2013-10-101-1/+7
| | |
| * | Merge pull request #371 from razzmatazz/raven-flask-ignore-exception-configXavier Ordoquy2013-10-103-1/+47
| |\ \ | | | | | | | | Raven flask ignore exception config
| | * | tests/contrib/flask/tests.py: tests for the Flask ↵Saulius Menkevičius2013-10-091-1/+31
| | | | | | | | | | | | | | | | app.config["RAVEN_IGNORE_EXCEPTIONS"] configuration setting
| | * | docs/config/flask.rst: update documentation on exception filteringSaulius Menkevičius2013-10-091-0/+9
| | | |
| | * | raven/contrib/flask/__init__.py: respect the ↵Saulius Menkevičius2013-10-091-0/+7
| |/ / | | | | | | | | | app.config['RAVEN_IGNORE_EXCEPTIONS'] setting to ignore exceptions
| * | Merge pull request #370 from skorokithakis/masterXavier Ordoquy2013-10-043-2/+27
| |\ \ | | | | | | | | Add requests support.
| | * | Add requests support.Stavros Korokithakis2013-10-043-2/+27
| |/ /
| * | Merge pull request #366 from Stupeflix/masterXavier Ordoquy2013-10-011-1/+1
| |\ \ | | | | | | | | fixed management BaseCommand patching, ...
| | * | fixed management BaseCommand patching, using the cls argument of ↵Elias2013-10-011-1/+1
| |/ / | | | | | | | | | patch_base_command, not the *optionally* imported BaseCommand
| * | Merge pull request #364 from eandre/masterXavier Ordoquy2013-10-012-5/+19
| |\ \ | | | | | | | | Don't ignore records for all modules starting with "raven"
| | * | Don't ignore records for all modules starting with "raven"Andre Eriksson2013-10-012-5/+19
| |/ /
| * | clarify time_spent, and note that it should be an integerDavid Cramer2013-09-281-1/+2
| | |
| * | Merge pull request #354 from SilentCircle/masterDavid Cramer2013-09-261-5/+23
| |\ \ | | | | | | | | Add IPv6 support to UDP transport
| | * | Add IPv6 support for UDP transports (IPv4 is preferred)Josh Wright2013-09-011-4/+22
| | | |
| | * | rplit the netloc to better handle ipv6 addressesJosh Wright2013-08-311-1/+1
| | | |
| * | | 3.5.03.5.0David Cramer2013-09-241-1/+1
| | | |
| * | | Merge pull request #358 from hareevs/masterXavier Ordoquy2013-09-161-0/+2
| |\ \ \ | | | | | | | | | | Avoid TypeError when serializing 'bytes' in Python 3
| | * | | Fixed TypeError when serializing 'bytes' in Python 3Viktor Stískala2013-09-111-0/+2
| | | | |
| * | | | Update flake8 configurationDavid Cramer2013-09-143-3/+8
| | | | |
| * | | | Force rebase and precommit flake8David Cramer2013-09-143-1/+45
| |/ / /
| * | | Skip request read test for django 1.2.xXavier Ordoquy2013-09-101-4/+4
| | | |
| * | | Fixed u'' syntax and partial request read if not available.Xavier Ordoquy2013-09-101-2/+5
| | | |
| * | | Also handle the case were it's no a POST.Xavier Ordoquy2013-09-101-1/+1
| | | |