Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions public/__redirects
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@
/dns/changelog/index.xml /changelog/rss/dns.xml 301
/fundamentals/changelog/index.xml /changelog/rss/fundamentals.xml 301
/logs/changelog/index.xml /changelog/rss/logs.xml 301
/magic-cloud-networking/changelog/index.xml /changelog/rss/magic-cloud-networking.xml 301
/magic-firewall/changelog/index.xml /changelog/rss/magic-firewall.xml 301
/magic-network-monitoring/changelog/index.xml /changelog/rss/magic-network-monitoring.xml 301
/magic-transit/changelog/index.xml /changelog/rss/magic-transit.xml 301
/magic-wan/changelog/index.xml /changelog/rss/magic-wan.xml 301
/network-interconnect/changelog/index.xml /changelog/rss/network-interconnect.xml 301
/ssl/changelog/index.xml /changelog/rss/ssl.xml 301

## legacy
Expand Down
16 changes: 13 additions & 3 deletions src/components/ProductChangelog.astro
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,29 @@ const props = z
z.object({
area: z.string(),
}),
);
)
.and(
z.object({
hideEntry: z.string().optional(),
}),
);;
const input = await props.parseAsync(Astro.props);
let filter: GetChangelogsOptions["filter"];
let rss: string;
if ("product" in input) {
rss = `/changelog/rss/${input.product.id}.xml`;
filter = (e) => {
return !e.data.hidden && e.data.products.some(({ id }) => id === input.product.id);
return (
!e.data.hidden &&
e.data.products.some(({ id }) => id === input.product.id) &&
input.hideEntry !== e.id
);
};
} else {
rss = `/changelog/rss/${slug(input.area)}.xml`;
const products = await getCollection("products", (e) => {
return e.data.product.group === input.area;
return e.data.product.group === input.area &&
input.hideEntry !== e.id;
});
filter = (e) => {
return e.data.products.some((x) => products.some((y) => x.id === y.id));
Expand Down
38 changes: 33 additions & 5 deletions src/content/docs/magic-cloud-networking/changelog.mdx
Original file line number Diff line number Diff line change
@@ -1,16 +1,44 @@
---
pcx_content_type: changelog
title: Changelog
release_notes_file_name:
- magic-cloud-networking
sidebar:
order: 6
head: []
description: Review recent changes to Magic Cloud Networking (beta).
---

import { ProductReleaseNotes } from "~/components";
import { ProductChangelog } from "~/components";

{/* <!-- Actual content lives in /src/content/release-notes/magic-cloud-networking.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 --> */}
{/* <!-- Actual content lives in /src/content/changelog/magic-cloud-networking/. 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 --> */}

<ProductReleaseNotes />
<ProductChangelog product="magic-cloud-networking" hideEntry="2024-06-16-cloudflare-one"/>

## 2024-11-21

**Import cloud resources for VMs and LBs**

Cloud network discovery now includes cloud native virtual machine (VM) and load-balancer (LB) resources.

## 2024-11-21

**Export resource catalog**

Customers can export their resource catalog including all discovered resource metadata to a downloadable JSON file, suitable for offline analysis.

## 2024-10-01

**Cost visibility for managed cloud configuration**

Customers can now see the cloud provider list price of discovered network resources and will be informed of total cost and delta cost when deploying managed configuration.

## 2024-08-14

**GCP on-ramps**

Magic Cloud Networking supports Google Cloud Platform.

## 2024-07-01

**Closed beta launch**

The Magic Cloud Networking closed beta release is available, with the managed cloud on-ramps feature.
20 changes: 15 additions & 5 deletions src/content/docs/magic-firewall/changelog.mdx
Original file line number Diff line number Diff line change
@@ -1,12 +1,22 @@
---
pcx_content_type: changelog
title: Changelog
release_notes_file_name:
- magic-firewall
---

import { ProductReleaseNotes } from "~/components";
import { ProductChangelog } from "~/components";

{/* <!-- Actual content lives in /src/content/release-notes/magic-firewall.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 --> */}
{/* <!-- Actual content lives in /src/content/changelog/magic-firewall/. 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 --> */}

<ProductReleaseNotes />
<ProductChangelog product="magic-firewall" hideEntry="2024-06-16-cloudflare-one"/>

## 2024-09-12

**New UI improvements**

The dashboard now displays the order number of custom rules, and improved drag and drop functionality. You can also preview rules on a side panel without leaving the current page.

## 2024-08-16

**Magic Firewall Analytics Rule Log Enhancement**

Customers who create a rule in a disabled mode will see the rule as **Log (rule disabled)**.
8 changes: 3 additions & 5 deletions src/content/docs/magic-network-monitoring/changelog.mdx
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
---
pcx_content_type: changelog
title: Changelog
release_notes_file_name:
- magic-network-monitoring
sidebar:
order: 12
head: []
description: Review recent changes to Magic Network Monitoring.
---

import { ProductReleaseNotes } from "~/components";
import { ProductChangelog } from "~/components";

{/* <!-- Actual content lives in /src/content/release-notes/magic-network-monitoring.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 --> */}
{/* <!-- Actual content lives in /src/content/changelog/magic-network-monitoring/. 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 --> */}

<ProductReleaseNotes />
<ProductChangelog product="magic-network-monitoring" hideEntry="2024-06-16-cloudflare-one"/>
14 changes: 9 additions & 5 deletions src/content/docs/magic-transit/changelog.mdx
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
---
pcx_content_type: changelog
title: Changelog
release_notes_file_name:
- magic-transit
sidebar:
order: 14
head: []
description: Review recent changes to Magic Transit.
---

import { ProductReleaseNotes } from "~/components";
import { ProductChangelog } from "~/components";

{/* <!-- Actual content lives in /src/content/release-notes/magic-transit.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 --> */}
{/* <!-- Actual content lives in /src/content/changelog/magic-transit/. 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 --> */}

<ProductReleaseNotes />
<ProductChangelog product="magic-transit" hideEntry="2024-06-16-cloudflare-one"/>

## 2024-10-01

**Early access testing for BGP on CNI 2.0 circuits**

Customers can exchange routes dynamically with their Magic virtual network overlay via Direct CNI or Cloud CNI based connectivity.
74 changes: 69 additions & 5 deletions src/content/docs/magic-wan/changelog.mdx
Original file line number Diff line number Diff line change
@@ -1,16 +1,80 @@
---
pcx_content_type: changelog
title: Changelog
release_notes_file_name:
- magic-wan
sidebar:
order: 13
head: []
description: Review recent changes to Magic WAN.
---

import { ProductReleaseNotes } from "~/components";
import { ProductChangelog } from "~/components";

{/* <!-- Actual content lives in /src/content/release-notes/magic-wan.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 --> */}
{/* <!-- Actual content lives in /src/content/changelog/magic-wan/. 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 --> */}

<ProductReleaseNotes />
<ProductChangelog product="magic-wan" hideEntry="2024-06-16-cloudflare-one"/>

## 2025-02-14

**Sites feature available to all Magic WAN customers**

All Magic WAN customers now have full access to the Magic WAN sites feature. Customers can configure a Magic WAN site either with or without a Magic WAN connector.

## 2024-12-17

**Magic WAN Connector configurable health checks**

Health check rate on Magic WAN Connector IPsec tunnels are now configurable.

## 2024-12-17

**BGP support for Cloudflare Network Interconnect (CNI)**

Magic WAN customers can now establish BGP peering over Direct CNI circuits. Customers can now dynamically exchange routes and path availability status between their router device and the Magic WAN table.

## 2024-12-12

**LAN Policy improvements for the Magic WAN Connector**

Magic WAN Connector LAN Policy now supports unidirectional traffic flows and port-ranges.

## 2024-10-01

**Early access testing for BGP on CNI 2.0 circuits**

Customers can exchange routes dynamically with their Magic virtual network overlay via Direct CNI or Cloud CNI based connectivity.

## 2024-09-27

**Magic WAN Connector sends WARP client traffic to Internet**

All Magic WAN Connectors now route WARP client traffic directly to the Internet, bypassing IPsec tunneling, to prevent double encapsulation of WARP traffic.

## 2024-07-17

**Updates to High Availability on the Magic WAN Connector**

The High Availability feature on Magic WAN Connector now supports additional failover conditions, DHCP lease syncing, and staggered upgrades.

## 2024-06-23

**ICMP support for traffic sourced from private IPs**

Magic WAN will now support ICMP traffic sourced from private IPs going to the Internet via Gateway.

## 2024-06-05

**Application based prioritization**

The Magic WAN Connector can now prioritize traffic on a per-application basis.

## 2024-05-31

**WARP virtual IP addresses**

Customers using Gateway to filter traffic to Magic WAN destinations will now see traffic from Cloudflare egressing with WARP virtual IP addresses (CGNAT range), rather than public Cloudflare IP addresses. This simplifies configuration and improves visibility for customers.

## 2024-01-23

**Network segmentation**

You can define policies in your Connector to either allow traffic to flow between your LANs without it leaving your local premises or to forward it via the Cloudflare network where you can add additional security features.
20 changes: 15 additions & 5 deletions src/content/docs/network-interconnect/changelog.mdx
Original file line number Diff line number Diff line change
@@ -1,16 +1,26 @@
---
pcx_content_type: changelog
title: Changelog
release_notes_file_name:
- network-interconnect
sidebar:
order: 6
head: []
description: Review recent changes to Cloudflare Network Interconnect.
---

import { ProductReleaseNotes } from "~/components";
import { ProductChangelog } from "~/components";

{/* <!-- Actual content lives in /src/content/release-notes/network-interconnect.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 --> */}
{/* <!-- Actual content lives in /src/content/changelog/network-interconnect/. 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 --> */}

<ProductReleaseNotes />
<ProductChangelog product="network-interconnect" hideEntry="2024-06-16-cloudflare-one"/>

## 2024-10-01

**Early access testing for BGP on Direct CNI circuits**

Customers can exchange routes dynamically with their Magic virtual network overlay via Direct CNI or Cloud CNI based connectivity.

## 2024-09-02

**Interconnect portal displays all available locations in a list**

Customers can now see all available Direct CNI locations when searching for a Cloudflare site in the Interconnects interface.
31 changes: 0 additions & 31 deletions src/content/release-notes/magic-cloud-networking.yaml

This file was deleted.

19 changes: 0 additions & 19 deletions src/content/release-notes/magic-firewall.yaml

This file was deleted.

11 changes: 0 additions & 11 deletions src/content/release-notes/magic-network-monitoring.yaml

This file was deleted.

15 changes: 0 additions & 15 deletions src/content/release-notes/magic-transit.yaml

This file was deleted.

Loading