Home / Companies / Firebase / Blog / September 2026

September 2026 Summaries

3 posts from Firebase

Filter
Month: Year:
Post Summaries Back to Blog
Firebase has introduced spend caps in Public Preview to help developers limit costs for eligible services including Firebase AI Logic, Cloud Functions for Firebase, and Firebase App Hosting. Configured through the Firebase console’s Accounts & budgets section, caps can be set per service and issue email notifications at 50%, 80%, and 100% of the selected budget before pausing the affected service once the limit is reached. Developers can also use the Google Cloud console for more advanced budget settings and to lift caps, though paused services may require up to an hour to resume. Spend caps are not instantaneous hard limits because usage-reporting delays may allow several minutes of additional billable consumption, and their calculations use gross standard pricing before credits, free tiers, and discounts, so users are advised to set budgets below their absolute spending limits.
Sep 14, 2026 677 words in the original blog post.
Gemini text-to-speech models, available through Firebase AI Logic, let mobile and web apps generate and stream natural, customizable audio directly to client devices, reducing latency and avoiding server-side audio pipelines. Suggested applications include interactive language-learning conversations, hands-free reading of recipes or guides, accessibility features and spoken summaries, expressive storytelling, and multi-speaker podcasts or dialogue simulations. Built on a large language model, Gemini TTS can interpret both content and delivery, with controls for voice identity, environment, mood, accent, pacing, speaking style, and language, including more than 30 multilingual voices and dynamic language switching. The service produces continuous PCM audio streams for immediate playback and is supported across Swift, Kotlin, Java, JavaScript, Dart, and Unity, enabling developers to add context-aware voice features through Firebase AI Logic.
Sep 09, 2026 1,133 words in the original blog post.
Firebase Authentication and Cloud Firestore can support e-commerce carts without requiring visitors to register before shopping by assigning each visitor an anonymous, cryptographically verified Firebase identity and storing cart items under UID-scoped Firestore paths. Security Rules restrict users to their own carts, permit only validated quantity fields, prevent client-side price manipulation, and require order-history queries to explicitly filter by the authenticated owner because rules do not filter query results. When guests create new accounts, credentials can be linked while retaining the same UID and cart, while returning users require deterministic cart reconciliation into their existing account with bounded quantities. Confirmed orders should be created only by a trusted Cloud Run backend or Firebase Callable Function, which verifies Firebase ID tokens, obtains canonical product prices, calculates totals server-side, writes immutable order records with administrative privileges, and clears carts after checkout.
Sep 01, 2026 2,321 words in the original blog post.