-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update v3.0.0's changelog sentry example #19
Conversation
Codecov Report
@@ Coverage Diff @@
## master #19 +/- ##
=======================================
Coverage 93.51% 93.52%
=======================================
Files 17 18 +1
Lines 694 695 +1
=======================================
+ Hits 649 650 +1
Misses 45 45
Continue to review full report at Codecov.
|
CHANGELOG.md
Outdated
@@ -12,7 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org). | |||
- Add type hints | |||
- Increase test coverage | |||
- Bugfix: lpipe.sqs.delete_message_batch called boto3 incorrectly | |||
- Breaking: sentry-sdk no longer a required dependency, install with `lpipe = {"extras": ["sentry"], "version": "*"}`, and enable it by setting `process_event(exception_handler=lpipe.contrib.sentry.capture)` | |||
- Breaking: sentry-sdk no longer a required dependency, install with `lpipe = {extras: ["sentry"], version: "*"}`, and enable it by setting `from lpipe.contrib import sentry ... process_event(exception_handler=sentry.capture)` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
from lpipe.contrib import sentry; process_event(exception_handler=sentry.capture)
Improvement in this PR #20 |
#20 fixed this, but feel free to use this PR to fix the extras example
|
No description provided.