July 2023 Summaries
2 posts from Firebase
Filter
Month:
Year:
Post Summaries
Back to Blog
Cloud Functions for Firebase 2nd gen is now generally available for production use, bringing Cloud Run-based concurrency that lets individual function instances handle multiple requests simultaneously, improving traffic-spike handling and reducing cold starts. The release also introduces public-preview Python support alongside Node.js, enabling developers to use libraries such as TensorFlow, NumPy, and pandas while retaining Firebase integrations including triggers, the Emulator Suite, and App Check. New Eventarc-powered triggers support Firebase Alerts and custom events, while established triggers such as HTTPS, callable, and Firestore remain available; Authentication and Analytics event support is still pending, though first- and second-generation functions can run together. Migration can be performed incrementally in the same codebase by updating imports, trigger definitions, configuration, and traffic routing, with Firebase offering tutorials, samples, CLI-generated starter projects, support resources, and feedback channels.
Jul 31, 2023
747 words in the original blog post.
Anonymous Firebase Authentication can reduce onboarding friction by letting users try an app without immediately creating a password-based or federated account, while still giving developers a stable UID to associate with cloud-stored data such as Firestore records. Users can later convert their anonymous account into a permanent account by linking credentials such as Google, Apple, or email/password, preserving the original UID and all related data. Because anonymous accounts cannot be recovered after sign-out or used across devices, apps should prompt users to upgrade when they reach features that benefit from a persistent identity, such as sharing content. Developers should also remove abandoned anonymous accounts and their associated data, restrict sensitive capabilities through client logic, Security Rules, and Cloud Functions, and use Firebase App Check rather than anonymous authentication to verify that requests originate from a legitimate app.
Jul 13, 2023
1,934 words in the original blog post.