682 results found
-
Support for Remix
Add Remix (https://remix.run) as one of the supported frameworks to deploy apps. It is rather similar to Next.js in many ways so that should be possible.
5 votes -
Data Transformation With CEL expression
I love that data connect supports
{.._expr: "auth.uid"}
to define server value based on Firebase auth token.What about other CEL operations?
I want the ability to perform simple transformation using GraphQL variables, Firebase auth token and current timestamp. For example:
_expr: "'hello from ' + auth.email"
I want the ability to combine data from different sources. Like execute a query and then use its result to perform another query or mutation. CEL expression can help cross reference data in previous steps.
5 votes -
5 votes
-
Advanced Vector Embeddings with pgvector
Create and store advanced embeddings for Data Connect types in pgvector through support of configurable chunking strategies and automatic embedding by annotations.
5 votes -
Support offset-based document access and pagination
There should be an easy way to get a specific document by index in a query:
// this query should work as it's read, if i wanted to use gte i'd use a where
query(this.collection, orderBy('anything', 'asc'), startAt(index), limit(1))
5 votes -
Support adaptive app icons
Android 8.0 (API level 26) introduced adaptive app icons, which are made out of background and foreground layer. Apps that have minSDK = 26 don't have to specify "flat" PNG icons. However, App Distribution doesn't support adaptive app icons, and as a result weird icon with cropped app name is displayed in the App Tester app. App Distribution should support adaptive app icons by parsing icon XML, obtaining foreground and background assets, and based on this render the icon.
5 votes -
Dark mode for firebase uservoice
Can't you activate a dark mode in uservoice? Don't get why dark mode still isn't the default in 2024. Am I the only one working at night :) ?
5 votes -
Supports adding Proxy to all firebase plugins
Recently, gRPC added support for proxies [https://github.com/grpc/grpc-dart/issues/33]. It would be great if the same feature were added to all Firebase plugins for better debugging purposes behind firewalls or for users located in countries with high censorship.
5 votes -
Encrypted Collections in Firestore
Ability to mark certain collections to be Encrypted so it's not readable even in the firebase console.
There are some application types that require this sort of behaviour to increase security.
Say you are building a messaging app, you would not want the messages between your users to be seen on the console.
5 votes -
Firebase Test Lab IAM should allow making Test Results, with records and what not, fully publicly accessible
See https://github.com/google/android-fhir/issues/2218:
For e.g. public open source projects, it would be very useful if Firebase Test Lab IAM could be configured to allow making Test Results, with records and what not, fully publicly accessible.
According to the discussion on Firebase Support Case 10251960, "Making test results publicly available is something that's not yet possible on our end. "
5 votes -
Manage minInstances setting of pinned functions of previous releases
Pinned functions of previous releases keep their minInstances setting. E.g. after deploying 10 times with a minInstances setting of 1, there will be 10 idling instances but only the newest revision handles all the traffic. Yet the remaining 9 instances' idle time is billed as well because the function is still addressable through the revision tag.
This also affects the maxInstances setting: With a maxInstances setting of 10, the newest Cloud Run revision which handles 100% of the traffic won't be able to scale anymore.
As far as I know, the only way to handle this right now is to…
5 votes -
Pass all cookies to Cloud Functions or Cloud Run
Right now only a _session Cookie is passed.
https://firebase.google.com/docs/hosting/manage-cache#usingcookies5 votes -
Make the functions npm dependencies cache list public
An article and youtube video explains how to optimize cold boots by updating dependencies to 'commonly used versions' as this will increase the chance that the dependencies can already be found in the 'dependencies cache'.
https://medium.com/@duhroach/improving-cloud-function-cold-start-time-2eb6f5700f6
This is quite vague and a bit hard to reason about. Would it be possible to see a list of package names and version info for all packages in the dependencies cache?
5 votes -
A/B Testing activation and goal event with event params
Currently in A/B Testing users can set activation and goal events using only event names.
It would be awesome to have an option to use a generic event with its params. Eg. using a
screen_view
event withscreen_name
as activation event for entering a specific screen instead of creating a custom event just for testing purpose.It would be beneficial for heavy A/B Testing users, especially taking into account that they can create only 500 custom event names. And don't make me tell you that creating a custom event or two for every A/B test can burn those 500 event…
5 votes -
Customise device name for Events DebugView's device selector
The device selector mentioned here: https://firebase.google.com/docs/analytics/debugview#device_selector consist of only generic device names (e.g. x86 64 for iOS simulator). For our app we can see many sessions (e.g. 6/8 right now) and all of them show "x86 64". It always takes few minutes to find "my" session for debugging.
It would be nice to have a way e.g. to customize device name (e.g. via Firebase API Analytics.setDeviceName("Przemyslaw's simulator")) so a developer could find their session immediately.5 votes -
List of all error codes in auth (Not the admin SDK)
Currently there is only a list of error codes the Admin SDK can receive, not for the web sdk.
5 votes -
Ability to select and copy fields and values in firestore document
Ability to select and copy fields and values in firestore document, more like making everything selectable text.
5 votes -
Hosting CDN cache stale-while-revalidate
Time-to-first-byte from Firebase Functions is usually slow (more than 500ms) even without cold start, sometimes (with cold starts) TTFB becomes absolutely unacceptable for projects where performance is important. SSRed HTML is also not Brotli compressed as static files.
This is a really big problem to deploy SSR web apps to Firebase IMO, and cache SWR at the CDN layer (edge) would solve it perfectly.5 votes -
Possibility to disable the automatic event "notification_receive" (Android) due to the high triggering of this event
I would like to request the inclusion of the possibility of disabling the automatic event "notificationreceive" (Android) due to the high firing of this event, which can cause an inflation of costs for Google Analytics 360 customers who charge based on the number of events.
And in some situations it is necessary to use push notifications, but the "notificationreceive" event may not be so useful, it being feasible to disable it to reduce tool 360 costsA suggestion would be to make it possible to disable it in the same way as we can disable the automatic event…
5 votes -
Wildcard index exemptions
Firestore automatically indexes all fields in all collections adding to storage size and slowing write performance.
We can add single-field exemptions but we need to list all fields separately and there is a database-wide limit of 200 field exemptions.
In a highly optimised use case we would want to index only specific fields that we know we query on, and just exclude all others.
It's almost like the current behaviour is a database for novices, but we can't optimise for serious production.
We need either a wildcard exclusion, or effectively just a switch/setting that says "only fields with explicit index…
5 votes
- Don't see your idea?