-
Notifications
You must be signed in to change notification settings - Fork 978
Comparing changes
Open a pull request
base repository: firebase/firebase-tools
base: v12.4.0
head repository: firebase/firebase-tools
compare: v12.4.1
Commits on Jun 15, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 3f3c186 - Browse repository at this point
Copy the full SHA 3f3c186View commit details
Commits on Jun 16, 2023
-
* plugin integration WIP * add getInitFirebaseResponse type * satisfy tsconfig.compile.json * update get-init-firebase-response response format * isMonospaceEnv * set access token only in autoAuth * get monospace daemon port in function * create `.firebaserc` with authorized project * don't run setupMonospace if is vs code extension * return authorized project * isVSCE from options, return null if no project * clean up * use `projectRoot` again, only create rc if ... ... there's a project * lint friendly assertion * `/get-init-firebase-response` responses in logger * handle `userResponse` false * address nit, replace FIXME with TODO * depromisify isMonospaceEnv * remove unnecessary else * poll every 2 seconds instead of 5
Configuration menu - View commit details
-
Copy full SHA for 71c8e7d - Browse repository at this point
Copy the full SHA 71c8e7dView commit details -
Fix flaky convertConfig test (#5981)
* Increasing timeout on flaking unit tests * take 2 * Increasing timeouts further * Found the actual cause - flaky tests were making remote calls and catching 403 errors * formats
Configuration menu - View commit details
-
Copy full SHA for ba8a2a3 - Browse repository at this point
Copy the full SHA ba8a2a3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4b28e8a - Browse repository at this point
Copy the full SHA 4b28e8aView commit details
Commits on Jun 17, 2023
-
Emulators in the VSCode plugin (#5954)
Add emulator support in the VSCode plugin. This is still a prototype version and you may encounter bugs.
Configuration menu - View commit details
-
Copy full SHA for 4612ef2 - Browse repository at this point
Copy the full SHA 4612ef2View commit details
Commits on Jun 20, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 17eb321 - Browse repository at this point
Copy the full SHA 17eb321View commit details -
Run lifecycle hooks for specific codebases (#6011)
* run lifecycle hooks for codebases specified by only * update changelog
Configuration menu - View commit details
-
Copy full SHA for c552816 - Browse repository at this point
Copy the full SHA c552816View commit details
Commits on Jun 21, 2023
-
Fixed a bug in the hosting config for emulators. (#6013)
Also fixed an issue where an empty folder creates an issue loading the side panel.
Configuration menu - View commit details
-
Copy full SHA for b1b513b - Browse repository at this point
Copy the full SHA b1b513bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0561d36 - Browse repository at this point
Copy the full SHA 0561d36View commit details -
Missed a few changes from comments (#6015)
* Fixed a bug in the hosting config for emulators. Also fixed an issue where an empty folder creates an issue loading the side panel. * Missed some changes * Update firebase-vscode/webviews/components/EmulatorPanel.tsx Co-authored-by: joehan <joehanley@google.com> --------- Co-authored-by: joehan <joehanley@google.com>
Configuration menu - View commit details
-
Copy full SHA for 58c7c65 - Browse repository at this point
Copy the full SHA 58c7c65View commit details
Commits on Jun 22, 2023
-
Fix firebase emulators:start crashing (#6005)
* Update proxyResponse method * Add proper types to proxyResponse function * Changelog * Changelog formatting * Update CHANGELOG.md * Update firebase-vscode/package-lock.json --------- Co-authored-by: joehan <joehanley@google.com>
Configuration menu - View commit details
-
Copy full SHA for 05c3013 - Browse repository at this point
Copy the full SHA 05c3013View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8530334 - Browse repository at this point
Copy the full SHA 8530334View commit details -
Init flow frameworks cli. (#6010)
* Added init flow commands * change region name * Enable frameworkstacks api * Added code review changes * Revert unwanted changes * Revert unwanted changes * Revert unwanted changes * change according to project id * Removed unwanted statements related to projectId
Configuration menu - View commit details
-
Copy full SHA for 87968f0 - Browse repository at this point
Copy the full SHA 87968f0View commit details -
* Initial commit to stacks api * Added more properties to the Stack and Build object * Added api calls for framework stacks * Changed naming * Changed naming * Review changes * Removed and used minimal fields * Moved frameworks api file
Configuration menu - View commit details
-
Copy full SHA for 9330b35 - Browse repository at this point
Copy the full SHA 9330b35View commit details -
Switched most uses of track to GA4 (#6016)
* Switched most uses of track to GA4 * Move duration out of params, and improve debug logging slightly
Configuration menu - View commit details
-
Copy full SHA for 728d07d - Browse repository at this point
Copy the full SHA 728d07dView commit details
Commits on Jun 23, 2023
-
Release Firestore emulator 1.18.1 (#5942)
* Release Firestore emulator 1.18.1 * Update CHANGELOG.md Co-authored-by: joehan <joehanley@google.com> * Formatting changes in CHANGE.md * Update CHANGELOG.md --------- Co-authored-by: Jia You <jiayou@google.com> Co-authored-by: joehan <joehanley@google.com> Co-authored-by: christhompsongoogle <106194718+christhompsongoogle@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for a9b6ecf - Browse repository at this point
Copy the full SHA a9b6ecfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 29747a8 - Browse repository at this point
Copy the full SHA 29747a8View commit details -
Inject GOOGLE_CLOUD_QUOTA_PROJECT environment variable during functio…
…n discovery and emulation (#5985) When deploying functions that makes use of GCP's usage-based (not resource-based) APIs , such as Vertex AI or ML Vision API, users may see an error like this: ``` // main.py import vertexai # Initialize the Vertex AI client vertexai.init() $ firebase deploy Failed to load function definition from source: FirebaseError: Failed to parse build specification Caused by: 403 Vertex AI API has not been used in project 563584335869 before or it is disabled. ``` During function discovery, `vertex.init()` makes a call to the Vertex AI with the client credentials associated with Firebase CLI . In the case of usage-based APIs, the call is being made on the Firebase CLI project, not the users project, resulting in the error message like `been used in project 563584335869 before or it is disabled.` (project `563584335869` is the Firebase CLI GCP project). Similar issue happens when running the function on the emulator. To workaround the issue, we have to properly override the client project associated with the Vertex AI API call. There are few ways for doing this, and here we choose to leverage `GOOGLE_CLOUD_QUOTA_PROJECT` environment variable to correctly override the quota project to be the user project associated with the Firebase CLI session.
Configuration menu - View commit details
-
Copy full SHA for d971a08 - Browse repository at this point
Copy the full SHA d971a08View commit details -
Reimplement Storage emulator /internal/setRules (#6014)
* stash * commit * commit * lint * fix tests * const
Configuration menu - View commit details
-
Copy full SHA for 463e649 - Browse repository at this point
Copy the full SHA 463e649View commit details -
Adding JSON schema for extension yaml (#5984)
* Starting on extension.yaml json schema * finsh extension.yaml schema * adding events * add billingrequired * Adding schemas to vscode plugin too * reverting new format for firebase-config.json
Configuration menu - View commit details
-
Copy full SHA for 8af4c93 - Browse repository at this point
Copy the full SHA 8af4c93View commit details -
Configuration menu - View commit details
-
Copy full SHA for 34f4d95 - Browse repository at this point
Copy the full SHA 34f4d95View commit details
Commits on Jun 26, 2023
-
Print functions discovery to stdout/error (#5931)
* Print functions discovery to stdout/error * More tweaking * lint fixes * Use logger instead of console to work with --json --------- Co-authored-by: Daniel Lee <danielylee@google.com>
Configuration menu - View commit details
-
Copy full SHA for f6ed7b6 - Browse repository at this point
Copy the full SHA f6ed7b6View commit details -
Bump firebase-frameworks version in constants.ts (#6038)
Fixes compatibility with latest Next.js
Configuration menu - View commit details
-
Copy full SHA for 380390f - Browse repository at this point
Copy the full SHA 380390fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2b18e0b - Browse repository at this point
Copy the full SHA 2b18e0bView commit details -
Fix table in CONTRIBUTING.md (#6029)
Multi-line table syntax is not supported in GitHub Markdown.
Configuration menu - View commit details
-
Copy full SHA for af7c645 - Browse repository at this point
Copy the full SHA af7c645View commit details
Commits on Jun 27, 2023
-
Implement module to link stack to GitHub repository (#5793)
* add internal testing cmd for connecting gh to cloud build repos * use regex to extract repo slug * add comments * add unit tests * fix tests * refactoring & allow changing gh app access settings * refactor & update unit tests * add comments & change internaltesting name * rename to composer
Configuration menu - View commit details
-
Copy full SHA for 31c2d22 - Browse repository at this point
Copy the full SHA 31c2d22View commit details -
Imporved extensions metrics (#6037)
* Switched most uses of track to GA4 * Move duration out of params, and improve debug logging slightly * Improved metrics for extensions * formats
Configuration menu - View commit details
-
Copy full SHA for e96b069 - Browse repository at this point
Copy the full SHA e96b069View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3ca530c - Browse repository at this point
Copy the full SHA 3ca530cView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v12.4.0...v12.4.1