From 6035344b9f3a007c2756ce0d3c3d0bd226991998 Mon Sep 17 00:00:00 2001 From: hiranya911 Date: Wed, 21 Aug 2019 10:28:18 -0700 Subject: [PATCH 1/2] Bumped version to 2.18.0 --- CHANGELOG.md | 11 +++++++++++ firebase_admin/__about__.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5fc1a759e..458ef7b90 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,17 @@ - +# 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 diff --git a/firebase_admin/__about__.py b/firebase_admin/__about__.py index a5141c5e3..5a2f77e32 100644 --- a/firebase_admin/__about__.py +++ b/firebase_admin/__about__.py @@ -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' From 7c1f69e15ab5cc3fe7ad7eedafe2f7f9a03d4b5d Mon Sep 17 00:00:00 2001 From: hiranya911 Date: Wed, 21 Aug 2019 10:29:42 -0700 Subject: [PATCH 2/2] Removing extra whitespace --- CHANGELOG.md | 1 - 1 file changed, 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 458ef7b90..0c6378f49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,6 @@ # 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