Skip to content

Commit b424fd3

Browse files
authored
Adds four new regions launched July 10. (#733)
1 parent 858cb9b commit b424fd3

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
- Fixes error when last argument to logger methods is `null`. (#716)
2-
- Adds newly available locations `us-west3`, `europe-west6`, `northamerica-northeast1`, and `australia-southeast1`.
2+
- Adds eight new available regions:
3+
- `us-west2`
4+
- `us-west3`
5+
- `us-west4`
6+
- `europe-west6`
7+
- `asia-northeast2`
8+
- `northamerica-northeast1`
9+
- `southamerica-east1`
10+
- `australia-southeast1`
311
- No longer throw errors for unrecognized regions (deploy will error instead).
412
- Fixes error where `snap.ref` in database functions did not work when using the Emulator Suite (#726)

src/function-configuration.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,18 @@ export const SUPPORTED_REGIONS = [
55
'us-central1',
66
'us-east1',
77
'us-east4',
8+
'us-west2',
89
'us-west3',
10+
'us-west4',
911
'europe-west1',
1012
'europe-west2',
1113
'europe-west3',
1214
'europe-west6',
1315
'asia-east2',
1416
'asia-northeast1',
17+
'asia-northeast2',
1518
'northamerica-northeast1',
19+
'southamerica-east1',
1620
'australia-southeast1',
1721
] as const;
1822

0 commit comments

Comments
 (0)