Skip to content

Commit a0bc210

Browse files
committed
Merge branch 'master' into error-handling-revamp
2 parents 8bf4118 + 150a855 commit a0bc210

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@
55
- [changed] Updated the `firebase_admin.instance_id` module to use the new
66
shared exception types. The type `instance_id.ApiCallError` was removed.
77

8+
# v2.18.0
9+
10+
- [added] Added support for specifying the analytics label for notifications.
11+
- [added] Added support for arbitrary key-value pairs in `messaging.ApsAlert`.
12+
- [changed] The `WebpushFcmOptions` type is now deprecated. Developers should use
13+
the PEP8 compliant type name `WebpushFCMOptions` instead.
14+
- [added] Developers can now test their Database API calls by directing the
15+
SDK traffic to the RTDB emulator. Set the `FIREBASE_DATABASE_EMULATOR_HOST`
16+
environment variable to specify the emulator endpoint in `host:port` format.
17+
818
# v2.17.0
919

1020
- [added] Added new `send_all()` and `send_multicast()` APIs to the

firebase_admin/__about__.py

Lines changed: 1 addition & 1 deletion
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.17.0'
17+
__version__ = '2.18.0'
1818
__title__ = 'firebase_admin'
1919
__author__ = 'Firebase'
2020
__license__ = 'Apache License 2.0'

0 commit comments

Comments
 (0)