Skip to content

Commit e0244fc

Browse files
Merge branch 'main' into MTA-5448
2 parents a986bf6 + b90fca5 commit e0244fc

File tree

1,269 files changed

+7621
-5824
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,269 files changed

+7621
-5824
lines changed

.github/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111

1212
'type: dependencies':
1313
- package.json
14-
- yarn.lock
14+
- pnpm-lock.yaml

.husky/commit-msg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/sh
22
. "$(dirname "$0")/_/husky.sh"
33

4-
yarn commitlint -e && echo "\nHey! Did you Val(e)date your changes? 💡🤡\n"
4+
pnpm commitlint -e && echo "\nHey! Did you Val(e)date your changes? 💡🤡\n"

.prettierignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
node_modules/
22
package.json
3-
yarn.lock
3+
pnpm-lock.yaml
44
*.mdx

bin/check-pre-commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
[[ $(bin/count-invalid-slugs) == "0" ]] && \
44
[ ! -d node_modules/ ] && echo "⚠️ You need to install node_modules first" && exit 1; \
5-
yarn lint-staged || \
5+
pnpm lint-staged || \
66
(echo "💔 Slug error(s):" && bin/list-invalid-slugs \
77
echo "⚠️ You must fix slugs in 'menu/navigation.json' before commit"; exit 1)

blocks/highlights.json

Lines changed: 0 additions & 38 deletions
This file was deleted.

blocks/mainLinks.json

Lines changed: 0 additions & 50 deletions
This file was deleted.

changelog/index.mdx

Lines changed: 0 additions & 8 deletions
This file was deleted.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
title: IPv6 support enabled on SMTP proxy
3+
status: added
4+
date: 2025-07-08
5+
category: domains-and-webhosting
6+
product: transactional-email
7+
---
8+
9+
IPv6 is now enabled on the SMTP proxy for our TEM service.
10+
No action is required on your side, as the system will automatically use IPv6 when available, without changing the `smtp.tem.scaleway.com` hostname.

docs/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ git clone [email protected]:scaleway/docs-content.git | bash -s -- cd docs-content
127127

128128
Helpful pre-commit commands:
129129

130-
- `yarn check-slugs` Output slugs that are not kebab-case well formatted.
130+
- `pnpm check-slugs` Output slugs that are not kebab-case well formatted.
131131

132132
### Commit conventions
133133

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
macro: adt-account-endpoints
3+
---
4+
5+
<Accordion>
6+
## Account
7+
8+
### Account supported endpoints
9+
10+
The following [Account](/account/) endpoints are supported and will be logged in Audit Trail:
11+
12+
- SendPhoneValidation (`POST /account/v3/phone-validations`)
13+
- ConfirmPhoneValidation (`POST /account/v3/phone-validations/{phone_validation_id}/confirm`)
14+
- UpdateUserPreferences (`PATCH /account/v3/users/{user_id}/preferences`)
15+
- CreateMFAOTP (`POST /account/v3/mfa/otps`)
16+
- DeleteMFAOTP (`DELETE /account/v3/mfa/otps/{mfa_otp_id}`)
17+
- ValidateMFAOTP (`POST /account/v3/mfa/otps/{mfa_otp_id}/validate`)
18+
- UpdateUser (`PATCH /account/v3/users/{user_id}`)
19+
- ChangeUserEmail (`POST /account/v3/users/{user_id}/change-email`)
20+
- ChangeUserPassword (`POST /account/v3/users/{user_id}/change-password`)
21+
- ChangeSupportPlan (`POST /account/v3/organizations/{organization_id}/support-plans`)
22+
- CloseOrganization (`POST /account/v3/organizations/{organization_id}/close`)
23+
- SetPicture (`PUT /account/v3/organizations/{organization_id}/picture`)
24+
</Accordion>

0 commit comments

Comments
 (0)