Skip to content

Commit

Permalink
Bumped version to 2.9.1 (#137)
Browse files Browse the repository at this point in the history
* Bumped version to 2.9.1

* Changlog updates

* Changlog url

* trigger cla check
  • Loading branch information
avishalom authored Mar 15, 2018
1 parent 9564ce0 commit 7e0d47e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 7 deletions.
21 changes: 15 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,34 @@
# Unreleased

-

# v2.9.1

### Cloud Messaging

- [changed] Improved error handling in FCM by mapping more server-side
errors to client-side error codes.
errors to client-side error codes. See [documentation](https://firebase.google.com/docs/cloud-messaging/admin/errors).
- [changed] The `messaging` module now supports specifying an HTTP timeout
for all egress requests. Pass the `httpTimeout` option
to `firebase_admin.initialize_app()` before invoking any functions in
`messaging`.

# v2.9.0


### Cloud Messaging

- [feature] Added the `firebase_admin.messaging` module for sending
Firebase notifications and managing topic subscriptions.
Firebase notifications and managing topic subscriptions.

### Authentication

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

Expand Down
2 changes: 1 addition & 1 deletion firebase_admin/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

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

__version__ = '2.9.0'
__version__ = '2.9.1'
__title__ = 'firebase_admin'
__author__ = 'Firebase'
__license__ = 'Apache License 2.0'
Expand Down

0 comments on commit 7e0d47e

Please sign in to comment.