Async-firebase

Latest version: v3.12.0

Safety actively analyzes 724109 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 5 of 9

2.3.0

Not secure
Method ``client.build_android_config`` has been adjusted, so when ``data`` parameter is passed but the value is not set (equal to `None`),
turn in into ``"null"``

2.2.0

Not secure
async_firebase now works with **Python 3.11**
* Removes ``asynctest`` as it is no longer maintained [ref](https://github.com/Martiusweb/asynctest/issues/158#issuecomment-785872568)

2.1.0

Not secure
* ``messages.Notification`` object now supports attribute ``image`` that allows to set image url of the notification

2.0.3

Not secure
A few new error types have been added to support the errors that FCM API may return:
- InvalidArgumentError
- FailedPreconditionError
- OutOfRangeError
- UnauthenticatedError
- PermissionDeniedError
- NotFoundError
- AbortedError
- AlreadyExistsError
- ConflictError
- ResourceExhaustedError
- CancelledError
- DataLossError
- UnknownError
- InternalError
- UnavailableError
- DeadlineExceededError

2.0.2

Not secure
* Adjust type annotations for some errors:

**async_firebase/errors.py**
python

class AsyncFirebaseError(BaseAsyncFirebaseError):
"""A prototype for all AF Errors.

This error and its subtypes and the reason to rise them are consistent with Google's errors,
that may be found in `firebase-admin-python` in `firebase_admin.exceptions module`.
"""

def __init__(
self,
code: str,
message: str,
<<< cause: t.Optional[Exception] = None,
>>> cause: t.Union[httpx.HTTPStatusError, httpx.RequestError, None] = None,
http_response: t.Optional[httpx.Response] = None,
):


**async_firebase/messages.py**
python
class FcmPushResponse:
"""The response received from an individual batched request to the FCM API.

The interface of this object is compatible with SendResponse object of
the Google's firebase-admin-python package.
"""

def __init__(
self,
fcm_response: t.Optional[t.Dict[str, str]] = None,
<<< exception: t.Optional[Exception] = None
>>> exception: t.Optional[AsyncFirebaseError] = None
):

2.0.1

Not secure
* Fix ``TypeError`` on create ``AsyncFirebaseError`` subclass instance

Page 5 of 9

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.