From 3d542000e5957929b2239ab90a397de32b51f8f0 Mon Sep 17 00:00:00 2001 From: Michael Bleigh Date: Fri, 31 Jul 2020 14:56:02 -0700 Subject: [PATCH 1/2] Adds support for three new regions. --- CHANGELOG.md | 1 + src/function-configuration.ts | 3 +++ 2 files changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e69de29bb..da24949b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -0,0 +1 @@ +- Adds type hints for new Cloud Functions regions `asia-northeast3`, `asia-south1`, and `asia-southeast2`. diff --git a/src/function-configuration.ts b/src/function-configuration.ts index 0ab2f9c31..a7d87b726 100644 --- a/src/function-configuration.ts +++ b/src/function-configuration.ts @@ -15,6 +15,9 @@ export const SUPPORTED_REGIONS = [ 'asia-east2', 'asia-northeast1', 'asia-northeast2', + 'asia-northeast3', + 'asia-south1', + 'asia-southeast2', 'northamerica-northeast1', 'southamerica-east1', 'australia-southeast1', From 8a233be272402cb24e5f2c6984ec2e0021aef609 Mon Sep 17 00:00:00 2001 From: Michael Bleigh Date: Fri, 31 Jul 2020 15:28:20 -0700 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index da24949b9..3c25216f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1 +1,2 @@ +- 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`.