Skip to content

Commit 7e0d47e

Browse files
authored
Bumped version to 2.9.1 (#137)
* Bumped version to 2.9.1 * Changlog updates * Changlog url * trigger cla check
1 parent 9564ce0 commit 7e0d47e

File tree

2 files changed

+16
-7
lines changed

2 files changed

+16
-7
lines changed

CHANGELOG.md

+15-6
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,34 @@
11
# Unreleased
22

3+
-
4+
5+
# v2.9.1
6+
7+
### Cloud Messaging
8+
39
- [changed] Improved error handling in FCM by mapping more server-side
4-
errors to client-side error codes.
10+
errors to client-side error codes. See [documentation](https://firebase.google.com/docs/cloud-messaging/admin/errors).
11+
- [changed] The `messaging` module now supports specifying an HTTP timeout
12+
for all egress requests. Pass the `httpTimeout` option
13+
to `firebase_admin.initialize_app()` before invoking any functions in
14+
`messaging`.
515

616
# v2.9.0
717

8-
918
### Cloud Messaging
1019

1120
- [feature] Added the `firebase_admin.messaging` module for sending
12-
Firebase notifications and managing topic subscriptions.
21+
Firebase notifications and managing topic subscriptions.
1322

1423
### Authentication
1524

1625
- [added] The ['verify_id_token()'](https://firebase.google.com/docs/reference/admin/python/firebase_admin.auth#verify_id_token)
17-
function now accepts an optional `check_revoked` parameter. When `True`, an
18-
additional check is performed to see whether the token has been revoked.
26+
function now accepts an optional `check_revoked` parameter. When `True`, an
27+
additional check is performed to see whether the token has been revoked.
1928
- [added] A new
2029
['auth.revoke_refresh_tokens(uid)'](https://firebase.google.com/docs/reference/admin/python/firebase_admin.auth#revoke_refresh_tokens)
2130
function has been added to invalidate all tokens issued to a user.
22-
- [added] A new `tokens_valid_after_timestamp` property has been added to the
31+
- [added] A new `tokens_valid_after_timestamp` property has been added to the
2332
['UserRecord'](https://firebase.google.com/docs/reference/admin/python/firebase_admin.auth#userrecord),
2433
class indicating the time before which tokens are not valid.
2534

firebase_admin/__about__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
"""About information (version, etc) for Firebase Admin SDK."""
1616

17-
__version__ = '2.9.0'
17+
__version__ = '2.9.1'
1818
__title__ = 'firebase_admin'
1919
__author__ = 'Firebase'
2020
__license__ = 'Apache License 2.0'

0 commit comments

Comments
 (0)