summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* fix: README formattingHEADmasterMarkus Unterwaditzer2021-01-181-1/+1
|
* doc: Add deprecation notice (#1370)Markus Unterwaditzer2021-01-181-2/+9
|
* Fix simple typo: postitively -> positively (#1358)Tim Gates2020-01-081-1/+1
| | | | There is a small typo in raven/contrib/tornado/__init__.py. Should read `positively` rather than `postitively`.
* Fix simple typo: survery -> survey (#1357)Tim Gates2020-01-071-1/+1
| | | Closes #1356
* fix: Do not catch all exceptions when dumping json (#1352)Markus Unterwaditzer2019-05-301-4/+4
|
* fix: Fix flake8 build againMarkus Unterwaditzer2019-05-121-1/+1
|
* fix: Upgrade flake8 job to py3.7Markus Unterwaditzer2019-05-121-1/+1
|
* fix: Remove broken flake8 pluginMarkus Unterwaditzer2019-05-101-2/+1
|
* fix: Stop support django devMarkus Unterwaditzer2019-05-061-2/+0
|
* fix: LintersMarkus Unterwaditzer2019-05-061-1/+1
|
* fix: Fix Flask testsMarkus Unterwaditzer2019-05-061-4/+0
|
* fix: django-dev does not work on older Py3Markus Unterwaditzer2019-05-061-1/+1
|
* ci: Use craft for publishing new releases (#1346)Anton Ovchinnikov2019-01-155-5/+48
| | | | | | | | * ci: Use craft for publishing new releases * fix: Update .craft.yml * fix: Remove probot conf files
* setup.py: add extra target for Sanic dependencies (#1299)Chris Adams2019-01-071-0/+1
| | | This ensures that someone installing sanic support will get the blinker dependency as well
* Release: 6.9.0 → 6.10.06.10.0Markus Unterwaditzer2018-12-192-2/+2
|
* doc: Add changelogMarkus Unterwaditzer2018-12-191-0/+1
|
* fix: Dont serialize nan when present in frame local vars (#1312)Markus Unterwaditzer2018-12-193-11/+21
| | | | | | | | | | * fix: Dont serialize nan when present in vars * fix: Simplify float serializer * fix: Tests * fix: Convert all numbers to string
* fix: Flake8 updatesMarkus Unterwaditzer2018-12-158-29/+33
|
* Fix link to sentry-python in README (#1304)Dimitris Bachtis2018-10-011-1/+1
|
* ref: Simplify travis setup (#1303)Markus Unterwaditzer2018-09-283-137/+48
| | | | | | | | | | * ref: Simplify travis setup * ref: Remove python 3.8 again * ref: Use Python 3.6 for linting (no sudo!) * ref: Only run flake8 in CI
* Use correct kwarg in handle_exception() for Flask (#1300)Lars Mikkelsen2018-09-252-1/+11
| | | | | | | | | | | | | | | | | | | | * Use correct kwarg in handle_exception() for Flask The handle_exception() method is registered as a receiver of the got_request_exception signal. According to both the [documentation][1] and [source code][2] of Flask the got_request_exception signal passes the exception as `exception` rather than a `exc_info`. This is likely to have gone unnoticed since captureException() calls sys.exc_info() in the absence of an exception. On Python 3 we can use `__traceback__` to explicitly construct the `exc_info`. [1]: http://flask.pocoo.org/docs/1.0/api/#flask.got_request_exception [2]: https://github.com/pallets/flask/blob/1.0.2/flask/app.py#L1732 * doc: Add changelog
* Update README.rstArmin Ronacher2018-09-201-2/+5
|
* chore(deprecation): fix collections.abc importsKevin James2018-09-152-3/+11
| | | | | | | | | As of Python 3.7, importing ABCs directly from collections has been deprecated. > DeprecationWarning: Using or importing the ABCs from 'collections' > instead of from 'collections.abc' is deprecated, and in 3.8 it > will stop working.
* Merge pull request #1301 from sapcc/followup_doc_removalMark Story2018-09-141-1/+0
|\ | | | | remove docs link to nowhere
| * remove link to nowhere after ea000f57b6f249974293003e97b84741323fadf5Maurice Schreiber2018-09-141-1/+0
|/
* ref: Kill docs in repoArmin Ronacher2018-08-2740-3774/+6
|
* Allow dict-style logging in breadcrumbs processingChristian Fueller2018-07-242-3/+28
|
* Pin pytest-django versionAshley Camba Garrido2018-07-111-1/+1
|
* fix: Fix stacktraces in some situations being the wong way round (#1261)Armin Ronacher2018-06-154-3/+8
|
* fix: Update travis to reflect tox configAshley Camba Garrido2018-06-131-2/+2
|
* fix: Adapt django builds with new django-pytest releaseAshley Camba Garrido2018-06-121-5/+6
|
* Release: 6.9.0.dev0 → 6.9.06.9.0Armin Ronacher2018-05-302-2/+2
|
* doc: update changelogArmin Ronacher2018-05-301-2/+2
|
* fix: Keep user in log data if it came from django (#1246)Armin Ronacher2018-05-301-6/+8
|
* Fix flake8 errorAshley Camba Garrido2018-05-231-1/+2
|
* Wrap getpwid in exception fixes:#1242Ashley Camba Garrido2018-05-231-2/+4
|
* Remove deploy stage for nowAshley Camba Garrido2018-05-191-7/+7
|
* Update travis and ChangelogAshley Camba Garrido2018-05-192-12/+3
|
* Release: 6.8.0 → 6.9.0.dev0Ashley Camba Garrido2018-05-192-4/+4
|
* [FIX] TypeError on LambdaClient(transport=...)Alan Justino da Silva2018-05-191-1/+1
| | | | | TypeError: __init__() got multiple values for keyword argument 'transport' Because it has `get()`ing the 'transport' keyword, instead of `pop()`ing it.
* Remove py3.3 from ci buildAshley Camba Garrido2018-05-191-6/+3
|
* doc: fix grammarDaniel Hahler2018-05-181-1/+1
| | | | s/any only/only/
* fix: Fix flake8 integrationArmin Ronacher2018-05-151-1/+1
|
* meta: Update changelogArmin Ronacher2018-05-151-1/+4
|
* feat: switch from culprit to transaction (#1238)Armin Ronacher2018-05-152-3/+6
|
* Release: 6.8.0.dev0 → 6.8.06.8.0Ashley Camba Garrido2018-05-122-4/+4
|
* Update changelogAshley Camba Garrido2018-05-121-1/+5
|
* meta: Added changelog entryArmin Ronacher2018-05-111-0/+4
|
* fix: Always consider remote configs enabled even without secret key. Fixes #1235Armin Ronacher2018-05-112-1/+2
|
* Lazily import pkg_resources for better import performance.Mike2018-05-102-13/+15
|