Skip to content

Commit a026b81

Browse files
Merge branch 'production' into kathayl-patch-2
2 parents c4f6258 + 4997bbf commit a026b81

File tree

124 files changed

+1742
-955
lines changed

Some content is hidden

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

124 files changed

+1742
-955
lines changed

.github/CODEOWNERS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,8 @@
123123
/src/content/docs/workers/runtime-apis/bindings/ @irvinebroque @mikenomitch @GregBrimble @cloudflare/pcx-technical-writing
124124
/src/content/docs/workers/platform/ @irvinebroque @tanushree-sharma @GregBrimble @cloudflare/deploy-config @cloudflare/pcx-technical-writing
125125
/src/content/docs/workers/configuration/compatibility-dates/ @irvinebroque @mikenomitch @GregBrimble @cloudflare/deploy-config @cloudflare/pcx-technical-writing
126+
/src/content/docs/workers/configuration/compatibility-flags/ @irvinebroque @mikenomitch @GregBrimble @cloudflare/deploy-config @cloudflare/pcx-technical-writing
127+
126128
/src/content/docs/workers/reference/migrate-to-module-workers/ @irvinebroque @GregBrimble @cloudflare/deploy-config @cloudflare/pcx-technical-writing
127129
/src/content/docs/workers/reference/security-model/ @irvinebroque @GregBrimble @cloudflare/pcx-technical-writing
128130
/src/content/compatibility-dates/ @irvinebroque @kflansburg @mikenomitch @GregBrimble @cloudflare/pcx-technical-writing

astro.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,7 @@ export default defineConfig({
177177
? [
178178
starlightLinksValidator({
179179
errorOnInvalidHashes: false,
180+
errorOnLocalLinks: false,
180181
exclude: [
181182
"/api/",
182183
"/api/operations/**",

package-lock.json

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

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@
3939
"@types/node": "^22.8.7",
4040
"@types/react": "^18.3.12",
4141
"@types/react-dom": "^18.3.1",
42-
"algoliasearch": "^5.12.0",
42+
"algoliasearch": "^5.13.0",
4343
"astro": "^4.16.9",
4444
"astro-breadcrumbs": "^3.2.0",
45-
"astro-icon": "^1.1.1",
46-
"astro-live-code": "^0.0.3",
45+
"astro-icon": "^1.1.2",
46+
"astro-live-code": "^0.0.4",
4747
"date-fns": "^4.1.0",
4848
"detype": "1.0.12",
4949
"dompurify": "3.1.6",
@@ -53,16 +53,16 @@
5353
"hastscript": "^9.0.0",
5454
"he": "^1.2.0",
5555
"instantsearch.css": "^8.5.1",
56-
"instantsearch.js": "^4.75.3",
56+
"instantsearch.js": "^4.75.4",
5757
"lz-string": "^1.5.0",
5858
"marked": "^14.1.3",
59-
"mermaid": "^11.3.0",
59+
"mermaid": "^11.4.0",
6060
"node-html-parser": "^6.1.13",
6161
"patch-package": "^8.0.0",
6262
"playwright": "^1.48.2",
6363
"prettier": "^3.3.3",
6464
"prettier-plugin-astro": "^0.14.1",
65-
"puppeteer": "^23.6.1",
65+
"puppeteer": "^23.7.0",
6666
"react": "^18.3.1",
6767
"react-dom": "^18.3.1",
6868
"react-textarea-autosize": "^8.5.4",
@@ -73,8 +73,8 @@
7373
"rehype-title-figure": "^0.1.2",
7474
"sharp": "^0.33.5",
7575
"solarflare-theme": "^0.0.2",
76-
"starlight-image-zoom": "^0.8.0",
77-
"starlight-links-validator": "^0.12.4",
76+
"starlight-image-zoom": "^0.9.0",
77+
"starlight-links-validator": "^0.13.0",
7878
"starlight-package-managers": "^0.7.0",
7979
"svgo": "^3.3.2",
8080
"tailwindcss": "^3.4.14",

public/_redirects

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1629,6 +1629,7 @@
16291629
/cloudflare-one/connections/connect-networks/install-and-setup/tunnel-guide/local/tunnel-useful-commands/ /cloudflare-one/connections/connect-networks/configure-tunnels/local-management/tunnel-useful-commands/ 301
16301630
/cloudflare-one/connections/connect-networks/install-and-setup/deploy-cloudflared-replicas/ /cloudflare-one/connections/connect-networks/deploy-tunnels/deploy-cloudflared-replicas/ 301
16311631
/cloudflare-one/connections/connect-networks/install-and-setup/tunnel-permissions/ /cloudflare-one/connections/connect-networks/configure-tunnels/local-management/tunnel-permissions/ 301
1632+
/cloudflare-one/connections/connect-networks/install-and-setup/installation /cloudflare-one/connections/connect-networks/downloads/update-cloudflared/ 307
16321633
/cloudflare-one/connections/connect-networks/deploy-tunnels/tunnel-permissions/ /cloudflare-one/connections/connect-networks/configure-tunnels/ 301
16331634
/cloudflare-one/connections/connect-networks/install-and-setup/ports-and-ips/ /cloudflare-one/connections/connect-networks/deploy-tunnels/tunnel-with-firewall/ 301
16341635
/cloudflare-one/connections/connect-networks/install-and-setup/tunnel-useful-terms/ /cloudflare-one/connections/connect-networks/get-started/tunnel-useful-terms/ 301
-9.63 KB
Loading

src/components/GitHubCode.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ if (lines) {
5757
x.includes(`</docs-tag name="${tag}">`),
5858
);
5959
60-
if (!startTag || !endTag) {
60+
if (startTag === -1 || endTag === -1) {
6161
throw new Error(`[GitHubCode] Unable to find a region using tag "${tag}".`);
6262
}
6363

src/content/changelogs/cache.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
link: "/cache/changelog/"
3+
productName: Cache
4+
productLink: "/cache/"
5+
productArea: Application performance
6+
productAreaLink: /fundamentals/reference/changelog/performance/
7+
entries:
8+
- publish_date: "2024-11-07"
9+
title: Shard Cache by cache key
10+
description: |-
11+
For custom cache keys, enterprise customers can now shard their cache using up to three values for previously restricted headers `accept*`, `referer`, and `user-agent`. Sharding the cache can improve cache `HIT` ratio and performance. However, overly sharding your cache, can have the opposite effect.
12+
13+
- publish_date: "2024-11-07"
14+
title: Versioning
15+
description: |-
16+
Cache now supports versioned environments allowing customers to stage configurations and purge staged environments. Note that Cache Reserve is only supported for your production environment.
17+
18+
- publish_date: "2024-09-05"
19+
title: New Cache Rules templates for one-click rule creation
20+
description: |-
21+
The new **Rules** > **Templates** page in the Cloudflare dashboard provides one-click templates for creating cache rules, making it easy to optimize your caching strategy. Access these pre-built templates directly from each product's rule builder, and explore the [Examples gallery](/rules/examples/) in the developer documentation for real-world use cases.
22+
23+
- publish_date: "2024-07-19"
24+
title: Generic tiered cache
25+
description: |-
26+
[Generic Global Tiered Cache](/cache/how-to/tiered-cache/#generic-global-tiered-cache) topology leverages all Cloudflare data centers as upper-tier cache network. It now hashes content within a region reducing duplication in upper-tier caches, which increases cache `HIT` ratio.

src/content/changelogs/queues.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ entries:
3131
description: |-
3232
The default [content type](/queues/configuration/javascript-apis/#queuescontenttype) for messages published to a queue is now `json`, which improves compatibility with the upcoming pull-based queues.
3333
34-
Any Workers created on or after the [compatibility date](/workers/configuration/compatibility-dates/#queues-send-messages-in-json-format) of `2024-03-18`, or that explicitly set the `queues_json_messages` compatibility flag, will use the new default behaviour. Existing Workers with a compatibility date prior will continue to use `v8` as the default content type for published messages.
34+
Any Workers created on or after the [compatibility date](/workers/configuration/compatibility-flags/#queues-send-messages-in-json-format) of `2024-03-18`, or that explicitly set the `queues_json_messages` compatibility flag, will use the new default behaviour. Existing Workers with a compatibility date prior will continue to use `v8` as the default content type for published messages.
3535
- publish_date: "2024-02-24"
3636
title: Explicit retries no longer impact consumer concurrency/scaling.
3737
description: |-

src/content/changelogs/vectorize.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ entries:
5656
description: |-
5757
Vectorize `/query` HTTP endpoint has the following changes:
5858
- `returnVectors` request body property is deprecated in favor of `returnValues` and `returnMetadata` properties.
59-
- Response format has changed to the below format to match [Workers API change]:(/workers/configuration/compatibility-dates/#vectorize-query-with-metadata-optionally-returned)
59+
- Response format has changed to the below format to match [Workers API change]:(/workers/configuration/compatibility-flags/#vectorize-query-with-metadata-optionally-returned)
6060
6161
```json
6262
{

0 commit comments

Comments
 (0)