Skip to content

Commit db2047e

Browse files
authored
Merge branch 'cloudflare:production' into production
2 parents 6ecac05 + c8f955a commit db2047e

File tree

40 files changed

+1457
-688
lines changed

40 files changed

+1457
-688
lines changed

.github/CODEOWNERS

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@
118118
/src/content/release-notes/kv.yaml @elithrar @thomasgauvin @rts-rob @oxyjun @cloudflare/pcx-technical-writing
119119
/src/content/partials/kv/ @elithrar @thomasgauvin @rts-rob @oxyjun @cloudflare/pcx-technical-writing
120120
/src/content/docs/pub-sub/ @elithrar @dcpena @cloudflare/pcx-technical-writing
121-
/src/content/docs/queues/ @elithrar @jonesphillip @harshil1712 @cloudflare/pcx-technical-writing
121+
/src/content/docs/queues/ @elithrar @jonesphillip @harshil1712 @mia303 @cloudflare/pcx-technical-writing
122122
/src/content/release-notes/queues.yaml @elithrar @jonesphillip @cloudflare/pcx-technical-writing
123123
/src/content/docs/r2/ @oxyjun @elithrar @jonesphillip @aninibread @harshil1712 @cloudflare/workers-docs @cloudflare/pcx-technical-writing
124124
/src/content/release-notes/r2.yaml @oxyjun @elithrar @aninibread @cloudflare/workers-docs @cloudflare/pcx-technical-writing
@@ -142,7 +142,7 @@
142142
/src/content/docs/cloudflare-for-platforms/workers-for-platforms/ @irvinebroque @dinasaur404 @cloudflare/deploy-config @cloudflare/pcx-technical-writing
143143
/src/content/docs/workers/observability/ @irvinebroque @mikenomitch @nevikashah @kodster28 @cloudflare/pcx-technical-writing
144144
/src/content/docs/workers/static-assets @irvinebroque @GregBrimble @WalshyDev @kodster28 @cloudflare/deploy-config @cloudflare/pcx-technical-writing
145-
/src/content/docs/workflows/ @elithrar @celso @cloudflare/pcx-technical-writing
145+
/src/content/docs/workflows/ @elithrar @celso @mia303 @cloudflare/pcx-technical-writing
146146
/src/content/docs/sandbox/ @whoiskatrin @ghostwriternr @cloudflare/pcx-technical-writing @cloudflare/ai-agents
147147

148148
# DDoS Protection

.github/workflows/publish-production.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,10 @@ jobs:
5151
cd ..
5252
5353
cd distllms
54-
for file in $(find . -type f); do
55-
rclone copy \
56-
--config ../bin/rclone.conf \
57-
$file \
58-
devdocs:vendored-markdown
59-
done
54+
rclone copy --max-depth 2 \
55+
--config ../bin/rclone.conf \
56+
. \
57+
devdocs:vendored-markdown
6058
cd ..
6159
- name: Upload vendored Markdown files to ZT DevDocs bucket
6260
env:

package-lock.json

Lines changed: 73 additions & 65 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"@astrojs/starlight-docsearch": "0.6.0",
3737
"@astrojs/starlight-tailwind": "4.0.1",
3838
"@cloudflare/vitest-pool-workers": "0.9.11",
39-
"@cloudflare/workers-types": "4.20250927.0",
39+
"@cloudflare/workers-types": "4.20251111.0",
4040
"@codingheads/sticky-header": "1.0.2",
4141
"@expressive-code/plugin-collapsible-sections": "0.41.3",
4242
"@expressive-code/plugin-line-numbers": "0.41.3",
@@ -136,7 +136,7 @@
136136
"unist-util-visit": "5.0.0",
137137
"vite-tsconfig-paths": "5.1.4",
138138
"vitest": "2.1.6",
139-
"wrangler": "4.40.2"
139+
"wrangler": "4.48.0"
140140
},
141141
"engines": {
142142
"node": ">=22"

public/__redirects

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1126,6 +1126,9 @@
11261126
/magic-wan/reference/tunnels/ /magic-wan/reference/gre-ipsec-tunnels/ 301
11271127
/magic-wan/reference/magic-tunnels/ /magic-wan/reference/how-cloudflare-calculates-magic-tunnel-health-alerts/ 301
11281128

1129+
# network
1130+
/network/response-buffering/ /network/ 301
1131+
11291132
# notifications
11301133
/fundamentals/notifications/ /notifications/ 301
11311134
/notifications/create-notifications/ /notifications/get-started/ 301
@@ -1221,6 +1224,7 @@
12211224

12221225
# pipelines
12231226
/pipelines/concepts/how-pipelines-work/ /pipelines/ 301
1227+
/pipelines/platform/wrangler-commands/ /pipelines/reference/wrangler-commands/ 301
12241228

12251229
# queues
12261230
/queues/configuration/ /queues/configuration/configure-queues/ 301
@@ -1436,7 +1440,7 @@
14361440
/support/more-dashboard-apps/cloudflare-stream/delivering-videos-with-cloudflare/ /fundamentals/reference/policies-compliances/delivering-videos-with-cloudflare/ 301
14371441
/support/network/ /network/ 301
14381442
/support/network/configuring-ip-geolocation/ /network/ip-geolocation/ 301
1439-
/support/network/setting-up-response-buffering/ /network/response-buffering/ 301
1443+
/support/network/setting-up-response-buffering/ /network/ 301
14401444
/support/network/using-cloudflare-with-websockets/ /network/websockets/ 301
14411445
/support/network/understanding-and-configuring-cloudflares-ipv6-support/ /network/ipv6-compatibility/ 301
14421446
/support/network/understanding-cloudflare-http2-and-http3-support/ /speed/optimization/protocol/ 301

src/components/WranglerArg.astro

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,14 @@ const { key, definition } = props.parse(Astro.props);
1414
1515
const type = definition.type ?? definition.choices;
1616
const description = definition.description ?? definition.describe;
17+
const sanitizedDescription = description
18+
.replace(/</g, "&lt;")
19+
.replace(/>/g, "&gt;");
1720
const required = definition.demandOption;
1821
const defaultValue = definition.default;
1922
const alias = definition.alias;
20-
const positional = definition.positionalArgs?.includes(key);
2123
22-
const name = positional ? `[${key.toUpperCase()}]` : `--${key}`;
24+
const name = definition.positional ? `[${key.toUpperCase()}]` : `--${key}`;
2325
2426
let typeText;
2527
if (Array.isArray(type)) {
@@ -44,5 +46,5 @@ if (alias) {
4446
{aliasText && <MetaInfo text={aliasText} />}
4547
{required && <MetaInfo text="required" />}
4648
{defaultValue !== undefined && <MetaInfo text={`default: ${defaultValue}`} />}
47-
<Fragment set:html={marked.parse(description)} />
49+
<Fragment set:html={marked.parse(sanitizedDescription)} />
4850
</li>

0 commit comments

Comments
 (0)