Skip to content

Commit f57a162

Browse files
committed
Merge branch 'production' into release-notes-migration-work
2 parents b1e86c1 + 2d94b4b commit f57a162

File tree

23 files changed

+77
-22
lines changed

23 files changed

+77
-22
lines changed

.hyperlint/.vale.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
StylesPath = ./automations/styles
1+
StylesPath = automations/styles
22
MinAlertLevel = suggestion
33
IgnoredScopes = code, tt, img
44
SkippedScopes = script, style, pre, figure, code
@@ -17,4 +17,4 @@ Vale.Spelling = NO
1717

1818
[*.yaml]
1919
BasedOnStyles = Vale, cloudflare, cloudflare-automation
20-
Vale.Spelling = NO
20+
Vale.Spelling = NO

src/content/changelog/agents/2025-03-18-npm-i-agents.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ We've added a number of big new features to the Agents SDK over the past few wee
4343

4444
- You can now set `cors: true` when using `routeAgentRequest` to return permissive default CORS headers to Agent responses.
4545
- The regular client now syncs state on the agent (just like the React version).
46-
- `useAgentChat` bug fixes for passing headers/credentials, includng properly clearing cache on unmount.
46+
- `useAgentChat` bug fixes for passing headers/credentials, including properly clearing cache on unmount.
4747
- Experimental `/schedule` module with a prompt/schema for adding scheduling to your app (with evals!).
4848
- Changed the internal `zod` schema to be compatible with the limitations of Google's Gemini models by removing the discriminated union, allowing you to use Gemini models with the scheduling API.
4949

src/content/changelog/autorag/2025-04-07-autorag-open-beta.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ products:
77
date: 2025-04-07T6:00:00Z
88
---
99

10-
[AutoRAG](/autorag) is now in open beta, making it easy for you to build fully-managed retrieval-augmented generation (RAG) pipelines without managing infrasturcture. Just upload your docs to [R2](/r2/get-started/), and AutoRAG handles the rest: embeddings, indexing, retrieval, and response generation via API.
10+
[AutoRAG](/autorag) is now in open beta, making it easy for you to build fully-managed retrieval-augmented generation (RAG) pipelines without managing infrastructure. Just upload your docs to [R2](/r2/get-started/), and AutoRAG handles the rest: embeddings, indexing, retrieval, and response generation via API.
1111

1212
![AutoRAG open beta demo](~/assets/images/changelog/autorag/autorag-open-beta.gif)
1313

src/content/changelog/kv/2025-04-10-kv-bulk-reads.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This makes it easier to request multiple KV pairs within a single Worker invocat
1212
```js
1313
// Read single key
1414
const key = "key-a";
15-
const value = await env.NAMESPACE.get(keys);
15+
const value = await env.NAMESPACE.get(key);
1616

1717
// Read multiple keys
1818
const keys = ["key-a", "key-b", "key-c", ...] // up to 100 keys

src/content/changelog/logs/2025-03-06-oneclick-logpush.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ This enhancement makes it easier for customers to adopt Logpush and R2.
1212

1313
For more details refer to our [Logs](/logs/get-started/enable-destinations/r2/) documentation.
1414

15-
![One CLick Logpush to R2](src/assets/images/changelog/logs/Oneclick.gif)
15+
![One-click Logpush to R2](src/assets/images/changelog/logs/Oneclick.gif)
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
title: Custom fields raw and transformed values support
3+
description: Configure request header and response headers values can log eiterh raw or transformed value
4+
date: 2025-04-18T11:00:00Z
5+
---
6+
7+
Custom Fields now support logging both **raw and transformed values** for request and response headers in the HTTP requests dataset.
8+
9+
These fields are configured per zone and apply to all Logpush jobs in that zone that include request headers, response headers. Each header can be logged in only one format—either raw or transformed—not both.
10+
11+
By default:
12+
13+
- Request headers are logged as raw values
14+
- Response headers are logged as transformed values
15+
16+
These defaults can be overidden to suit your logging needs.
17+
18+
:::note
19+
20+
Transformed and raw values for request and response headers are available **only via the API** and cannot be set through the UI.
21+
:::
22+
23+
For more information refer to [Custom fields](/logs/reference/custom-fields/) documentation

src/content/changelog/magic-cloud-networking/2024-12-05-cloud-onramp-terraform.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Generate customized terrform files for building cloud network on-ramps
2+
title: Generate customized terraform files for building cloud network on-ramps
33
description: Download cloud onramp terraform
44
date: 2024-12-05T11:00:00Z
55
---

src/content/changelog/magic-firewall/2024-10-02-custom-rule-search.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ The Magic Firewall dashboard now allows you to search custom rules using the rul
1515

1616
Additionally, the rule ID URL link has been added to Network Analytics.
1717

18-
For more details abour rules, refer to [Add rules](/magic-firewall/how-to/add-rules/).
18+
For more details about rules, refer to [Add rules](/magic-firewall/how-to/add-rules/).

src/content/docs/cloudflare-one/changelog/access.mdx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ description: Review recent changes to Cloudflare Access.
1010

1111
---
1212

13-
import { ProductReleaseNotes } from "~/components"
13+
import { ProductReleaseNotes, Render } from "~/components"
14+
15+
<Render file="changelog-note" />
1416

1517
{/* <!-- All changelog entries live in src/content/changelogs/access.yaml. For more details, refer to https://developers.cloudflare.com/style-guide/documentation-content-strategy/content-types/changelog/#yaml-file --> */}
1618

src/content/docs/cloudflare-one/changelog/browser-isolation.mdx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ description: Review recent changes to Cloudflare Browser Isolation.
1010

1111
---
1212

13-
import { ProductReleaseNotes } from "~/components"
13+
import { ProductReleaseNotes, Render } from "~/components"
14+
15+
<Render file="changelog-note" />
1416

1517
{/* <!-- All changelog entries live in src/content/changelogs/browser-isolation.yaml. For more details, refer to https://developers.cloudflare.com/style-guide/documentation-content-strategy/content-types/changelog/#yaml-file --> */}
1618

0 commit comments

Comments
 (0)