Skip to content

Commit 6112d3e

Browse files
authored
Merge branch 'production' into pm-queues-http-pull
2 parents 0d9afc2 + a0e5466 commit 6112d3e

File tree

1,391 files changed

+51496
-12695
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,391 files changed

+51496
-12695
lines changed

.github/CODEOWNERS

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
/src/content/release-notes/workers-ai.yaml @kathayl @G4brym @mchenco @daisyfaithauma @cloudflare/pcx-technical-writing
2929
/src/content/release-notes/ai-gateway.yaml @kathayl @G4brym @mchenco @daisyfaithauma @cloudflare/pcx-technical-writing
3030
/src/content/release-notes/vectorize.yaml @elithrar @mchenco @sejoker @cloudflare/pcx-technical-writing
31+
/src/content/docs/autorag/ @rita3ko @irvinebroque @aninibread @ToriLindsay @cloudflare/pcx-technical-writing
3132

3233
# Analytics & Logs
3334

@@ -44,7 +45,7 @@
4445

4546
# Browser Rendering API
4647

47-
/src/content/docs/browser-rendering/ @mchenco @cloudflare/pcx-technical-writing @celso @meddulla @danielgek
48+
/src/content/docs/browser-rendering/ @mchenco @cloudflare/pcx-technical-writing @celso @meddulla @danielgek @kathayl
4849

4950
# Changelogs
5051

@@ -202,6 +203,7 @@
202203
/src/content/docs/dmarc-management/ @Maddy-Cloudflare @cloudflare/pcx-technical-writing
203204
/src/content/docs/firewall/ @pedrosousa @cloudflare/firewall @cloudflare/pcx-technical-writing
204205
/src/content/docs/page-shield/ @pedrosousa @cloudflare/pcx-technical-writing
206+
/src/content/docs/secrets-store/ @RebeccaTamachiro @cloudflare/pcx-technical-writing
205207
/src/content/docs/security-center/ @jason-cf @cloudflare/pcx-technical-writing
206208
/src/content/docs/ssl/ @RebeccaTamachiro @cloudflare/pcx-technical-writing
207209
/src/content/docs/waf/ @pedrosousa @cloudflare/firewall @cloudflare/pcx-technical-writing

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ contact_links:
44
url: https://developers.cloudflare.com/support/contacting-cloudflare-support/#methods-of-contacting-cloudflare-support
55
about: If you need support with your website or Cloudflare applications, please contact Cloudflare through the relevant support channel.
66
- name: Issue with Cloudflare 5XX errors
7-
url: https://developers.cloudflare.com/support/troubleshooting/cloudflare-errors/troubleshooting-cloudflare-5xx-errors/#troubleshooting-cloudflare-5xx-errors--cloudflare-help-center
7+
url: https://developers.cloudflare.com/support/troubleshooting/http-status-codes/cloudflare-5xx-errors/
88
about: If you are encountering a Cloudflare 5XX error, please read our troubleshooting documentation for 5XX errors.
99
- name: Issue with Cloudflare Workers
1010
url: https://github.com/cloudflare/workers-sdk/issues/new/choose
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
name: gitlab_base.EOLWhitespace
3+
description: |
4+
Checks that there is no useless whitespace at the end of lines.
5+
extends: existence
6+
message: "Remove whitespace characters from the end of the line."
7+
link: https://docs.gitlab.com/development/documentation/styleguide/
8+
vocab: false
9+
level: warning
10+
scope: raw
11+
raw:
12+
- ' +\n'
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
extends: existence
2+
message: "Don't use exclamation points in text."
3+
link: "https://developers.google.com/style/exclamation-points"
4+
nonword: true
5+
level: error
6+
action:
7+
name: edit
8+
params:
9+
- trim_right
10+
- "!"
11+
tokens:
12+
- '\w+!(?:\s|$)'
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: gitlab_base.HeadingLink
3+
description: |
4+
Do not include links in a heading.
5+
Headings already have self-referencing anchor links,
6+
and they're used for generating the table of contents.
7+
Adding a link will break the anchor linking behavior.
8+
extends: existence
9+
message: "Do not use links in headings."
10+
vocab: false
11+
level: error
12+
ignorecase: true
13+
nonword: true
14+
link: https://docs.gitlab.com/development/documentation/styleguide/#links
15+
scope: raw
16+
tokens:
17+
- ^#+ .*\[.+\]\(\S+\).*$
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
extends: existence
2+
message: "Don't use end punctuation in headings."
3+
link: https://docs.microsoft.com/en-us/style-guide/punctuation/periods
4+
nonword: true
5+
level: warning
6+
scope: heading
7+
action:
8+
name: edit
9+
params:
10+
- trim_right
11+
- ".?!"
12+
tokens:
13+
- "[a-z][.?!]$"
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
extends: capitalization
2+
message: "'%s' should use sentence-style capitalization."
3+
link: https://docs.microsoft.com/en-us/style-guide/capitalization
4+
level: suggestion
5+
scope: heading
6+
match: $sentence
7+
indicators:
8+
- ":"
9+
exceptions:
10+
- Azure
11+
- CLI
12+
- Code
13+
- Cosmos
14+
- Docker
15+
- Emmet
16+
- I
17+
- Kubernetes
18+
- Linux
19+
- macOS
20+
- Marketplace
21+
- MongoDB
22+
- REPL
23+
- Studio
24+
- TypeScript
25+
- URLs
26+
- Visual
27+
- VS
28+
- Windows
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
# Warning: cloudflare.NonStandardQuotes
3+
#
4+
# Use only standard single and double quotes, not left or right quotes.
5+
#
6+
# For a list of all options, see https://vale.sh/docs/topics/styles/
7+
extends: existence
8+
message: "Use standard single quotes or double quotes only. Do not use left or right quotes."
9+
level: warning
10+
ignorecase: true
11+
link: https://developers.cloudflare.com/style-guide/grammar/punctuation-marks-and-symbols/quotation-marks/
12+
scope: raw
13+
raw:
14+
- "[‘’“”]"
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
name: gitlab_base.UnclearAntecedent
3+
description: |
4+
Checks for words that need a noun for clarity.
5+
extends: existence
6+
message: "Instead of '%s', try starting this sentence with a specific subject and verb."
7+
link: https://docs.gitlab.com/development/documentation/styleguide/word_list/#this-these-that-those
8+
vocab: false
9+
level: warning
10+
ignorecase: false
11+
tokens:
12+
- "That is"
13+
- "That was"
14+
- "There are"
15+
- "There were"
16+
- "These are"
17+
- "These were"
18+
- "This is"
19+
- "This was"
20+
- "Those are"
21+
- "Those were"
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
---
2+
# Error: cloudflare.Contractions
3+
#
4+
# Do not use contractions.
5+
#
6+
# For a list of all options, see https://vale.sh/docs/topics/styles/
7+
8+
extends: substitution
9+
message: "Use '%s' instead of '%s'."
10+
link: https://developers.cloudflare.com/style-guide/grammar/parts-of-speech/contractions/
11+
level: error
12+
ignorecase: true
13+
action:
14+
name: replace
15+
swap:
16+
are not: aren't
17+
cannot: can't
18+
could not: couldn't
19+
did not: didn't
20+
do not: don't
21+
does not: doesn't
22+
has not: hasn't
23+
have not: haven't
24+
how is: how's
25+
is not: isn't
26+
27+
'it is(?!\.)': it's
28+
'it''s(?=\.)': it is
29+
30+
should not: shouldn't
31+
32+
"that is(?![.,])": that's
33+
'that''s(?=\.)': that is
34+
35+
'they are(?!\.)': they're
36+
'they''re(?=\.)': they are
37+
38+
was not: wasn't
39+
40+
'we are(?!\.)': we're
41+
'we''re(?=\.)': we are
42+
43+
'we have(?!\.)': we've
44+
'we''ve(?=\.)': we have
45+
46+
were not: weren't
47+
48+
'what is(?!\.)': what's
49+
'what''s(?=\.)': what is
50+
51+
'when is(?!\.)': when's
52+
'when''s(?=\.)': when is
53+
54+
'where is(?!\.)': where's
55+
'where''s(?=\.)': where is
56+
57+
will not: won't

0 commit comments

Comments
 (0)