Skip to content

Commit 7e6d351

Browse files
Merge branch 'production' into marcio/pcx14348-connector-hcs
2 parents 26cbdb1 + 1535d6e commit 7e6d351

File tree

808 files changed

+12658
-4067
lines changed

Some content is hidden

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

808 files changed

+12658
-4067
lines changed

.github/CODEOWNERS

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242

4343
# Browser Rendering API
4444

45-
/src/content/docs/browser-rendering/ @tanushree-sharma @mchenco @cloudflare/pcx-technical-writing @celso @meddulla
45+
/src/content/docs/browser-rendering/ @mchenco @cloudflare/pcx-technical-writing @celso @meddulla
4646

4747
# Cloudflare One
4848

@@ -121,7 +121,7 @@
121121
/src/content/docs/workers/ci-cd/ @irvinebroque @aninibread @GregBrimble @ToriLindsay @cloudflare/pcx-technical-writing
122122
/src/content/docs/workers/runtime-apis/ @irvinebroque @jasnell @mikenomitch @GregBrimble @ToriLindsay @cloudflare/pcx-technical-writing
123123
/src/content/docs/workers/runtime-apis/bindings/ @irvinebroque @mikenomitch @GregBrimble @ToriLindsay @cloudflare/pcx-technical-writing
124-
/src/content/docs/workers/platform/ @irvinebroque @tanushree-sharma @GregBrimble @cloudflare/deploy-config @cloudflare/pcx-technical-writing
124+
/src/content/docs/workers/platform/ @irvinebroque @GregBrimble @cloudflare/deploy-config @cloudflare/pcx-technical-writing
125125
/src/content/docs/workers/configuration/compatibility-dates/ @irvinebroque @mikenomitch @GregBrimble @ToriLindsay @cloudflare/deploy-config @cloudflare/pcx-technical-writing
126126
/src/content/docs/workers/configuration/compatibility-flags/ @irvinebroque @mikenomitch @GregBrimble @ToriLindsay @cloudflare/deploy-config @cloudflare/pcx-technical-writing
127127

@@ -130,11 +130,11 @@
130130
/src/content/compatibility-flags/ @irvinebroque @mikenomitch @GregBrimble @cloudflare/pcx-technical-writing
131131
/src/content/docs/workers/wrangler/ @cloudflare/wrangler @cloudflare/wrangler-friends @irvinebroque @ToriLindsay @cloudflare/pcx-technical-writing
132132
/src/content/docs/workers/frameworks/ @igorminar @dario-piotrowicz @jculvey @aninibread @GregBrimble @ToriLindsay @cloudflare/pcx-technical-writing
133-
/src/content/docs/pages/framework-guides/ @igorminar @dario-piotrowicz @jculvey @aninibread @GregBrimble @tanushree-sharma @ToriLindsay @cloudflare/pcx-technical-writing
133+
/src/content/docs/pages/framework-guides/ @igorminar @dario-piotrowicz @jculvey @aninibread @GregBrimble @ToriLindsay @cloudflare/pcx-technical-writing
134134
/src/content/docs/analytics/analytics-engine/ @irvinebroque @elithrar @cloudflare/pcx-technical-writing
135-
/cloudflare-for-platforms/workers-for-platforms/ @irvinebroque @tanushree-sharma @angelampcosta @GregBrimble @cloudflare/deploy-config @cloudflare/pcx-technical-writing
135+
/cloudflare-for-platforms/workers-for-platforms/ @irvinebroque @angelampcosta @GregBrimble @cloudflare/deploy-config @cloudflare/pcx-technical-writing
136136
/src/content/docs/workers/observability/ @irvinebroque @mikenomitch @rohinlohe @ToriLindsay @cloudflare/pcx-technical-writing
137-
/src/content/docs/workers/static-assets @irvinebroque @tanushree-sharma @GregBrimble @WalshyDev @ToriLindsay @cloudflare/deploy-config @cloudflare/pcx-technical-writing
137+
/src/content/docs/workers/static-assets @irvinebroque @GregBrimble @WalshyDev @ToriLindsay @cloudflare/deploy-config @cloudflare/pcx-technical-writing
138138
/src/content/docs/workflows/ @ToriLindsay @elithrar @celso @sidharthachatterjee @cloudflare/pcx-technical-writing
139139

140140
# DDoS Protection

astro.config.ts

Lines changed: 13 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -174,14 +174,15 @@ export default defineConfig({
174174
"./src/tooltips.css",
175175
],
176176
pagination: false,
177-
plugins: runLinkCheck
178-
? [
177+
plugins: [
178+
...(runLinkCheck
179+
? [
179180
starlightLinksValidator({
180181
errorOnInvalidHashes: false,
181182
errorOnLocalLinks: false,
182183
exclude: [
183184
"/api/",
184-
"/api/operations/**",
185+
"/api/**",
185186
"/changelog/",
186187
"/http/resources/**",
187188
"{props.*}",
@@ -196,21 +197,16 @@ export default defineConfig({
196197
"/workers-ai/models/**",
197198
],
198199
}),
199-
starlightDocSearch({
200-
appId: "8MU1G3QO9P",
201-
apiKey: "4edb0a6cef3338ff4bcfbc6b3d2db56b",
202-
indexName: "TEST - Re-dev docs",
203-
}),
204-
starlightImageZoom(),
205200
]
206-
: [
207-
starlightDocSearch({
208-
appId: "8MU1G3QO9P",
209-
apiKey: "4edb0a6cef3338ff4bcfbc6b3d2db56b",
210-
indexName: "TEST - Re-dev docs",
211-
}),
212-
starlightImageZoom(),
213-
],
201+
: []),
202+
starlightDocSearch({
203+
appId: "D32WIYFTUF",
204+
apiKey: "5cec275adc19dd3bc17617f7d9cf312a",
205+
indexName: "prod_devdocs",
206+
insights: true,
207+
}),
208+
starlightImageZoom(),
209+
],
214210
}),
215211
tailwind({
216212
applyBaseStyles: false,

functions/api/[[path]].ts

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

functions/api/redirects.ts

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

functions/schema.ts

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

functions/tsconfig.json

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

0 commit comments

Comments
 (0)