8000 Bumped version to 2.18.0 by hiranya911 · Pull Request #333 · firebase/firebase-admin-python · GitHub
[go: up one dir, main page]

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

-

# v2.18.0

- [added] Added support for specifying the analytics label for notifications.
- [added] Added support for arbitrary key-value pairs in `messaging.ApsAlert`.
- [changed] The `WebpushFcmOptions` type is now deprecated. Developers should use
the PEP8 compliant type name `WebpushFCMOptions` instead.
- [added] Developers can now test their Database API calls by directing the
SDK traffic to the RTDB emulator. Set the `FIREBASE_DATABASE_EMULATOR_HOST`
environment variable to specify the emulator endpoint in `host:port` format.

# v2.17.0

- [added] Added new `send_all()` and `send_multicast()` APIs to the
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.17.0'
__version__ = '2.18.0'
__title__ = 'firebase_admin'
__author__ = 'Firebase'
__license__ = 'Apache License 2.0'
Expand Down
0