Thomas Bouldin
Thomas Bouldin
Scanning through some bugs and came across this one. I wanted to give a few updates: 1. **Regression/Fix**. I'm glad that the regression seems fixed already and sorry that we...
This is a very cool feature request, but is definitely not trivial. We'll leave it on the back burner for now, but I don't know that we'll ever get to...
We're working on support for sensitive secrets. That might solve your needs without being this particular feature request. For better or worse, we're busy with some major things coming down...
We agree with your suggestion and wish we had released this way all along. Changing the log severity may be a breaking change however so we're going to wait until...
Hey there, this is an issue we'll need to look at. `functions.http.Request` _is_ actually an `express.Request`, but we redefined what it was to add on some additional type info (e.g....
I dove into the code and think I may see the bug. [We have](https://github.com/firebase/firebase-functions/blob/master/src/common/providers/https.ts#L34) ``` export interface Request extends express.Request { rawBody: Buffer; }); ``` which seems right. Except that...
Yes. It's a low priority since a cast does the trick. Internal bug #209905562
We've see a number of concerns here. 1. There's a request that we can handle errors thrown from global scope. This would be interesting, but it cannot be done. We're...
The general goal is that all interaction between the CLI and the SDK will be done with HTTP and not raw JS, so it would be impossible to have any...