* Refactored ``async_firebase.base.AsyncClientBase`` to take advantage of connection pool. So the HTTP client will be created once during class ``async_firebase.client.AsyncFirebaseClient`` instantiation.
3.3.0
Not secure
* `async_firebase` now works with python 3.12
3.2.0
Not secure
* ``AsyncFirebaseClient`` empower with advanced features to configure request behaviour such as timeout, or connection pooling. Example: python
from async_firebase.client import AsyncFirebaseClient, RequestTimeout
This will disable timeout client = AsyncFirebaseClient(..., request_timeout=RequestTimeout(None)) client.send(...)
3.1.1
Not secure
* [FIX] The push notification could not be sent to topic because ``messages.Message.token`` is declared as required attribute though it should be optional. ``messages.Message.token`` turned into Optional attribute.
3.1.0
Not secure
* The limit on the number of messages (>= 500) that can be sent using the ``send_all`` method has been restored.
3.0.0
Not secure
Remastering client interface * [BREAKING] The methods ``push`` and ``push_multicast`` renamed to ``send`` and ``send_multicast`` accordingly. * [BREAKING] The signatures of the methods ``send`` and ``send_multicast`` have been changed. * Method ``send`` accepts instance of ``messages.Message`` and returns ``messages.FCMBatchResponse`` * Method ``send_multicast`` accepts instance of ``messages.MulticastMessage`` and returns ``messages.FCMBatchResponse`` * New method ``send_all`` to send messages in a single batch has been added. It takes a list of ``messages.Message`` instances and returns ``messages.FCMBatchResponse``. * ``README.md`` has been updated to highlight different in interfaces for versions prior **3.x** and after * Improved naming: * ``messages.FcmPushMulticastResponse`` to ``messages.FCMBatchResponse`` * ``messages.FcmPushResponse`` to ``messages.FCMResponse`` * ``utils.FcmReponseType`` to ``utils.FCMResponseType`` * ``utils.FcmResponseHandler`` to ``utils.FCMResponseHandlerBase`` * ``utils.FcmPushResponseHandler`` to ``utils.FCMResponseHandler`` * ``utils.FcmPushMulticastResponseHandler`` to ``utils.FCMBatchResponseHandler`` * Type annotations and doc string were updated according to new naming.