From 602e376f0c3c63d9d07baf03194a1db387f4ef42 Mon Sep 17 00:00:00 2001 From: a-maurice Date: Mon, 10 Aug 2026 14:30:14 -0700 Subject: [PATCH] Disable new Messaging test on Desktop and Emulator --- messaging/integration_test/src/integration_test.cc | 3 +++ release_build_files/readme.md | 7 +++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/messaging/integration_test/src/integration_test.cc b/messaging/integration_test/src/integration_test.cc index fc33313998..96f5d22b0b 100644 --- a/messaging/integration_test/src/integration_test.cc +++ b/messaging/integration_test/src/integration_test.cc @@ -560,6 +560,9 @@ TEST_F(FirebaseMessagingTest, TestRegistrationOnInitEnabled) { TEST_F(FirebaseMessagingTest, TestRegisterAndUnregister) { TEST_REQUIRES_USER_INTERACTION_ON_IOS; + SKIP_TEST_ON_DESKTOP; + SKIP_TEST_ON_ANDROID_EMULATOR; + EXPECT_TRUE(RequestPermission()); // Note that these methods should only work if the newer registration diff --git a/release_build_files/readme.md b/release_build_files/readme.md index 32d7a220ad..fb4c4e498d 100644 --- a/release_build_files/readme.md +++ b/release_build_files/readme.md @@ -613,13 +613,16 @@ workflow use only during the development of your app, not for publicly shipping code. ## Release Notes +### Upcoming +- Changes + - Messaging: Added new Registration methods using Installation Ids. + Deprecated old Token based methods. + ### 13.11.0 - Changes - General (Android): Update to Firebase Android BoM version 34.17.0. - General (iOS): Update to Firebase Cocoapods version 12.17.0. - Realtime Database (Desktop): Fixed an intermittent use-after-free crash (`ACCESS_VIOLATION`) when detaching a listener while a WebSocket listen response is pending. - - Messaging: Added new Registration methods using Installation Ids. - Deprecated old Token based methods. ### 13.10.0 - Changes