Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
- Parallelizes network calls that occur when validating authorization for onCall handlers.
- Adds new regions to V2 API
7 changes: 6 additions & 1 deletion src/v2/options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,12 @@ import { ParamSpec } from './params/types';
/**
* List of all regions supported by Cloud Functions v2
*/
export const SUPPORTED_REGIONS = ['us-west1', 'europe-west4'] as const;
export const SUPPORTED_REGIONS = [
'us-west1',
'us-central1',
'europe-west4',
'asia-northeast1',
] as const;

/**
* A region known to be supported by CloudFunctions v2
Expand Down