Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update upstream methods to indicate they are now decommissioned. #6508

Merged
merged 2 commits into from
Nov 13, 2024
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
2 changes: 1 addition & 1 deletion firebase-messaging-directboot/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version=24.0.4
version=24.1.0
latestReleasedVersion=24.0.3
android.enableUnitTestBinaryResources=true
3 changes: 2 additions & 1 deletion firebase-messaging/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Unreleased
* [deprecated] Deprecated additional FCM upstream messaging methods. See the
* [deprecated] Deprecated additional FCM upstream messaging methods and updated
all upstream methods to indicate they are now decommissioned. See the
[FAQ](https://firebase.google.com/support/faq#fcm-23-deprecation) for more
details.
* [changed] Changed WithinAppServiceConnection's ScheduledThreadPoolExecutor's
Expand Down
2 changes: 1 addition & 1 deletion firebase-messaging/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version=24.0.4
version=24.1.0
latestReleasedVersion=24.0.3
android.enableUnitTestBinaryResources=true
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,8 @@ public Task<Void> unsubscribeFromTopic(@NonNull String topic) {
* <p>When there is an active connection the message will be sent immediately, otherwise the
* message will be queued up to the time to live (TTL) set in the message.
*
* @deprecated FCM upstream messaging is decommissioned. Learn more in the
* @deprecated This function is actually <strong>decommissioned</strong> along with all of FCM
* upstream messaging. Learn more in the
* <a href="https://firebase.google.com/support/faq#fcm-23-deprecation">FAQ about FCM features
* deprecated in June 2023</a>.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,8 @@ public void onDeletedMessages() {}
*
* @param msgId of the upstream message sent using {@link FirebaseMessaging#send}.
*
* @deprecated FCM upstream messaging is decommissioned. Learn more in the
* @deprecated This function is actually <strong>decommissioned</strong> along with all of FCM
* upstream messaging. Learn more in the
* <a href="https://firebase.google.com/support/faq#fcm-23-deprecation">FAQ about FCM features
* deprecated in June 2023</a>.
*/
Expand All @@ -141,7 +142,8 @@ public void onMessageSent(@NonNull String msgId) {}
* @param msgId of the upstream message sent using {@link FirebaseMessaging#send}.
* @param exception description of the error, typically a {@link SendException}.
*
* @deprecated FCM upstream messaging is decommissioned. Learn more in the
* @deprecated This function is actually <strong>decommissioned</strong> along with all of FCM
* upstream messaging. Learn more in the
* <a href="https://firebase.google.com/support/faq#fcm-23-deprecation">FAQ about FCM features
* deprecated in June 2023</a>.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,8 @@ public String getFrom() {
/**
* Gets the message destination.
*
* @deprecated FCM upstream messaging is decommissioned. Learn more in the
* @deprecated This function is actually <strong>decommissioned</strong> along with all of FCM
* upstream messaging. Learn more in the
* <a href="https://firebase.google.com/support/faq#fcm-23-deprecation">FAQ about FCM features
* deprecated in June 2023</a>.
*/
Expand Down
Loading