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

Enable preferRest option by default for Firestore functions #6147

Merged
merged 4 commits into from
Oct 16, 2023
Merged
Show file tree
Hide file tree
Changes from 2 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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
- Enable preferRest option by default for Firestore functions. (#6147)
blidd-google marked this conversation as resolved.
Show resolved Hide resolved
- Fixed bug where `functions:secrets:set` didn't remove stale versions of a secret. (#6080)
- Fixed bug where `firebase deploy --only firestore:named-db` didn't update rules. (#6129)
- Fixed issue where Flutter Web is not detected as a web framework. (#6085)
1 change: 1 addition & 0 deletions src/functions/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -410,5 +410,6 @@ export function loadFirebaseEnvs(
return {
FIREBASE_CONFIG: JSON.stringify(firebaseConfig),
GCLOUD_PROJECT: projectId,
FIRESTORE_PREFER_REST: "true",
};
}