Skip to content

Commit 38bdaa9

Browse files
committed
2 parents 9101cab + 5124395 commit 38bdaa9

File tree

252 files changed

+3364
-2200
lines changed

Some content is hidden

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

252 files changed

+3364
-2200
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)
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.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
title: Account management actions in Audit Trail
3+
status: added
4+
date: 2025-07-09
5+
category: monitoring
6+
product: audit-trail
7+
---
8+
9+
Account management activity can now be tracked in Audit Trail.
10+
11+
Read [our documentation](/audit-trail/reference-content/adt-supported-endpoints/) to see the list of actions available. Account actions are tracked in the Paris region.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
title: 1‑Click WordPress now available on Web Hosting
3+
status: added
4+
date: 2025-07-09
5+
category: domains-and-webhosting
6+
product: webhosting
7+
---
8+
9+
We are excited to announce the launch of 1‑Click WordPress Install on our Web Hosting offers!
10+
11+
You can now install a fully functional WordPress website in just one click, no technical knowledge required.
12+
Whether you are building a blog, a portfolio, or an online store, getting started has never been easier.
13+
14+
Available now for all Web Hosting plans via the [Scaleway console](https://console.scaleway.com/webhosting/).
15+

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>

macros/audit-trail/iam-endpoints.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ macro: adt-iam-endpoints
77

88
### IAM supported endpoints
99

10-
The following IAM endpoints are supported and will be logged in Audit Trail:
10+
The following [IAM](/iam/) endpoints are supported and will be logged in Audit Trail:
1111

1212
- CreateSSHKey (`POST /iam/v1alpha1/ssh-keys`)
1313
- UpdateSSHKey (`PATCH /iam/v1alpha1/ssh-keys/{ssh_key_id}`)

0 commit comments

Comments
 (0)