Skip to content

Commit 2e410a2

Browse files
authored
feat: bump CPP SDK to version 11.10.0 (#12749)
* feat: bump CPP SDK to version 11.10.0 * ignore warning * format
1 parent 85a517f commit 2e410a2

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

packages/firebase_auth/firebase_auth/windows/firebase_auth_plugin.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1122,7 +1122,10 @@ void FirebaseAuthPlugin::UpdateEmail(
11221122
firebase::auth::Auth* firebaseAuth = GetAuthFromPigeon(app);
11231123
firebase::auth::User user = firebaseAuth->current_user();
11241124

1125+
#pragma warning(push)
1126+
#pragma warning(disable : 4996)
11251127
firebase::Future<void> future = user.UpdateEmail(new_email.c_str());
1128+
#pragma warning(pop)
11261129

11271130
future.OnCompletion([result, firebaseAuth](
11281131
const firebase::Future<void>& completed_future) {

packages/firebase_core/firebase_core/windows/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# customers of the plugin.
55
cmake_minimum_required(VERSION 3.14)
66

7-
set(FIREBASE_SDK_VERSION "11.6.0")
7+
set(FIREBASE_SDK_VERSION "11.10.0")
88

99
if (EXISTS $ENV{FIREBASE_CPP_SDK_DIR}/include/firebase/version.h)
1010
file(READ "$ENV{FIREBASE_CPP_SDK_DIR}/include/firebase/version.h" existing_version)

0 commit comments

Comments
 (0)