Skip to content

Commit badf88a

Browse files
committed
logs and fundamentals
1 parent 6bb4b88 commit badf88a

File tree

8 files changed

+76
-88
lines changed

8 files changed

+76
-88
lines changed

public/__redirects

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
# changelog
1111
/changelog/rss.xml /changelog/rss/index.xml 301
1212
/dns/changelog/index.xml /changelog/rss/dns.xml 301
13+
/logs/changelog/index.xml /changelog/rss/logs.xml 301
14+
/fundamentals/changelog/index.xml /changelog/rss/fundamentals.xml 301
1315
/ssl/changelog/index.xml /changelog/rss/ssl.xml 301
1416

1517
## legacy

src/components/ProductChangelog.astro

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ const changelogs = await getChangelogs({ filter });
4646
const { Content } = await render(entry);
4747
return (
4848
<AnchorHeading depth={2} title={format(entry.data.date, "yyyy-MM-dd")} />
49+
<br/>
4950
<strong>{entry.data.title}</strong>
51+
<br/>
5052
<Content />
5153
);
5254
})
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.

src/content/docs/logs/changelog.mdx

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,16 @@ sidebar:
77
order: 140
88
---
99

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

12-
{/* <!-- Actual content lives in /src/content/release-notes/logs.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 --> */}
12+
{/* <!-- Actual content lives in /src/content/changelog/logs. Update the file there for new entries to appear here. */}
1313

14-
<ProductReleaseNotes />
14+
<ProductChangelog product="logs" />
15+
16+
## 2024-10-08
17+
18+
Cloudflare has introduced new fields two Gateway-related datasets in Cloudflare Logs:
19+
20+
* **Gateway HTTP**: `ApplicationIDs`, `ApplicationNames`, `CategoryIDs`, `CategoryNames`, `DestinationIPContinentCode`, `DestinationIPCountryCode`, `ProxyEndpoint`, `SourceIPContinentCode`, `SourceIPCountryCode`, `VirtualNetworkID`, and `VirtualNetworkName`.
21+
22+
* **Gateway Network**: `ApplicationIDs`, `ApplicationNames`, `DestinationIPContinentCode`, `DestinationIPCountryCode`, `ProxyEndpoint`, `SourceIPContinentCode`, `SourceIPCountryCode`, `TransportProtocol`, `VirtualNetworkID`, and `VirtualNetworkName`.

src/content/docs/ssl/changelog.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
---
22
pcx_content_type: changelog
33
title: Changelog
4-
release_notes_file_name:
5-
- ssl
64
sidebar:
75
order: 24
86
---

src/content/release-notes/fundamentals.yaml

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

src/content/release-notes/logs.yaml

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

src/content/release-notes/ssl.yaml

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

0 commit comments

Comments
 (0)