Skip to content

Commit 9016314

Browse files
authored
Add new region support (#1010)
1 parent c9bc736 commit 9016314

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
- Parallelizes network calls that occur when validating authorization for onCall handlers.
2+
- Adds new regions to V2 API

src/v2/options.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,12 @@ import { ParamSpec } from './params/types';
3333
/**
3434
* List of all regions supported by Cloud Functions v2
3535
*/
36-
export const SUPPORTED_REGIONS = ['us-west1', 'europe-west4'] as const;
36+
export const SUPPORTED_REGIONS = [
37+
'us-west1',
38+
'us-central1',
39+
'europe-west4',
40+
'asia-northeast1',
41+
] as const;
3742

3843
/**
3944
* A region known to be supported by CloudFunctions v2

0 commit comments

Comments
 (0)