Skip to content

Update dependency firebase-functions to v3.24.1#506

Open
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/firebase-functions-3.x
Open

Update dependency firebase-functions to v3.24.1#506
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/firebase-functions-3.x

Conversation

@renovate
Copy link
Copy Markdown

@renovate renovate bot commented Jul 14, 2020

This PR contains the following updates:

Package Change Age Confidence
firebase-functions 3.7.03.24.1 age confidence

Release Notes

firebase/firebase-functions (firebase-functions)

v3.24.1

Compare Source

  • Fix reference docs for performance monitoring.
  • Fix bug where function configuration wil null values couldn't be deployed. (#​1246)

v3.24.0

Compare Source

  • Add performance monitoring triggers to v2 alerts (#​1223).

v3.23.0

Compare Source

  • Fixes a bug that disallowed setting customClaims and/or sessionClaims in blocking functions (#​1199).
  • Add v2 Schedule Triggers (#​1177).

v3.22.0

Compare Source

  • Adds RTDB Triggers for v2 functions (#​1127)
  • Adds support for Firebase Admin SDK v11 (#​1151)
  • Fixes bug where emulated task queue function required auth header (#​1154)

v3.21.2

Compare Source

  • Fixes bug where toJSON was not defined in UserRecord (#​1125).

v3.21.1

Compare Source

  • Add debug feature to enable cors option for v2 onRequest and onCall handlers. (#​1099)

v3.21.0

Compare Source

  • Adds CPU option and enhances internal data structures (#​1077)
  • Add auth blocking handlers (#​1080)
  • Add support for secrets in v2 (#​1079)
  • Update types for AlertPayloads (#​1087)
  • Update AppDistribution [@type] (#​1088)
  • Update CloudEvent types (#​1089)
  • Generate documentation with api-extractor (#​1071)
  • Change type info to be inheritance friendly. (#​1091)
  • Changes the memory options from MB to MiB and GB to GiB for greater clarity (#​1090)

v3.20.1

Compare Source

  • Improve authorization for tasks. (#​1073)

v3.20.0

Compare Source

  • Changes internal structure to be more flexible (#​1070).

v3.19.0

Compare Source

  • Add support for more regions and memory for v2 functions (#​1037).
  • Fixes bug where some RTDB instance names were incorrectly parsed (#​1056).

v3.18.1

Compare Source

  • Expose stack YAML via __/functions.yaml endpoint instead (#​1036).

v3.18.0

Compare Source

  • Add new runtime option for setting secrets.

v3.17.2

Compare Source

  • Fix issue where v2 TS users couldn't compile their code because of unexported types. (#​1033)

v3.17.1

Compare Source

  • Fix issue where TS users couldn't compile their code because of unexported types. (#​1032)

v3.17.0

Compare Source

  • Parallelizes network calls that occur when validating authorization for onCall handlers.
  • Adds new regions to V2 API
  • Fixes bug where the emulator crashed when given app without an options property.
  • Adds new alerting providers

v3.16.0

Compare Source

  • GCS Enhancement
  • Add option to allow callable functions to ignore invalid App Check tokens
  • Add firebase-admin v10 as an allowed peer dependency
  • Fix bug where onCall handler failed to encode returned value with functions

v3.15.7

Compare Source

  • Adjust acceptable runtime options values

v3.15.6

Compare Source

  • Add missing type annotations

v3.15.5

Compare Source

  • Make the minInstances feature public.

v3.15.4

Compare Source

  • Fix bug where the arg of https onCall functions sometimes deviates from the documented format.

v3.15.3

Compare Source

  • (temporarly) adds the previously accessible "lib/providers" files as exports. These will be yanked in the next major release.
  • Fixes a bug where functions.https.HttpsError could not be constructed

v3.15.2

Compare Source

  • Fix an error that broke firebase emulators:start on older CLIs

v3.15.1

Compare Source

  • Fix bug that broke the functions emulator

v3.15.0

Compare Source

  • Adds options to set access control on HTTP triggered functions.
  • Adds new regions to support list (asia-east1, asia-southeast1).
  • Adds support for setting user labels on functions via runWith().
  • Adds support for FIREBASE_CONFIG env as the name of a JSON file
  • Fixes an issue where objects that define toJSON could not be logged successfully (#​907).
  • Formalize module exports. Loggers can now be accessed at 'firebase-functions/logger' and 'firebase-functions/logger/compat'
  • Fixes an issue where Remote Config could not be emulated in Windows machines on the classic Command Prompt.

v3.14.1

Compare Source

  • Fixes a bug where typescript would fail to compile with old (but supported) versions of firebase-admin
  • Replaces 3.13.3 which was an inappropriately numbered version

v3.14.0

Compare Source

  • Functions may now be deployed with 8GB RAM
  • Functions may now be deployed to europe-central2 (Warsaw)
  • Add support for validating App Check tokens for Callable Functions

v3.13.3

Compare Source

  • Fixes a bug where typescript would fail to compile with old (but supported) versions of firebase-admin

v3.13.2

Compare Source

  • Fixes issue where DATABASE_URL and STORAGE_BUCKET_URL could not be set to undefined. (#​829)
  • Fixes a bug where ingressSettings could not be set. (#​827)

v3.13.1

Compare Source

  • Fixes a bug that prevented Functions from being deployed with availableMemoryMb set to 4GB.
  • Fixes bug where functions.logger.log crashes function if circular dependencies are passed in

v3.13.0

Compare Source

  • Adds serviceAccount option to runtimeOptions to specify which service account Cloud Function should use at runtime. For example:
const functions = require('firebase-functions');

exports.myFunction = functions.runWith({
    serviceAccount: 'test-sa@project.iam.gserviceaccount.com'
    // OR
    // serviceAcount: 'test-sa@"
    // OR
    // serviceAccount: 'default'
  })

Requires firebase-tools@​8.18.0 or later. Thanks @​egor-miasnikov!

  • Upgrades highlight.js to 10.4.1 to fix a vulnerability.

v3.12.0

Compare Source

  • Adds 4GB as a memory option for runWith().
  • Adds support for choosing ingressSettings via runWith().

v3.11.0

Compare Source

  • Adds support for vpcConnector and vpcConnectorEgressSettings fields in functions.runWith(). Must be used in conjunction with firebase-tools v8.9.0 or higher. Thanks @​pcboy! (#​752)

v3.10.0

Compare Source

  • Adds support for functions failure policies (#​482)

v3.9.1

Compare Source

  • Updates firebase-admin dependency to support ^9.0.0 in addition to ^8.0.0. Note that firebase-admin no longer supports Node.js 8.x as of 9.0.0.
  • Fixes logging of unexpected errors in https.onCall() functions.

v3.9.0

Compare Source

  • Updates HTTP callable functions to use structured logging for Node 10+ environments.
  • Adds type hints for new Cloud Functions regions asia-northeast3, asia-south1, and asia-southeast2.
  • Updates type definition of https.onRequest to allow for promises (async functions).

v3.8.0

Compare Source

  • Fixes error when last argument to logger methods is null. (#​716)
  • Adds eight new available regions:
    • us-west2
    • us-west3
    • us-west4
    • europe-west6
    • asia-northeast2
    • northamerica-northeast1
    • southamerica-east1
    • australia-southeast1
  • No longer throw errors for unrecognized regions (deploy will error instead).
  • Fixes error where snap.ref in database functions did not work when using the Emulator Suite (#​726)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@pull-assistant
Copy link
Copy Markdown

pull-assistant bot commented Jul 14, 2020

Score: 1.00

Best reviewed: commit by commit


Optimal code review plan

     Update dependency firebase-functions to v3.11.0

Powered by Pull Assistant. Last update 53e6781 ... 53e6781. Read the comment docs.

@renovate renovate bot force-pushed the renovate/firebase-functions-3.x branch from 8157bd2 to d9f4a4e Compare July 31, 2020 23:52
@renovate renovate bot changed the title Update dependency firebase-functions to v3.8.0 Update dependency firebase-functions to v3.9.0 Jul 31, 2020
@renovate renovate bot force-pushed the renovate/firebase-functions-3.x branch from d9f4a4e to 1b87ad0 Compare August 12, 2020 20:09
@renovate renovate bot changed the title Update dependency firebase-functions to v3.9.0 Update dependency firebase-functions to v3.9.1 Aug 12, 2020
@renovate renovate bot force-pushed the renovate/firebase-functions-3.x branch from 1b87ad0 to 9ab59fe Compare August 20, 2020 16:12
@renovate renovate bot changed the title Update dependency firebase-functions to v3.9.1 Update dependency firebase-functions to v3.10.0 Aug 20, 2020
@renovate renovate bot force-pushed the renovate/firebase-functions-3.x branch from 9ab59fe to 53e6781 Compare August 21, 2020 16:13
@renovate renovate bot changed the title Update dependency firebase-functions to v3.10.0 Update dependency firebase-functions to v3.11.0 Aug 21, 2020
@renovate renovate bot force-pushed the renovate/firebase-functions-3.x branch from 53e6781 to 260dbcf Compare December 8, 2020 12:01
@renovate renovate bot changed the title Update dependency firebase-functions to v3.11.0 Update dependency firebase-functions to v3.13.0 Dec 8, 2020
@renovate renovate bot force-pushed the renovate/firebase-functions-3.x branch from 260dbcf to 0292614 Compare January 24, 2021 10:55
@renovate renovate bot changed the title Update dependency firebase-functions to v3.13.0 Update dependency firebase-functions to v3.13.1 Jan 24, 2021
@vercel
Copy link
Copy Markdown

vercel bot commented Jan 24, 2021

This pull request is being automatically deployed with Vercel (learn more).
To see the status of your deployment, click below or on the icon next to each commit.

🔍 Inspect: https://vercel.com/duyet/price-tracker/FLqvPk5wqzhC1AV86HyNc8tMMZrQ
✅ Preview: https://price-tracker-git-renovate-firebase-functions-3x-duyet.vercel.app

@renovate renovate bot force-pushed the renovate/firebase-functions-3.x branch from 0292614 to 844d159 Compare April 26, 2021 13:53
@renovate renovate bot changed the title Update dependency firebase-functions to v3.13.1 Update dependency firebase-functions to v3.13.2 Apr 26, 2021
@renovate renovate bot force-pushed the renovate/firebase-functions-3.x branch from 844d159 to a1c8f22 Compare May 15, 2021 21:20
@renovate renovate bot changed the title Update dependency firebase-functions to v3.13.2 Update dependency firebase-functions to v3.14.0 May 15, 2021
@renovate renovate bot force-pushed the renovate/firebase-functions-3.x branch from a1c8f22 to f4d4b5c Compare June 6, 2021 19:51
@renovate renovate bot changed the title Update dependency firebase-functions to v3.14.0 Update dependency firebase-functions to v3.14.1 Jun 6, 2021
@renovate renovate bot force-pushed the renovate/firebase-functions-3.x branch from f4d4b5c to d41b161 Compare October 20, 2021 07:09
@renovate renovate bot changed the title Update dependency firebase-functions to v3.14.1 Update dependency firebase-functions to v3.15.7 Oct 20, 2021
@renovate renovate bot force-pushed the renovate/firebase-functions-3.x branch from d41b161 to 7485898 Compare March 7, 2022 10:15
@renovate renovate bot changed the title Update dependency firebase-functions to v3.15.7 Update dependency firebase-functions to v3.18.1 Mar 7, 2022
@renovate renovate bot force-pushed the renovate/firebase-functions-3.x branch from 7485898 to 220f8e4 Compare March 26, 2022 14:28
@renovate renovate bot changed the title Update dependency firebase-functions to v3.18.1 Update dependency firebase-functions to v3.19.0 Mar 26, 2022
@renovate renovate bot force-pushed the renovate/firebase-functions-3.x branch from 220f8e4 to e123e08 Compare April 24, 2022 21:55
@renovate renovate bot changed the title Update dependency firebase-functions to v3.19.0 Update dependency firebase-functions to v3.20.1 Apr 24, 2022
@renovate renovate bot force-pushed the renovate/firebase-functions-3.x branch from e123e08 to 09c187e Compare May 16, 2022 01:55
@renovate renovate bot changed the title Update dependency firebase-functions to v3.20.1 Update dependency firebase-functions to v3.21.1 May 16, 2022
@renovate
Copy link
Copy Markdown
Author

renovate bot commented May 16, 2022

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: functions/package-lock.json
/usr/local/bin/docker: line 4: .: filename argument required
.: usage: . filename [arguments]
ERROR: npm v9.8.1 is known not to run on Node.js v10.24.1.  This version of npm supports the following node versions: `^14.17.0 || ^16.13.0 || >=18.0.0`. You can find the latest version at https://nodejs.org/.

ERROR:
/opt/containerbase/tools/npm/9.8.1/node_modules/npm/lib/utils/exit-handler.js:19
  const hasLoadedNpm = npm?.config.loaded
                           ^

SyntaxError: Unexpected token .
    at Module._compile (internal/modules/cjs/loader.js:723:23)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10)
    at Module.load (internal/modules/cjs/loader.js:653:32)
    at tryModuleLoad (internal/modules/cjs/loader.js:593:12)
    at Function.Module._load (internal/modules/cjs/loader.js:585:3)
    at Module.require (internal/modules/cjs/loader.js:692:17)
    at require (internal/modules/cjs/helpers.js:25:18)
    at module.exports (/opt/containerbase/tools/npm/9.8.1/node_modules/npm/lib/cli-entry.js:15:23)
    at module.exports (/opt/containerbase/tools/npm/9.8.1/node_modules/npm/lib/es6/validate-engines.js:39:10)
    at module.exports (/opt/containerbase/tools/npm/9.8.1/node_modules/npm/lib/cli.js:4:31)
ERROR: npm v9.8.1 is known not to run on Node.js v10.24.1.  This version of npm supports the following node versions: `^14.17.0 || ^16.13.0 || >=18.0.0`. You can find the latest version at https://nodejs.org/.

ERROR:
/opt/containerbase/tools/npm/9.8.1/node_modules/npm/lib/utils/exit-handler.js:19
  const hasLoadedNpm = npm?.config.loaded
                           ^

SyntaxError: Unexpected token .
    at Module._compile (internal/modules/cjs/loader.js:723:23)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10)
    at Module.load (internal/modules/cjs/loader.js:653:32)
    at tryModuleLoad (internal/modules/cjs/loader.js:593:12)
    at Function.Module._load (internal/modules/cjs/loader.js:585:3)
    at Module.require (internal/modules/cjs/loader.js:692:17)
    at require (internal/modules/cjs/helpers.js:25:18)
    at module.exports (/opt/containerbase/tools/npm/9.8.1/node_modules/npm/lib/cli-entry.js:15:23)
    at module.exports (/opt/containerbase/tools/npm/9.8.1/node_modules/npm/lib/es6/validate-engines.js:39:10)
    at module.exports (/opt/containerbase/tools/npm/9.8.1/node_modules/npm/lib/cli.js:4:31)

@renovate renovate bot force-pushed the renovate/firebase-functions-3.x branch from 09c187e to d73ebbf Compare June 18, 2022 19:59
@renovate renovate bot changed the title Update dependency firebase-functions to v3.21.1 Update dependency firebase-functions to v3.21.2 Jun 18, 2022
@renovate renovate bot force-pushed the renovate/firebase-functions-3.x branch from d73ebbf to 53090e0 Compare September 25, 2022 16:53
@renovate renovate bot changed the title Update dependency firebase-functions to v3.21.2 Update dependency firebase-functions to v3.24.0 Sep 25, 2022
@renovate renovate bot changed the title Update dependency firebase-functions to v3.24.0 Update dependency firebase-functions to v3.24.1 Mar 16, 2023
@renovate renovate bot force-pushed the renovate/firebase-functions-3.x branch from 53090e0 to 7e2e33f Compare March 16, 2023 16:08
@renovate renovate bot force-pushed the renovate/firebase-functions-3.x branch from 7e2e33f to 7003489 Compare August 19, 2023 13:34
@renovate renovate bot force-pushed the renovate/firebase-functions-3.x branch from 7003489 to 60294c8 Compare October 9, 2025 03:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants