1577 results found
-
Add an argument that automatically chunks cloud function deployments according to the maximal possible quota
When deploying multiple cloud functions at once via
firebase deploy --only functions
we frequently run into quota issues like:
functions: got "Quota Exceeded" error while trying to update projects/.... Waiting to retry...
It never retries though.
It would make it way easier if you could add an argument to the deployment command like:
firebase deploy --only functions --chunked 50
4 votes -
Use of FirebaseMessagingException should be possible in unit tests
The
FirebaseMessagingException
class issealed
with aninternal
constructor and no interface. This means we cannot test our code that handles this exception because we can't create this type of exception nor can we mock it due to the lack of an interface.4 votes -
Duplicate document in collection in Firestore
Duplicate document in collection in Firestore
4 votes -
Web API Key
In Firebase Console -> Project settings:
Add (?) for "Web API Key" what it is used for or maybe provide a link to docs.4 votes -
Separate idx/dev.nix into a flake.nix and a simpler idx config file.
For experienced nix users, the
channel
andpackages
parameters overlap with flakes enough that there's no need to wrap them up in a bespoke DSL. If a project already has a flake.nix that includes a devShell, it's not clear how this should be wired up.For inexperienced nix users, being forced to learn Nix to edit the idx-specific entry seems unnecessary.
4 votes -
Deploy Private HTTP Firebase Functions without "Allow unauthenticated"
By default HTTP Firebase Functions are made public. In Google Console they are marked as "Allow unauthenticated" because they will allow all callers, without checking authentication.
I would like an option to deploy them privately.
Example:
const privateFunction = onRequest(
{
allowUnauthenticated: false,
},
(req, res) => {
res.status(200).send(req.body);
},
);4 votes -
su: Permission denied
Allow switch to superuser account (root)..
# .idx/dev.nix packages = [ pkgs.sudo ];
test-2596052:~/test$ sudo sudo: /etc/sudo.conf is owned by uid 65534, should be 0 sudo: /usr/bin/sudo must be owned by uid 0 and have the setuid bit set
I get that error while using sudo installed from nix package
4 votes -
Switching between node versions and angular version
It would be really cool for the IDX if you would be able to switch between different node version and choose the specific angular version you want for your project, also adding gitlab options would be nice too, thank you
4 votes -
Add support for deleting directories and their contents in Firebase Storage
Iterating over list of files and deleting each is wasteful as a call has to be made using the API for each file, and this can get expensive if a lot of delete operations are involved.
I suggest a single API call that deletes all data given the required parameters. Further, the response from Firebase API will be that it has received the instruction to delete, and not when it has completed deleting as the operation might take quite a while.
A function could look like this.
deleteFolder({
url: 'path',
responsetype: 'requestreceived', // Another could be 'deletecomplete'…4 votes -
We need NativeScript Project Support
We need NativeScript Project Support
4 votes -
Build Firebase Functions in IDX
It would be nice to see an easy way to build/deploy Firebase Functions in IDX. The work you've done for firebase hosting is fantastic. It would be nice to be able to create and deploy functions the same way.
4 votes -
Add velocity for ANR alert mechanism in Android App
We have been using Firebase to monitor and improve the performance of our Android app.
I am reaching out to you today to request the addition of a velocity alert mechanism for Application Not Responding (ANR) incidents in Firebase. Currently, we find that identifying and addressing ANRs promptly is crucial for maintaining a positive user experience. However, a velocity alert mechanism would significantly enhance our ability to proactively address issues.
Here are a few reasons why we believe a velocity alert mechanism for ANRs would be beneficial:
Early Detection: With a velocity alert, we can detect a sudden increase in…
4 votes -
Intelljidea IDE support for Flutter
I use Intellij Idea a lot to develop in Flutter, I would greatly appreciate if you can work on intellijidea for Flutter, Thanks
4 votes -
Firebase SDK support for winui 3 applications
I need a complete Firebase SDK: authentication, Firestore with cache, functions etc. for my winui 3 applications.
4 votes -
Linear integration
When a crashlytics issue occurs, it creates a new issue in linear with a link to the crashlytics dashboard.
When a crashlytics issue is closed, close the associated issue in linear.
When a linear issue is closed, close the associated issue in crashlytics.
When a crashlytics issue receives velocity alerts, it increases issue priority in linear.4 votes -
Show logs for flutter simulators
There doesn't seem to be an easy way (that I can find) to see run logs of any of the simulators for Flutter.
I did see the device log for iOS, but not anywhere you can see print statements.
4 votes -
Feature Request: .NET Core Support for Google IDX
I've been an avid user of Google IDX, and I must say, the experience has been nothing short of exceptional. The fusion of web-based IDE prowess with AI features is indeed groundbreaking.
I would like to propose an exciting addition to further elevate Google IDX's versatility— the integration of .NET Core support. Considering the platform's commitment to open source projects and its web-based efficiency, incorporating .NET Core would be a game-changer. This enhancement would not only broaden the user base but also empower developers to harness the full potential of the .NET ecosystem seamlessly.
I believe the synergy between Google…
4 votes -
Lower the time needed for spinning up VMs
Spinning up VMs can take some time, which is annoying as I have no access to my IDX workspace during this time. Would it be possible to be more specific about the number of VMs needed in each region? I mean, you know how many users you have in each region, and you could maximize efficiency by counting the time of day in each region. I suppose it would even be possible to make predictions based on the data collected.
4 votes -
RecaptchaVerifier should provide access to the shared secret
I'm creating a Contact form in a React app, which stores the user input in firebase. I'd like to secure the form with a visible reCAPTCHA, and I'm trying out firebase's built-in reCAPTCHA functionality.
firebase/auth/RecaptchaVerifier
does provide a callback, which can be used to sign in a user, and documentation shows it working when signing in with a phone number. Can it be used with anonymous authentication though?When the form is submitted, I have a server component that saves the form fields to firestore. However, how can I verify the recaptcha before committing the data to firestore?
I feel…
4 votes -
Create way to duplicate documents within firebase console so we can easily move them elsewhere
Sometimes it would be nice to have ability to use the console to Duplicate/Copy firestore documents and put them in different locations of the database.
4 votes
- Don't see your idea?