pybrake
pybrake copied to clipboard
Python exception notifier for Airbrake
The Airbrake Starlette middleware makes the assumption that the request client will always be set: https://github.com/airbrake/pybrake/blob/f50658879447d142e490bd23297c34144d62222e/src/pybrake/middleware/starlette.py#L50 but Starlette [defines the field as optional](https://github.com/encode/starlette/blob/a8b8856ce393a82ab4a714131085dbc4d658e34d/starlette/requests.py#L138C1-L144C1): ``` @property def client(self) -> typing.Optional[Address]: #...
Hi team, Pybrake raises deprecation warnings when used with the FastAPI middleware: ``` pybrake/middleware/fastapi.py:1: DeprecationWarning: ExceptionMiddleware is deprecated on `starlette.exceptions`. Import it from `starlette.middleware.exceptions` instead. from .starlette import init_pybrake pybrake/notifier.py:394:...
https://github.com/airbrake/pybrake/blob/f50658879447d142e490bd23297c34144d62222e/src/pybrake/middleware/django.py#L124 -> references get_full_name(), but per https://docs.djangoproject.com/en/4.2/topics/auth/customizing/ get_full_name is optional. Either update the documentation for Airbrake to make it clear that this method must be implemented, or better, update this...
If it's possible to filter health check requests from performance statistic for Flask applications?
Bumps [flask](https://github.com/pallets/flask) from 2.1.1 to 2.3.2. Release notes Sourced from flask's releases. 2.3.2 This is a security fix release for the 2.3.x release branch. Security advisory: https://github.com/pallets/flask/security/advisories/GHSA-m2qf-hxjv-5gpq, CVE-2023-30861 Changes: https://flask.palletsprojects.com/en/2.3.x/changes/#version-2-3-2...
Bumps [sqlparse](https://github.com/andialbrecht/sqlparse) from 0.4.2 to 0.4.4. Changelog Sourced from sqlparse's changelog. Release 0.4.4 (Apr 18, 2023) Notable Changes IMPORTANT: This release fixes a security vulnerability in the parser where a...
Bumps [sqlparse](https://github.com/andialbrecht/sqlparse) from 0.4.2 to 0.4.4. Changelog Sourced from sqlparse's changelog. Release 0.4.4 (Apr 18, 2023) Notable Changes IMPORTANT: This release fixes a security vulnerability in the parser where a...
Bumps [sqlparse](https://github.com/andialbrecht/sqlparse) from 0.4.2 to 0.4.4. Changelog Sourced from sqlparse's changelog. Release 0.4.4 (Apr 18, 2023) Notable Changes IMPORTANT: This release fixes a security vulnerability in the parser where a...
Bumps [sqlparse](https://github.com/andialbrecht/sqlparse) from 0.4.2 to 0.4.4. Changelog Sourced from sqlparse's changelog. Release 0.4.4 (Apr 18, 2023) Notable Changes IMPORTANT: This release fixes a security vulnerability in the parser where a...
The logging integration documented here is not working in aws lambdas https://docs.airbrake.io/docs/platforms/python/#logging-integration Its working fine when tried from local and from the ec2, but not working when lambdas as used....