We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9bc736 commit 9016314Copy full SHA for 9016314
CHANGELOG.md
@@ -1 +1,2 @@
1
- Parallelizes network calls that occur when validating authorization for onCall handlers.
2
+- Adds new regions to V2 API
src/v2/options.ts
@@ -33,7 +33,12 @@ import { ParamSpec } from './params/types';
33
/**
34
* List of all regions supported by Cloud Functions v2
35
*/
36
-export const SUPPORTED_REGIONS = ['us-west1', 'europe-west4'] as const;
+export const SUPPORTED_REGIONS = [
37
+ 'us-west1',
38
+ 'us-central1',
39
+ 'europe-west4',
40
+ 'asia-northeast1',
41
+] as const;
42
43
44
* A region known to be supported by CloudFunctions v2
0 commit comments