Skip to content

Commit

Permalink
feat: bump CPP SDK to version 11.10.0 (#12749)
Browse files Browse the repository at this point in the history
* feat: bump CPP SDK to version 11.10.0

* ignore warning

* format
  • Loading branch information
Lyokone committed May 23, 2024
1 parent 85a517f commit 2e410a2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1122,7 +1122,10 @@ void FirebaseAuthPlugin::UpdateEmail(
firebase::auth::Auth* firebaseAuth = GetAuthFromPigeon(app);
firebase::auth::User user = firebaseAuth->current_user();

#pragma warning(push)
#pragma warning(disable : 4996)
firebase::Future<void> future = user.UpdateEmail(new_email.c_str());
#pragma warning(pop)

future.OnCompletion([result, firebaseAuth](
const firebase::Future<void>& completed_future) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# customers of the plugin.
cmake_minimum_required(VERSION 3.14)

set(FIREBASE_SDK_VERSION "11.6.0")
set(FIREBASE_SDK_VERSION "11.10.0")

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

0 comments on commit 2e410a2

Please sign in to comment.