Skip to content

Commit 0cee334

Browse files
committed
[Docs Site] Fix platform name in WARP releases script
1 parent 296d03f commit 0cee334

File tree

5 files changed

+142
-2
lines changed

5 files changed

+142
-2
lines changed

bin/fetch-warp-releases.js

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,12 @@ for (let track of tracks) {
3535
track = track.replace("noble-intel", "linux");
3636
}
3737

38-
const path = `./src/content/warp-releases/${track}/${item.version}.yaml`;
38+
const folder = `./src/content/warp-releases/${track}`;
39+
const path = `${folder}/${item.version}.yaml`;
40+
41+
if (!fs.existsSync(folder)) {
42+
fs.mkdirSync(folder, { recursive: true });
43+
}
3944

4045
if (fs.existsSync(path)) {
4146
console.log(`${track} ${item.version} already exists.`);
@@ -66,13 +71,16 @@ for (let track of tracks) {
6671
});
6772

6873
const releaseNotes = tokens.reduce((s, t) => s + t.raw, "");
74+
const platformName = data.platformName.startsWith("noble-")
75+
? "Linux"
76+
: data.platformName;
6977

7078
fs.writeFileSync(
7179
`./src/content/warp-releases/${track}/${item.version}.yaml`,
7280
YAML.stringify({
7381
...item,
7482
releaseNotes,
75-
platformName: data.platformName,
83+
platformName,
7684
}),
7785
"utf-8",
7886
);
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
releaseNotes: >-
2+
This release contains minor fixes and improvements.
3+
4+
5+
**Changes and improvements**
6+
7+
- Improved command line interface for Zero Trust Access for Infrastructure
8+
with added function for filtering and ordering.
9+
10+
- Fixed client connectivity issues when switching between managed network
11+
profiles that use different WARP protocols.
12+
13+
- Added support for WARP desktop to use additional DoH endpoints to help
14+
reduce NAT congestion.
15+
16+
- Improved Wireguard connection stability on reconnections.
17+
18+
- Added additional HTTP/3 QUIC connectivity test to warp-diag.
19+
20+
- Added support for collection of system health metrics for enhanced device
21+
Digital Experience Monitoring.
22+
23+
- Automated the removal of active registrations for devices with multiple
24+
registrations with the same Zero Trust organization.
25+
version: 2025.2.459.1
26+
releaseDate: 2025-03-13T17:13:33.600Z
27+
packageURL: https://downloads.cloudflareclient.com/v1/download/noble-intel/version/2025.2.459.1
28+
packageSize: 44462470
29+
platformName: Linux
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
releaseNotes: >-
2+
This release contains significant improvements to our Captive Portal / public
3+
Wi-Fi detection logic. We’d like anyone who has experienced issues with this
4+
in the past to re-test and give this version a try.
5+
6+
7+
**Changes and improvements**
8+
9+
- Improved captive portal experience to make more public networks compatible
10+
and have faster detection.
11+
12+
- WARP tunnel protocol details can now be viewed by `warp-cli tunnel stats`
13+
command
14+
15+
- Fixed issue with device revocation and re-registration when switching
16+
configurations
17+
version: 2025.2.460.1
18+
releaseDate: 2025-03-13T18:24:32.891Z
19+
packageURL: https://downloads.cloudflareclient.com/v1/download/noble-intel/version/2025.2.460.1
20+
packageSize: 44461586
21+
platformName: Linux
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
releaseNotes: >-
2+
This release contains significant improvements to our Captive Portal / public
3+
Wi-Fi detection logic. We’d like anyone who has experienced issues with this
4+
in the past to re-test and give this version a try.
5+
6+
7+
**Changes and improvements**
8+
9+
- Improved captive portal experience to make more public networks compatible
10+
and have faster detection.
11+
12+
- Improved error messages shown in the app
13+
14+
- WARP tunnel protocol details can now be viewed by `warp-cli tunnel stats`
15+
command
16+
17+
- Fixed issue with device revocation and re-registration when switching
18+
configurations
19+
20+
21+
22+
**Known issues**
23+
24+
- macOS Sequoia: Due to changes Apple introduced in macOS 15.0.x, the WARP
25+
client may not behave as expected. Cloudflare recommends the use of macOS 15.3
26+
or later.
27+
version: 2025.2.460.1
28+
releaseDate: 2025-03-13T19:39:55.831Z
29+
packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2025.2.460.1
30+
packageSize: 91678229
31+
platformName: macOS
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
releaseNotes: >-
2+
This release contains significant improvements to our Captive Portal / public
3+
Wi-Fi detection logic. We�d like anyone who has experienced issues with this
4+
in the past to re-test and give this version a try.
5+
6+
7+
**Changes and improvements**
8+
9+
- Improved captive portal experience to make more public networks compatible
10+
and have faster detection.
11+
12+
- Improved error messages shown in the app
13+
14+
- Added the ability to control if the WARP interface IPs are registered with
15+
DNS servers or not.
16+
17+
- Removed DNS logs view from Windows client GUI. DNS logs can be viewed as
18+
part of warp-diag or by viewing the log file on the user's local directory.
19+
20+
- Fixed issue that would result in a user receiving multiple re-authentication
21+
requests when waking their device from sleep.
22+
23+
- WARP tunnel protocol details can now be viewed by `warp-cli tunnel stats`
24+
command
25+
26+
- Improvements to Windows multi-user including support for fast user
27+
switching. If you are interested in testing this feature please reach out to
28+
your Cloudflare account representative.
29+
30+
- Fixed issue with device revocation and re-registration when switching
31+
configurations
32+
33+
- Fixed issue where DEX tests would run during certain sleep states where the
34+
networking stack was not fully up. This would result in failures that would be
35+
ignored.
36+
37+
38+
39+
**Known issues**
40+
41+
- DNS resolution may be broken when the following conditions are all true:
42+
- WARP is in Secure Web Gateway without DNS filtering (tunnel-only) mode.
43+
- A custom DNS server address is configured on the primary network adapter.
44+
- The custom DNS server address on the primary network adapter is changed while WARP is connected.
45+
46+
To work around this issue, please reconnect the WARP client by toggling off and back on.
47+
version: 2025.2.460.1
48+
releaseDate: 2025-03-13T19:39:55.087Z
49+
packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2025.2.460.1
50+
packageSize: 128188416
51+
platformName: Windows

0 commit comments

Comments
 (0)