Skip to content

Commit b088aa7

Browse files
authored
[Chore] Release notes updates (#21818)
* [Docs site] Collapse some release notes * cleanup * SSL * logs and fundamentals * cache * logs bug * added redirects * exclude hidden values * Remove some logic * Api shield * remove area logic for now
1 parent a90aade commit b088aa7

File tree

17 files changed

+294
-250
lines changed

17 files changed

+294
-250
lines changed

public/__redirects

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@
99

1010
# changelog
1111
/changelog/rss.xml /changelog/rss/index.xml 301
12+
/api-shield/changelog/index.xml /changelog/rss/api-shield.xml 301
13+
/cache/changelog/index.xml /changelog/rss/cache.xml 301
14+
/dns/changelog/index.xml /changelog/rss/dns.xml 301
15+
/fundamentals/changelog/index.xml /changelog/rss/fundamentals.xml 301
16+
/logs/changelog/index.xml /changelog/rss/logs.xml 301
17+
/ssl/changelog/index.xml /changelog/rss/ssl.xml 301
1218

1319
## legacy
1420
/changelog/index.xml /release-notes/index.xml 301
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
---
2+
import { getChangelogs, type GetChangelogsOptions } from "~/util/changelog";
3+
import { reference } from "astro:content";
4+
import { z } from "astro:schema";
5+
import { getCollection, render } from "astro:content";
6+
import { slug } from "github-slugger";
7+
import RSSButton from "~/components/RSSButton.astro";
8+
import AnchorHeading from "~/components/AnchorHeading.astro";
9+
import { format } from "date-fns";
10+
const props = z
11+
.object({
12+
product: reference("products"),
13+
})
14+
.or(
15+
z.object({
16+
area: z.string(),
17+
}),
18+
);
19+
const input = await props.parseAsync(Astro.props);
20+
let filter: GetChangelogsOptions["filter"];
21+
let rss: string;
22+
if ("product" in input) {
23+
rss = `/changelog/rss/${input.product.id}.xml`;
24+
filter = (e) => {
25+
return !e.data.hidden && e.data.products.some(({ id }) => id === input.product.id);
26+
};
27+
} else {
28+
rss = `/changelog/rss/${slug(input.area)}.xml`;
29+
const products = await getCollection("products", (e) => {
30+
return e.data.product.group === input.area;
31+
});
32+
filter = (e) => {
33+
return e.data.products.some((x) => products.some((y) => x.id === y.id));
34+
};
35+
}
36+
const changelogs = await getChangelogs({ filter });
37+
---
38+
39+
<RSSButton href={rss} />
40+
41+
{
42+
changelogs.map(async (entry) => {
43+
44+
45+
const { Content } = await render(entry);
46+
return (
47+
<AnchorHeading depth={2} title={format(entry.data.date, "yyyy-MM-dd")} />
48+
<br/>
49+
<strong>{entry.data.title}</strong>
50+
<br/>
51+
<Content />
52+
);
53+
})
54+
}

src/components/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ export { default as PagesBuildPresetsTable } from "./PagesBuildPresetsTable.astr
4242
export { default as PagesLanguageSupport } from "./PagesLanguageSupport.astro";
4343
export { default as Plan } from "./Plan.astro";
4444
export { default as PlanInfo } from "./PlanInfo.astro";
45+
export { default as ProductChangelog } from "./ProductChangelog.astro";
4546
export { default as ProductReleaseNotes } from "./ProductReleaseNotes.astro";
4647
export { default as ProductFeatures } from "./ProductFeatures.astro";
4748
export { default as ProductsByTag } from "./ProductsByTag.astro";

src/content/changelog/access/2025-03-03-saml-oidc-fields-saml-transformations.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ date: 2025-03-03T6:00:00Z
66

77
[Access for SaaS applications](/cloudflare-one/applications/configure-apps/saas-apps/) now include more configuration options to support a wider array of SaaS applications.
88

9-
### SAML and OIDC Field Additions
9+
**SAML and OIDC Field Additions**
1010

1111
OIDC apps now include:
1212

@@ -21,7 +21,7 @@ SAML apps now include improved SAML attribute mapping from an IdP.
2121

2222
![SAML field additions](~/assets/images/changelog/access/saml-attribute-statements.png)
2323

24-
### SAML transformations
24+
**SAML transformations**
2525

2626
SAML identities sent to Access applications can be fully customized using JSONata expressions. This allows admins to configure the precise identity SAML statement sent to a SaaS application.
2727

src/content/changelog/cache/2025-02-04-easier-onboarding-for-csam-scanning-tool.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ date: 2025-02-04T12:00:00Z
88

99
You can now implement our **child safety tooling**, the **[CSAM Scanning Tool](/cache/reference/csam-scanning/)**, more easily. Instead of requiring external reporting credentials, you only need a verified email address for notifications to onboard. This change makes the tool more accessible to a wider range of customers.
1010

11-
## **How It Works**
11+
**How It Works**
1212

13-
When enabled, the tool automatically [hashes images for enabled websites as they enter the Cloudflare cache](https://blog.cloudflare.com/the-csam-scanning-tool/). These hashes are then checked against a database of **known abusive images**.
13+
When enabled, the tool automatically [hashes images for enabled websites as they enter the Cloudflare cache](https://blog.cloudflare.com/the-csam-scanning-tool/). These hashes are then checked against a database of **known abusive images**.
1414

15-
- **Potential match detected?**
16-
- The **content URL is blocked**, and
17-
- **Cloudflare will notify you** about the found matches via the provided email address.
15+
- **Potential match detected?**
16+
- The **content URL is blocked**, and
17+
- **Cloudflare will notify you** about the found matches via the provided email address.
1818

19-
## **Updated Service-Specific Terms**
19+
**Updated Service-Specific Terms**
2020

2121
We have also made updates to our **[Service-Specific Terms](https://www.cloudflare.com/service-specific-terms-application-services/#csam-scanning-tool-terms)** to reflect these changes.
Lines changed: 75 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,84 @@
11
---
22
pcx_content_type: changelog
33
title: Changelog
4-
release_notes_file_name:
5-
- api-shield
64
sidebar:
75
order: 10
86
---
97

10-
import { ProductReleaseNotes } from "~/components";
8+
import { ProductChangelog } from "~/components";
119

12-
{/* <!-- Actual content lives in /src/content/release-notes/api-shield.yaml. Update the file there for new entries to appear here. For more details, refer to https://developers.cloudflare.com/style-guide/documentation-content-strategy/content-types/changelog/#yaml-file --> */}
10+
{/* <!-- Actual content lives in /src/content/changelog/api-shield/. Update the file there for new entries to appear here. */}
1311

14-
<ProductReleaseNotes />
12+
<ProductChangelog product="api-shield" />
13+
14+
## 2025-02-17
15+
16+
**New automatically applied risk labels**
17+
18+
API Shield now automatically labels endpoints with risks due to missing schemas and performance anomalies (spikes in error rates, latency, and body response sizes).
19+
20+
## 2025-01-16
21+
22+
**API Authentication Posture**
23+
24+
Customers will see per-endpoint authentication details inside API Shield's [Endpoint Management](/api-shield/management-and-monitoring/) for zones with configured session identifiers.
25+
26+
## 2024-12-19
27+
28+
**Automatically applied endpoint risk labels**
29+
30+
API Shield now automatically labels endpoints with risks due to authentication status and sensitive data detection.
31+
32+
## 2024-11-04
33+
34+
**Endpoint labels**
35+
36+
Customers can now organize their endpoints by use case and custom labels in [Endpoint Management](/api-shield/management-and-monitoring/endpoint-labels/) for easy reference and future machine learning (ML) model training.
37+
38+
## 2024-10-18
39+
40+
**API Shield fields in Custom Rules**
41+
42+
Customers can now use API Shield product feature fields in [custom rules](/waf/custom-rules/), referencing features such as [JWT Validation](/api-shield/security/jwt-validation/), [session identifiers](/api-shield/get-started/#session-identifiers), and [Schema Validation](/api-shield/security/schema-validation/).
43+
44+
## 2024-09-25
45+
46+
**Fallthrough rule for Schema Validation 2.0**
47+
48+
Customers can now enable the [Fallthrough Action](/api-shield/security/schema-validation/#add-validation-by-adding-a-fallthrough-rule) for Schema Validation 2.0 to block or log requests that do not match the endpoints listed in schemas protected by Schema Validation 2.0.
49+
50+
## 2024-08-28
51+
52+
**Increased capacity for Endpoint Management and Schema Validation**
53+
54+
Endpoint Management and Schema Validation now support up to 10,000 saved and validated API endpoints.
55+
56+
## 2024-07-08
57+
58+
**API Discovery's hostname variables**
59+
60+
Customers can now see when [API Discovery](/api-shield/security/api-discovery/) groups similar subdomains with the same methods and paths, making it easy to discover and manage APIs that share many vanity domains or subdomains.
61+
62+
## 2024-07-02
63+
64+
**Route API requests using API Routing**
65+
66+
Customers can now route requests to different back-end services through [API Routing](/api-shield/management-and-monitoring/api-routing/), creating a unified front for their APIs distributed across otherwise disparate systems.
67+
68+
## 2024-05-13
69+
70+
**Use JWT claims in Advanced Rate Limiting, Transform Rules, and as session IDs**
71+
72+
Customers can now use the fields inside [JSON Web Tokens (known as claims)](/api-shield/security/jwt-validation/transform-rules/#enhance-transform-rules-with-jwt-claims) as [session identifiers in API Shield](/api-shield/get-started/#session-identifiers), to count values in [Advanced Rate Limiting](/waf/rate-limiting-rules/), and to send on useful information in [Transform Rules](/rules/transform/#transform-rules).
73+
74+
## 2024-04-30
75+
76+
**Build Sequence Mitigation rules via the Cloudflare dashboard**
77+
78+
Customers can now build [Sequence Mitigation](/api-shield/security/sequence-mitigation/) rules with a new user interface inside the API Shield section of the [Cloudflare dashboard](https://dash.cloudflare.com/).
79+
80+
## 2024-02-23
81+
82+
**Endpoint Management supports hostname variables**
83+
84+
Customers can now save endpoints in [Endpoint Management](/api-shield/management-and-monitoring/) that contain variables in the hostname. Hostname variables are supported across all product features.
Lines changed: 39 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,48 @@
11
---
22
pcx_content_type: changelog
33
title: Changelog
4-
release_notes_file_name:
5-
- cache
64
sidebar:
75
order: 12
86
---
97

10-
import { ProductReleaseNotes } from "~/components";
8+
import { ProductChangelog } from "~/components";
119

12-
{/* <!-- Actual content lives in /src/content/release-notes/cache.yaml. Update the file there for new entries to appear here. For more details, refer to https://developers.cloudflare.com/style-guide/documentation-content-strategy/content-types/changelog/#yaml-file --> */}
10+
{/* <!-- Actual content lives in /src/content/changelog/cache/. Update the file there for new entries to appear here */}
1311

14-
<ProductReleaseNotes />
12+
<ProductChangelog product="cache" />
13+
14+
## 2025-01-08
15+
16+
**Smart Tiered Cache for Load balancing**
17+
18+
Smart Tiered Cache will now select a common single best Upper Tier for an entire Load Balancing Pool based on Origin performance measurements, increasing the cache HIT ratio.
19+
20+
## 2024-11-20
21+
22+
**Smart Tiered Cache for R2**
23+
24+
R2 now automatically gets tiered cache if using Smart Tiered Cache. We select a data center close to your R2 storage bucket as a common Upper Tier cache.
25+
26+
## 2024-11-07
27+
28+
**Shard Cache by cache key**
29+
30+
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.
31+
32+
## 2024-11-07
33+
34+
**Versioning**
35+
36+
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.
37+
38+
## 2024-09-05
39+
40+
**New Cache Rules templates for one-click rule creation**
41+
42+
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.
43+
44+
## 2024-07-19
45+
46+
**Generic tiered cache**
47+
48+
[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/docs/dns/changelog.mdx

Lines changed: 24 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,33 @@
11
---
22
pcx_content_type: changelog
33
title: Changelog
4-
release_notes_file_name:
5-
- dns
64
sidebar:
75
order: 25
86
---
97

10-
import { ProductReleaseNotes } from "~/components";
8+
import { ProductChangelog } from "~/components";
119

12-
{/* <!-- Actual content lives in /src/content/release-notes/dns.yaml. Update the file there for new entries to appear here. For more details, refer to https://developers.cloudflare.com/style-guide/documentation-content-strategy/content-types/changelog/#yaml-file --> */}
10+
{/* <!-- Actual content lives in /src/content/changelogs/dns/. Update the file there for new entries to appear here. */}
1311

14-
<ProductReleaseNotes />
12+
<ProductChangelog product="dns"/>
13+
14+
## 2025-01-27
15+
16+
**Zone IDs and names on individual DNS records**
17+
18+
Records returned by the API will no longer contain the `zone_id` and `zone_name` fields. This change may take up to four weeks to fully roll out. The affected fields were deprecated with an End of Life (EOL) date of November 30, 2024.
19+
20+
## 2024-10-15
21+
22+
**Quote validation for TXT records added via dashboard**
23+
24+
When creating [TXT records](/dns/manage-dns-records/reference/dns-record-types/#txt) via the dashboard you will now find:
25+
26+
* Field validation errors if double quotes `"` are added inconsistently.
27+
* Automatically quoted TXT content upon save if no quotes exist in the record content field.
28+
29+
## 2024-10-07
30+
31+
**API support for per-record CNAME flattening**
32+
33+
Paid zones now have the option to flatten specific CNAME records. When using the API, specify the setting `cname_flatten` as `true` or `false`. Refer to the [documentation](/dns/cname-flattening/set-up-cname-flattening/#per-record) for details.
Lines changed: 61 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,70 @@
11
---
22
pcx_content_type: changelog
33
title: Changelog
4-
release_notes_file_name:
5-
- fundamentals
64
sidebar:
75
order: 9
86
---
97

10-
import { ProductReleaseNotes } from "~/components";
8+
import { ProductChangelog } from "~/components";
119

12-
{/* <!-- Actual content lives in /src/content/release-notes/fundamentals.yaml. Update the file there for new entries to appear here. For more details, refer to https://developers.cloudflare.com/style-guide/documentation-content-strategy/content-types/changelog/#yaml-file --> */}
10+
{/* <!-- Actual content lives in /src/content/changelog/fundamentals/. Update the file there for new entries to appear here. */}
1311

14-
<ProductReleaseNotes />
12+
<ProductChangelog product="fundamentals" />
13+
14+
## 2025-01-28
15+
16+
**Terraform Provider is now automatically generated**
17+
18+
With the version 5 release of Cloudflare's Terraform Provider, Terraform resources are now being automatically generated based on OpenAPI Schemas. This change brings alignment across our SDKs, API Documentation, and now Terraform Provider. The new provider boosts coverage by increasing API properties to 100%, adding 25% more resources, and more than 200 additional data sources.
19+
20+
Warning: Version 5 of the Cloudflare Terraform Provider is a ground-up rewrite of the provider and introduces breaking changes.
21+
22+
Refer to the [upgrade guide](https://registry.terraform.io/providers/cloudflare/cloudflare/latest/docs/guides/version-5-upgrade) for best practices, or the [blog post on automatically generating Cloudflare’s Terraform Provider](https://blog.cloudflare.com/automatically-generating-cloudflares-terraform-provider/) for more information.
23+
24+
## 2024-12-18
25+
26+
**Use account owned tokens to manage other account owned tokens**
27+
28+
Cloudflare's token management now allows users to set up a primary account owned token where they can manage all other account owned tokens.
29+
30+
Refer to [Account owned tokens documentation](/fundamentals/api/get-started/account-owned-tokens/) for more details.
31+
32+
## 2024-12-16
33+
34+
**Cloudflare API docs are now automatically generated**
35+
36+
Cloudflare's API documentation is now being automatically generated based on OpenAPI Schemas, and we have retired our old documentation. The move to OpenAPI Schemas allows us to ensure greater consistency and quality across our API documentation. The documentation now also includes examples of how to call the API using curl or our SDKs.
37+
38+
Refer to the [Cloudflare API documentation](/api/), or the [blog post on our transition to OpenAPI](https://blog.cloudflare.com/open-api-transition/) for more information.
39+
40+
## 2024-12-06
41+
42+
**Dashboard SCIM is now fully self-serve**
43+
44+
Dashboard SCIM is now self-serve. Previously, users configuring SCIM required assistance from Cloudflare to configure SCIM to onboard users. Now, with account owned tokens, SCIM can be configured by Enterprise customers that use Okta or Microsoft Entra without any assistance from Cloudflare.
45+
46+
Refer to the [SCIM documentation](/fundamentals/setup/account/account-security/scim-setup/) for more details.
47+
48+
## 2024-09-26
49+
50+
**Account owned tokens**
51+
52+
Account owned tokens are now generally available. Unlike user-owned tokens, account owned tokens are tied with the Cloudflare account instead of the user that created them. This ensures that long term integrations like CI/CD are not broken if the user that set it up leaves your organization.
53+
54+
Refer to the [Account owned tokens documentation](/fundamentals/api/get-started/account-owned-tokens/) or the [blog post](https://blog.cloudflare.com/account-owned-tokens-automated-actions-zaraz/) for more details.
55+
56+
## 2024-09-24
57+
58+
**Terraform v5 SDK preview**
59+
60+
The Terraform v5 Provider is now available as a preview. This new provider is automatically generated based on the OpenAPI Specifications for our REST API, and provides improved user experiences overall.
61+
62+
Refer to the [Terraform documentation](https://registry.terraform.io/providers/cloudflare/cloudflare/latest/docs/guides/version-5-upgrade) or the [blog post](https://blog.cloudflare.com/automatically-generating-cloudflares-terraform-provider/) for more details.
63+
64+
## 2024-09-24
65+
66+
**API Documentation Preview**
67+
68+
Cloudflare's API documentation is now [available in preview](/api/) with new automatically generated documentation. This documentation includes code snippets that refer to language-specific SDKs to make it easier to get started than ever.
69+
70+
Refer to the [blog post](https://blog.cloudflare.com/automatically-generating-cloudflares-terraform-provider/) for more details.

0 commit comments

Comments
 (0)