Skip to content

Commit 00b9159

Browse files
authored
Release 3.8.0 (#1192)
1 parent 38c6df3 commit 00b9159

16 files changed

Lines changed: 2145 additions & 6982 deletions

File tree

.aws/prod/origin-request/index.js

Lines changed: 22 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ const REGIONS = {
1616
// London
1717
'eu-west-2': [/* United Kingdom */ 'GB', /* Ireland */ 'IE'],
1818
// Bahrain
19-
'me-south-1': [/* Egypt */ 'EG', /* Middle East */ 'AE', 'AM', 'AZ', 'BH', 'GE', 'IL', 'IQ', 'IR', 'JO', 'KW', 'LB', 'OM', 'PS', 'QA', 'SA', 'SY', 'TM', 'UZ', 'YE'],
19+
// NOTE: Offline due to a missile strike
20+
// 'me-south-1': [/* Egypt */ 'EG', /* Middle East */ 'AE', 'AM', 'AZ', 'BH', 'GE', 'IL', 'IQ', 'IR', 'JO', 'KW', 'LB', 'OM', 'PS', 'QA', 'SA', 'SY', 'TM', 'UZ', 'YE'],
2021
// Sāo Paulo
2122
'sa-east-1': [/* South America */ 'AR', 'BO', 'BR', 'CL', 'CO', 'EC', 'FK', 'GF', 'GY', 'PE', 'PY', 'SR', 'UY', 'VE'],
2223
// Oregon
@@ -197,26 +198,26 @@ const COUNTRIES = {
197198
XK: 'eu-central-1',
198199
GB: 'eu-west-2',
199200
IE: 'eu-west-2',
200-
EG: 'me-south-1',
201-
AE: 'me-south-1',
202-
AM: 'me-south-1',
203-
AZ: 'me-south-1',
204-
BH: 'me-south-1',
205-
GE: 'me-south-1',
206-
IL: 'me-south-1',
207-
IQ: 'me-south-1',
208-
IR: 'me-south-1',
209-
JO: 'me-south-1',
210-
KW: 'me-south-1',
211-
LB: 'me-south-1',
212-
OM: 'me-south-1',
213-
PS: 'me-south-1',
214-
QA: 'me-south-1',
215-
SA: 'me-south-1',
216-
SY: 'me-south-1',
217-
TM: 'me-south-1',
218-
UZ: 'me-south-1',
219-
YE: 'me-south-1',
201+
EG: 'me-central-1', // me-south-1
202+
AE: 'me-central-1', // me-south-1
203+
AM: 'me-central-1', // me-south-1
204+
AZ: 'me-central-1', // me-south-1
205+
BH: 'me-central-1', // me-south-1
206+
GE: 'me-central-1', // me-south-1
207+
IL: 'me-central-1', // me-south-1
208+
IQ: 'me-central-1', // me-south-1
209+
IR: 'me-central-1', // me-south-1
210+
JO: 'me-central-1', // me-south-1
211+
KW: 'me-central-1', // me-south-1
212+
LB: 'me-central-1', // me-south-1
213+
OM: 'me-central-1', // me-south-1
214+
PS: 'me-central-1', // me-south-1
215+
QA: 'me-central-1', // me-south-1
216+
SA: 'me-central-1', // me-south-1
217+
SY: 'me-central-1', // me-south-1
218+
TM: 'me-central-1', // me-south-1
219+
UZ: 'me-central-1', // me-south-1
220+
YE: 'me-central-1', // me-south-1
220221
AR: 'sa-east-1',
221222
BO: 'sa-east-1',
222223
BR: 'sa-east-1',

.github/workflows/push-release.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -174,8 +174,7 @@ jobs:
174174
runs-on: ubuntu-latest
175175
strategy:
176176
matrix:
177-
region:
178-
[
177+
region: [
179178
af-south-1,
180179
ap-east-1,
181180
ap-south-1,
@@ -184,7 +183,7 @@ jobs:
184183
ca-central-1,
185184
eu-central-1,
186185
eu-west-2,
187-
me-south-1,
186+
# me-south-1, -- offline
188187
sa-east-1,
189188
us-west-2,
190189
]

REVIEW.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
- **Light theme**: hardcoded "slate" or "obsidian" colors that aren't neutral (shade 5) should define distinct light and dark variants using `const isLight = useIsLight()` and for example `isLight ? "obsidian.2" : "obsidian.7"`.
99
- **Release Changelogs**: version bumps on release branches should be accompanied by a changelog entry in the `src/assets/changelogs` directory. The changelog should feature a title, date, and a list of changes.
1010
- **Dependency changes**: new external packages require justification. Prefer replacing small utility packages with helper functions in the codebase.
11+
- **Tauri version**: the versions of Tauri plugins should ALWAYS be identical between the `package.json` and `Cargo.toml` files. If versions deviate it may result in unexpected issues.
1112

1213
## Skip
1314

0 commit comments

Comments
 (0)