Skip to content

Commit

Permalink
Bump raven to 1.0.4 and send sentry_version with auth header
Browse files Browse the repository at this point in the history
  • Loading branch information
dcramer committed Jan 18, 2012
1 parent 0692cc3 commit 4205d17
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
1.0.4

* Corrected a bug in setup_logging.
* Raven now sends "sentry_version" header which is the expected
server version.

1.0.3

* Handle more edge cases on stack iteration.
Expand Down
1 change: 1 addition & 0 deletions raven/utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ def get_auth_header(signature, timestamp, client, api_key=None):
('sentry_timestamp', timestamp),
('sentry_signature', signature),
('sentry_client', client),
('sentry_version', '2.0'),
]
if api_key:
header.append(('sentry_key', api_key))
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

setup(
name='raven2',
version='1.0.3',
version='1.0.4',
author='David Cramer',
author_email='[email protected]',
url='http://github.com/dcramer/raven',
Expand Down

0 comments on commit 4205d17

Please sign in to comment.