Skip to content

Commit d559890

Browse files
kodster28KianNH
authored andcommitted
Cf1 changelog rationalization (#21961)
* Main product feed + casb + browser-isolation * Tunnel, access, dlp * dex, risk-score, gateway, email-security * remove vscode settings * simplify ProductChangelog --------- Co-authored-by: Kian Newman-Hazel <[email protected]>
1 parent 914a54b commit d559890

23 files changed

+398
-395
lines changed

public/__redirects

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,16 @@
1111
/changelog/rss.xml /changelog/rss/index.xml 301
1212
/api-shield/changelog/index.xml /changelog/rss/api-shield.xml 301
1313
/cache/changelog/index.xml /changelog/rss/cache.xml 301
14+
/cloudflare-one/changelog/index.xml changelog/rss/cloudflare-one.xml 301
15+
/cloudflare-one/changelog/access/index.xml /changelog/rss/access.xml 301
16+
/cloudflare-one/changelog/browser-isolation/index.xml /changelog/rss/browser-isolation.xml 301
17+
/cloudflare-one/changelog/casb/index.xml /changelog/rss/casb.xml 301
18+
/cloudflare-one/changelog/dex/index.xml /changelog/rss/dex.xml 301
19+
/cloudflare-one/changelog/dlp/index.xml /changelog/rss/dlp.xml 301
20+
/cloudflare-one/changelog/email-security/index.xml /changelog/rss/email-security.xml 301
21+
/cloudflare-one/changelog/gateway/index.xml /changelog/rss/gateway.xml 301
22+
/cloudflare-one/changelog/risk-score/index.xml /changelog/rss/risk-score.xml 301
23+
/cloudflare-one/changelog/tunnel/index.xml /changelog/rss/cloudflare-tunnel.xml 301
1424
/dns/changelog/index.xml /changelog/rss/dns.xml 301
1525
/fundamentals/changelog/index.xml /changelog/rss/fundamentals.xml 301
1626
/logs/changelog/index.xml /changelog/rss/logs.xml 301

src/components/ProductChangelog.astro

Lines changed: 33 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,12 @@ import { reference } from "astro:content";
44
import { z } from "astro:schema";
55
import { getCollection, render } from "astro:content";
66
import { slug } from "github-slugger";
7+
import { format } from "date-fns";
8+
79
import RSSButton from "~/components/RSSButton.astro";
810
import AnchorHeading from "~/components/AnchorHeading.astro";
9-
import { format } from "date-fns";
11+
import ProductPills from "~/components/changelog/ProductPills.astro";
12+
1013
const props = z
1114
.object({
1215
product: reference("products"),
@@ -17,48 +20,59 @@ const props = z
1720
}),
1821
)
1922
.and(
20-
z.object({
21-
hideEntry: z.string().optional(),
22-
}),
23-
);;
23+
z.object({
24+
hideEntry: z.string().optional(),
25+
}),
26+
);
27+
2428
const input = await props.parseAsync(Astro.props);
29+
2530
let filter: GetChangelogsOptions["filter"];
2631
let rss: string;
32+
2733
if ("product" in input) {
2834
rss = `/changelog/rss/${input.product.id}.xml`;
35+
2936
filter = (e) => {
3037
return (
31-
!e.data.hidden &&
32-
e.data.products.some(({ id }) => id === input.product.id) &&
33-
input.hideEntry !== e.id
34-
);
38+
!e.data.hidden &&
39+
e.data.products.some(({ id }) => id === input.product.id) &&
40+
input.hideEntry !== e.id
41+
);
3542
};
3643
} else {
3744
rss = `/changelog/rss/${slug(input.area)}.xml`;
45+
3846
const products = await getCollection("products", (e) => {
39-
return e.data.product.group === input.area &&
40-
input.hideEntry !== e.id;
47+
return e.data.product.group === input.area && input.hideEntry !== e.id;
4148
});
49+
4250
filter = (e) => {
4351
return e.data.products.some((x) => products.some((y) => x.id === y.id));
4452
};
4553
}
54+
4655
const changelogs = await getChangelogs({ filter });
4756
---
4857

4958
<RSSButton href={rss} />
5059

5160
{
5261
changelogs.map(async (entry) => {
53-
54-
5562
const { Content } = await render(entry);
63+
5664
return (
57-
<AnchorHeading depth={2} title={format(entry.data.date, "yyyy-MM-dd")} />
58-
<br/>
59-
<strong>{entry.data.title}</strong>
60-
<br/>
61-
<Content />
65+
<>
66+
<AnchorHeading
67+
depth={2}
68+
title={format(entry.data.date, "yyyy-MM-dd")}
69+
/>
70+
{"area" in input && <ProductPills products={entry.data.products} />}
71+
<br />
72+
<strong>{entry.data.title}</strong>
73+
<br />
74+
<Content />
75+
</>
6276
);
6377
})
64-
}
78+
}

src/content/changelog/casb/2024-11-22-cloud-data-extraction-aws.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
title: Find security misconfigurations in your AWS cloud environment
33
description: CASB and DLP with Cloud Data Extraction for AWS cloud environments
44
date: 2024-11-22T11:00:00Z
5-
products:
6-
- dlp
75
---
86

97
import { Render } from "~/components";

src/content/changelog/dlp/2025-01-03-source-code-confidence-level.mdx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Detect source code leaks with Data Loss Prevention
33
description: Added source code confidence levels to Data Loss Prevention
4-
date: 2025-01-03T11:00:00Z
4+
date: 2025-01-20T11:00:00Z
55
---
66

77
import { Render } from "~/components";
@@ -13,4 +13,6 @@ You can now detect source code leaks with Data Loss Prevention (DLP) with predef
1313
product="cloudflare-one"
1414
/>
1515

16+
DLP also supports confidence level for [source code profiles](/cloudflare-one/policies/data-loss-prevention/dlp-profiles/predefined-profiles/#source-code).
17+
1618
For more details, refer to [DLP profiles](/cloudflare-one/policies/data-loss-prevention/dlp-profiles/).
Lines changed: 122 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,134 @@
11
---
22
pcx_content_type: changelog
33
title: Access
4-
release_notes_file_name:
5-
- access
64
head:
75
- tag: title
86
content: Access Changelog
97
description: Review recent changes to Cloudflare Access.
10-
118
---
129

13-
import { ProductReleaseNotes, Render } from "~/components"
10+
import { ProductChangelog } from "~/components";
11+
12+
{/* <!-- All changelog entries live in src/content/changelogs/access/. */}
13+
14+
<ProductChangelog product="access" hideEntry="2024-06-16-cloudflare-one" />
15+
16+
## 2025-02-12
17+
18+
**Access policies support filtering**
19+
20+
You can now filter Access policies by their action, selectors, rule groups, and assigned applications.
21+
22+
## 2025-02-11
23+
24+
**Private self-hosted applications and reusable policies GA**
25+
26+
[Private self-hosted applications](/cloudflare-one/applications/non-http/self-hosted-private-app/) and [reusable Access policies](/cloudflare-one/policies/access/policy-management/) are now generally available (GA) for all customers.
27+
28+
## 2025-01-21
29+
30+
**Access Applications support private hostnames/IPs and reusable Access policies.**
31+
32+
Cloudflare Access self-hosted applications can now be defined by [private IPs](/cloudflare-one/applications/non-http/self-hosted-private-app/), [private hostnames](/cloudflare-one/applications/non-http/self-hosted-private-app/) (on port 443) and [public hostnames](/cloudflare-one/applications/configure-apps/self-hosted-public-app/). Additionally, we made Access policies into their own object which can be reused across multiple applications. These updates involved significant updates to the overall Access dashboard experience. The updates will be slowly rolled out to different customer cohorts. If you are an Enterprise customer and would like early access, reach out to your account team.
33+
34+
## 2025-01-15
35+
36+
**Logpush for SSH command logs**
37+
38+
Enterprise customers can now use Logpush to export SSH command logs for Access for Infrastructure targets.
39+
40+
## 2024-12-04
41+
42+
**SCIM GA for Okta and Microsoft Entra ID**
43+
44+
Cloudflare's SCIM integrations with [Okta](/cloudflare-one/identity/idp-integration/okta/#synchronize-users-and-groups) and [Microsoft Entra ID](/cloudflare-one/identity/idp-integration/entra-id/#synchronize-users-and-groups) (formerly AzureAD) are now out of beta and generally available (GA) for all customers. These integrations can be used for Access and Gateway policies and Zero Trust user management. Note: This GA release does not include [Dashboard SSO SCIM](/fundamentals/setup/account/account-security/scim-setup/) support.
45+
46+
## 2024-10-23
47+
48+
**SSH with Access for Infrastructure**
49+
50+
Admins can now use [Access for Infrastructure](/cloudflare-one/connections/connect-networks/use-cases/ssh/ssh-infrastructure-access/) to manage privileged access to SSH servers. Access for Infrastructure provides improved control and visibility over who accessed what service and what they did during their SSH session. Access for Infrastructure also eliminates the risk and overhead associated with managing SSH keys by using short-lived SSH certificates to access SSH servers.
51+
52+
## 2024-08-26
53+
54+
**Reduce automatic seat deprovisioning minimum to 1 month, down from 2 months.**
55+
56+
Admins can now configure Zero Trust seats to [automatically expire](/cloudflare-one/identity/users/seat-management/#enable-seat-expiration) after 1 month of user inactivity. The previous minimum was 2 months.
57+
58+
## 2024-06-06
59+
60+
**Scalability improvements to the App Launcher**
61+
62+
Applications now load more quickly for customers with a large number of applications or complex policies.
63+
64+
## 2024-04-28
65+
66+
**Add option to bypass CORS to origin server**
67+
68+
Access admins can [defer all CORS enforcement to their origin server](/cloudflare-one/identity/authorization-cookie/cors/#bypass-options-requests-to-origin) for specific Access applications.
69+
70+
## 2024-04-15
71+
72+
**Zero Trust User identity audit logs**
73+
74+
All user identity changes via SCIM or Authentication events are logged against a user's registry identity.
75+
76+
## 2024-02-22
77+
78+
**Access for SaaS OIDC Support**
79+
80+
Access for SaaS applications can be setup with OIDC as an authentication method. OIDC and SAML 2.0 are now both fully supported.
81+
82+
## 2024-02-22
83+
84+
**WARP as an identity source for Access**
85+
86+
Allow users to log in to Access applications with their WARP session identity. Users need to reauthenticate based on default session durations. WARP authentication identity must be turned on in your device enrollment permissions and can be enabled on a per application basis.
87+
88+
## 2023-12-20
89+
90+
**Unique Entity IDs in Access for SaaS**
91+
92+
All new Access for SaaS applications have unique Entity IDs. This allows for multiple integrations with the same SaaS provider if required. The unique Entity ID has the application audience tag appended. Existing apps are unchanged.
93+
94+
## 2023-12-15
95+
96+
**Default relay state support in Access for SaaS**
97+
98+
Allows Access admins to set a default relay state on Access for SaaS apps.
99+
100+
## 2023-09-15
101+
102+
**App launcher supports tags and filters**
103+
104+
Access admins can now tag applications and allow users to filter by those tags in the App Launcher.
105+
106+
## 2023-09-15
107+
108+
**App launcher customization**
109+
110+
Allow Access admins to configure the App Launcher page within Zero Trust.
111+
112+
## 2023-09-15
113+
114+
**View active Access user identities in the dashboard and API**
115+
116+
Access admins can now view the full contents of a user's identity and device information for all active application sessions.
117+
118+
## 2023-09-08
119+
120+
**Custom OIDC claims for named IdPs**
121+
122+
Access admins can now add custom claims to the existing named IdP providers. Previously this was locked to the generic OIDC provider.
123+
124+
## 2023-08-02
125+
126+
**Azure AD authentication contexts**
127+
128+
Support Azure AD authentication contexts directly in Access policies.
14129

15-
<Render file="changelog-note" />
130+
## 2023-06-23
16131

17-
{/* <!-- 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 --> */}
132+
**Custom block pages for Access applications**
18133

19-
<ProductReleaseNotes />
134+
Allow Access admins to customize the block pages presented by Access to end users.
Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,23 @@
11
---
22
pcx_content_type: changelog
33
title: Browser Isolation
4-
release_notes_file_name:
5-
- browser-isolation
64
head:
75
- tag: title
86
content: Browser Isolation Changelog
97
description: Review recent changes to Cloudflare Browser Isolation.
10-
118
---
129

13-
import { ProductReleaseNotes, Render } from "~/components"
10+
import { ProductChangelog } from "~/components";
11+
12+
{/* <!-- All changelog entries live in src/content/changelogs/browser-isolation/. */}
13+
14+
<ProductChangelog
15+
product="browser-isolation"
16+
hideEntry="2024-06-16-cloudflare-one"
17+
/>
1418

15-
<Render file="changelog-note" />
19+
## 2024-03-21
1620

17-
{/* <!-- 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 --> */}
21+
**Removed third-party cookie dependencies**
1822

19-
<ProductReleaseNotes />
23+
Removed dependency on third-party cookies in the isolated browser, fixing an issue that previously caused intermittent disruptions for users maintaining multi-site, cross-tab sessions in the isolated browser.
Lines changed: 20 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,32 @@
11
---
22
pcx_content_type: changelog
33
title: CASB
4-
release_notes_file_name:
5-
- casb
64
head:
75
- tag: title
86
content: CASB Changelog
97
description: Review recent changes to Cloudflare CASB.
10-
118
---
129

13-
import { ProductReleaseNotes, Render } from "~/components"
10+
import { ProductChangelog } from "~/components";
11+
12+
{/* <!-- All changelog entries live in src/content/changelogs/casb/. */}
13+
14+
<ProductChangelog product="casb" hideEntry="2024-06-16-cloudflare-one" />
15+
16+
## 2024-06-03
17+
18+
**Atlassian Bitbucket integration**
19+
20+
You can now scan your Bitbucket Cloud workspaces for a variety of contextualized security issues such as source code exposure, admin misconfigurations, and more.
21+
22+
## 2024-05-23
23+
24+
**Data-at-rest DLP for Box and Dropbox**
25+
26+
You can now scan your [Box](/cloudflare-one/applications/casb/casb-integrations/box/#data-loss-prevention-optional) and [Dropbox](/cloudflare-one/applications/casb/casb-integrations/dropbox/#data-loss-prevention-optional) files for DLP matches.
1427

15-
<Render file="changelog-note" />
28+
## 2024-04-16
1629

17-
{/* <!-- All changelog entries live in src/content/changelogs/casb.yaml. For more details, refer to https://developers.cloudflare.com/style-guide/documentation-content-strategy/content-types/changelog/#yaml-file --> */}
30+
**Export CASB findings to CSV**
1831

19-
<ProductReleaseNotes />
32+
You can now export all top-level CASB findings or every instance of your findings to CSV.
Lines changed: 30 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,42 @@
11
---
22
pcx_content_type: changelog
33
title: Digital Experience Monitoring
4-
release_notes_file_name:
5-
- dex
64
head:
75
- tag: title
86
content: Digital Experience Monitoring Changelog
97
description: Review recent changes to Digital Experience Monitoring.
10-
118
---
129

13-
import { ProductReleaseNotes, Render } from "~/components"
10+
import { ProductChangelog } from "~/components";
11+
12+
{/* <!-- All changelog entries live in src/content/changelogs/dex/. */}
13+
14+
<ProductChangelog product="dex" hideEntry="2024-06-16-cloudflare-one" />
15+
16+
## 2025-01-24
17+
18+
**IP visibility**
19+
20+
[IP visibility](/cloudflare-one/insights/dex/ip-visibility/) enables admins to inspect the different IP addresses associated with an end-user device. IP types available for review on the Cloudflare dashboard include: the device's private IP, the public IP assigned to the device by the ISP, and the router's (that the device is connected to) private IP.
21+
22+
## 2024-12-19
23+
24+
**Remote captures**
25+
26+
Admins can now collect packet captures (PCAPs) and WARP diagnostic logs from end-user devices. For more information, refer to [Remote captures](/cloudflare-one/insights/dex/remote-captures/).
27+
28+
## 2024-05-20
29+
30+
**Last seen ISP**
31+
32+
Admins can view the last ISP seen for a device by going to **My Team** > **Devices**. Requires setting up a [traceroute test](/cloudflare-one/insights/dex/tests/traceroute/).
33+
34+
## 2024-05-13
1435

15-
<Render file="changelog-note" />
36+
**DEX alerts**
1637

17-
{/* <!-- All changelog entries live in src/content/changelogs/dex.yaml. For more details, refer to https://developers.cloudflare.com/style-guide/documentation-content-strategy/content-types/changelog/#yaml-file --> */}
38+
Admins can now set [DEX alerts](/cloudflare-one/insights/dex/notifications/) using [Cloudflare Notifications](/notifications/). Three new DEX alert types:
1839

19-
<ProductReleaseNotes />
40+
- Device connectivity anomaly
41+
- Test latency
42+
- Test low availability

0 commit comments

Comments
 (0)