diff --git a/bin/fetch-warp-releases.js b/bin/fetch-warp-releases.js new file mode 100644 index 000000000000000..ed31c49b183f7b4 --- /dev/null +++ b/bin/fetch-warp-releases.js @@ -0,0 +1,62 @@ +import fs from "fs"; +import YAML from "yaml"; +import { marked } from "marked"; + +const tracks = ["windows/ga", "windows/beta", "macos/ga", "macos/beta"]; + +const linesToRemove = [ + "For related Cloudflare for Teams documentation please see: https://developers.cloudflare.com/cloudflare-one/connections/connect-devices/warp", + "For Zero Trust documentation please see: https://developers.cloudflare.com/cloudflare-one/connections/connect-devices/warp", + "For related Consumer documentation please see: https://developers.cloudflare.com/warp-client/", + "For Consumer documentation please see: https://developers.cloudflare.com/warp-client/", +]; + +for (const track of tracks) { + fetch(`https://downloads.cloudflareclient.com/v1/update/json/${track}`) + .then((res) => res.json()) + .then((data) => { + data.items.forEach((item) => { + const path = `./src/content/warp-releases/${track}/${item.version}.yaml`; + + if (fs.existsSync(path)) { + console.log(`${track} ${item.version} already exists.`); + return; + } + + console.log(`Saving ${track} ${item.version}.`); + + let markdown = item.releaseNotes; + + markdown.replace(/\r\n/g, "\n"); + + for (const line of linesToRemove) { + markdown = markdown.replace(line, ""); + } + + markdown = markdown.trim(); + + const tokens = marked.lexer(markdown); + + marked.walkTokens(tokens, (token) => { + if (token.type === "heading") { + token.type = "strong"; + token.raw = `**${token.text}**\n`; + + delete token.depth; + } + }); + + const releaseNotes = tokens.reduce((s, t) => s + t.raw, ""); + + fs.writeFileSync( + `./src/content/warp-releases/${track}/${item.version}.yaml`, + YAML.stringify({ + ...item, + releaseNotes, + platformName: data.platformName, + }), + "utf-8", + ); + }); + }); +} diff --git a/package-lock.json b/package-lock.json index 89b98d888b9c411..7f37a563530a510 100644 --- a/package-lock.json +++ b/package-lock.json @@ -56,6 +56,7 @@ "playwright": "^1.49.1", "prettier": "^3.4.2", "prettier-plugin-astro": "^0.14.1", + "pretty-bytes": "6.1.1", "prettier-plugin-tailwindcss": "^0.6.9", "puppeteer": "^24.0.0", "react": "^18.3.1", @@ -14691,6 +14692,19 @@ "node": "^14.15.0 || >=16.0.0" } }, + "node_modules/pretty-bytes": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-6.1.1.tgz", + "integrity": "sha512-mQUvGU6aUFQ+rNvTIAcZuWGRT9a6f6Yrg9bHs4ImKF+HZCEK+plBvnAZYSIQztknZF2qnzNtr6F8s0+IuptdlQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/prettier-plugin-tailwindcss": { "version": "0.6.9", "resolved": "https://registry.npmjs.org/prettier-plugin-tailwindcss/-/prettier-plugin-tailwindcss-0.6.9.tgz", diff --git a/package.json b/package.json index 01cacf50b9a7ea6..3b2127b3d4f6242 100644 --- a/package.json +++ b/package.json @@ -73,6 +73,7 @@ "playwright": "^1.49.1", "prettier": "^3.4.2", "prettier-plugin-astro": "^0.14.1", + "pretty-bytes": "6.1.1", "prettier-plugin-tailwindcss": "^0.6.9", "puppeteer": "^24.0.0", "react": "^18.3.1", diff --git a/src/components/WARPRelease.astro b/src/components/WARPRelease.astro new file mode 100644 index 000000000000000..9bc8f45ce56f718 --- /dev/null +++ b/src/components/WARPRelease.astro @@ -0,0 +1,50 @@ +--- +import Details from "./Details.astro"; +import { marked } from "marked"; +import { z } from "astro:schema"; +import prettyBytes from "pretty-bytes"; +import { warpReleasesSchema } from "~/schemas"; + +type Props = z.infer; + +const props = z.object({ + header: z.string(), + open: z.boolean().optional(), + release: warpReleasesSchema, +}); + +const { header, open, release } = props.parse(Astro.props); +--- + +
+

+

+ + Version: + {release.platformName} + {release.version} + + + Date: + {release.releaseDate.toISOString().split("T")[0]} + + { + release.packageSize && ( + + Size: + {prettyBytes(release.packageSize)} + + ) + } +
+ + Download + +

+

+ +

Release notes

+ + +

+
diff --git a/src/components/WARPReleases.astro b/src/components/WARPReleases.astro new file mode 100644 index 000000000000000..d712bdecbc0ebf2 --- /dev/null +++ b/src/components/WARPReleases.astro @@ -0,0 +1,64 @@ +--- +import WARPRelease from "./WARPRelease.astro"; +import Details from "./Details.astro"; +import { getCollection } from "astro:content"; +import { z } from "astro:schema"; +import { sub } from "date-fns"; + +type Props = z.infer; + +const props = z.object({ + track: z.enum([ + "windows/ga", + "windows/beta", + "macos/ga", + "macos/beta", + "linux/ga", + ]), +}); + +const { track } = props.parse(Astro.props); + +const sortByDate = (a: any, b: any) => + b.releaseDate.getTime() - a.releaseDate.getTime(); + +const entries = await getCollection("warp-releases", (release) => { + if (!release.id.startsWith(track)) return false; + + const oneYearAgo = sub(new Date(), { + years: 1, + }); + + if (release.data.releaseDate.getTime() < oneYearAgo.getTime()) return false; + + return true; +}); + +const releases = entries.map((x) => x.data); + +releases.sort(sortByDate); + +const latestRelease = releases.at(0); + +if (!latestRelease) { + throw new Error(); +} + +const platform = latestRelease.platformName; +--- + + + +
+ { + releases + .slice(1) + .sort(sortByDate) + .map((release) => ( + + )) + } +
diff --git a/src/components/index.ts b/src/components/index.ts index f977fab2edcfc8a..a52dbcbc622eac5 100644 --- a/src/components/index.ts +++ b/src/components/index.ts @@ -54,6 +54,7 @@ export { default as TunnelCalculator } from "./TunnelCalculator.astro"; export { default as Type } from "./Type.astro"; export { default as TypeScriptExample } from "./TypeScriptExample.astro"; export { default as WranglerConfig } from "./WranglerConfig.astro"; +export { default as WARPReleases } from "./WARPReleases.astro"; export { default as WorkersArchitectureDiagram } from "./WorkersArchitectureDiagram.astro"; export { default as WorkersIsolateDiagram } from "./WorkersIsolateDiagram.astro"; export { default as WorkerStarter } from "./WorkerStarter.astro"; diff --git a/src/content/config.ts b/src/content/config.ts index 48fd7eedfa6d829..bfcafe3cb7e48f3 100644 --- a/src/content/config.ts +++ b/src/content/config.ts @@ -12,6 +12,7 @@ import { glossarySchema, learningPathsSchema, videosSchema, + warpReleasesSchema, workersAiSchema, changelogsNextSchema, fieldsSchema, @@ -77,6 +78,10 @@ export const collections = { schema: appsSchema, type: "data", }), + "warp-releases": defineCollection({ + schema: warpReleasesSchema, + type: "data", + }), "changelogs-next": defineCollection({ schema: changelogsNextSchema, }), diff --git a/src/content/docs/cloudflare-one/connections/connect-devices/warp/download-warp/beta-releases.mdx b/src/content/docs/cloudflare-one/connections/connect-devices/warp/download-warp/beta-releases.mdx new file mode 100644 index 000000000000000..74d65b2f96d1cf1 --- /dev/null +++ b/src/content/docs/cloudflare-one/connections/connect-devices/warp/download-warp/beta-releases.mdx @@ -0,0 +1,22 @@ +--- +pcx_content_type: reference +title: Beta releases +sidebar: + order: 3 +--- + +import { Render, Details, WARPReleases } from "~/components"; + +Cloudflare tests new WARP features and improvements in an unstable beta release before adding them to the stable release. To get early access to new features, download the latest beta client from the links below. + +## Windows + + + + + +## macOS + + + + \ No newline at end of file diff --git a/src/content/docs/cloudflare-one/connections/connect-devices/warp/download-warp/index.mdx b/src/content/docs/cloudflare-one/connections/connect-devices/warp/download-warp/index.mdx index 38a4dfc58862a72..58c7c915d3c6eeb 100644 --- a/src/content/docs/cloudflare-one/connections/connect-devices/warp/download-warp/index.mdx +++ b/src/content/docs/cloudflare-one/connections/connect-devices/warp/download-warp/index.mdx @@ -3,35 +3,30 @@ pcx_content_type: reference title: Download WARP sidebar: order: 2 + label: Stable releases --- -import { Render } from "~/components"; +import { Render, Details, WARPReleases } from "~/components"; -You can download the WARP client from Zero Trust. To do that, go to **Settings** > **Resources** and scroll down to **Download the WARP client**. - -Alternatively, download the client from one of the following links after checking requirements: +Download the WARP client from one of the following links after checking requirements. ## Windows -**[Latest Windows Release](https://downloads.cloudflareclient.com/v1/download/windows/ga)** - -**[Latest Windows Beta](https://downloads.cloudflareclient.com/v1/download/windows/beta)** + ## macOS -**[Latest macOS Release](https://downloads.cloudflareclient.com/v1/download/macos/ga)** - -**[Latest macOS Beta](https://downloads.cloudflareclient.com/v1/download/macos/beta)** + ## Linux -**[Package repository](https://pkg.cloudflareclient.com/)** + ## iOS @@ -44,6 +39,7 @@ Alternatively, download the client from one of the following links after checkin :::note[Migrate from 1.1.1.1] The legacy iOS client, [1.1.1.1: Faster Internet](https://apps.apple.com/us/app/1-1-1-1-faster-internet/id1423538627), has been replaced by the Cloudflare One Agent. Learn more in our [migration guide](/cloudflare-one/connections/connect-devices/warp/download-warp/cloudflare-one-agent-migration/). + ::: ## Android @@ -57,6 +53,7 @@ The legacy iOS client, [1.1.1.1: Faster Internet](https://apps.apple.com/us/app/ :::note[Migrate from 1.1.1.1] The legacy Android client, [1.1.1.1 + WARP: Safer Internet](https://play.google.com/store/apps/details?id=com.cloudflare.onedotonedotonedotone), has been replaced by the Cloudflare One Agent. Learn more in our [migration guide](/cloudflare-one/connections/connect-devices/warp/download-warp/cloudflare-one-agent-migration/). + ::: ## ChromeOS @@ -65,4 +62,4 @@ The legacy Android client, [1.1.1.1 + WARP: Safer Internet](https://play.google. | -------------- | ----------------------------------- | | **OS version** | Chromebooks manufactured after 2019 | -Chromebooks are supported by our Android app. All Chromebooks made after 2019 should fully support our Android app. If you have a Chromebook made before 2019, [refer to this list](https://www.chromium.org/chromium-os/chrome-os-systems-supporting-android-apps/) to verify that your device is supported. +Chromebooks are supported by our [Android app](#android). All Chromebooks made after 2019 should fully support our Android app. If you have a Chromebook made before 2019, [refer to this list](https://www.chromium.org/chromium-os/chrome-os-systems-supporting-android-apps/) to verify that your device is supported. diff --git a/src/content/warp-releases/linux/ga/2024.11.309.0.yaml b/src/content/warp-releases/linux/ga/2024.11.309.0.yaml new file mode 100644 index 000000000000000..49494487af16c39 --- /dev/null +++ b/src/content/warp-releases/linux/ga/2024.11.309.0.yaml @@ -0,0 +1,17 @@ +releaseNotes: | + This release contains reliability improvements and general bug fixes. + + **Changes and improvements** + - Fixed an issue where SSH sessions and other connections ould drop when a device that is using MASQUE changes its primary network interface. + - Device posture client certificate checks now support PKCS#1. + - Fixed an issue to ensure the Cloudflare root certificate (or custom certificate) is installed in the trust store if not already there. + - Reduced unnecessary log messages when `resolv.conf` has no owner. + - Fixed an issue with `warp-diag` printing benign TLS certificate errors. + - Fixed an issue with the WARP client becoming unresponsive during startup. + - Extended diagnostics collection time in `warp-diag` to ensure logs are captured reliably. + - Fixed an issue that was preventing proper operation of DNS-over-TLS (DoT) for consumer users. + +version: 2024.11.309.0 +releaseDate: 2024-11-18 +packageURL: https://pkg.cloudflareclient.com/ +platformName: Linux diff --git a/src/content/warp-releases/linux/ga/2024.12.554.0.yaml b/src/content/warp-releases/linux/ga/2024.12.554.0.yaml new file mode 100644 index 000000000000000..f3a53f8b36a73a9 --- /dev/null +++ b/src/content/warp-releases/linux/ga/2024.12.554.0.yaml @@ -0,0 +1,18 @@ +releaseNotes: | + This release includes fixes and minor improvements. + + **Changes and improvements** + - Consumers can now set the tunnel protocol using `warp-cli tunnel protocol set `. + - Extended diagnostics collection time in `warp-diag` to ensure logs are captured reliably. + - Improved captive portal support by disabling the firewall during captive portal login flows. + - Improved reliability of connection establishment logic under degraded network conditions. + - Improved reconnection speed when a Cloudflare server is in a degraded state. + - Improved captive portal detection on certain public networks. + - Reduced connectivity interruptions on WireGuard Split Tunnel Include mode configurations. + - Fixed connectivity issues switching between managed network profiles with different configured protocols. + - QLogs are now disabled by default and can be enabled with `warp-cli debug qlog enable`. The QLog setting from previous releases will no longer be respected. + +version: 2024.12.554.0 +releaseDate: 2024-12-19 +packageURL: https://pkg.cloudflareclient.com/ +platformName: Linux diff --git a/src/content/warp-releases/linux/ga/2024.6.497.0.yaml b/src/content/warp-releases/linux/ga/2024.6.497.0.yaml new file mode 100644 index 000000000000000..1ff322fb7ca3757 --- /dev/null +++ b/src/content/warp-releases/linux/ga/2024.6.497.0.yaml @@ -0,0 +1,25 @@ +releaseNotes: | + This release includes some exciting new features. It also includes additional fixes and minor improvements. + + **New features** + - The WARP client now supports operation on Ubuntu 24.04. + - Admins can now elect to have ZT WARP clients connect using the MASQUE protocol; this setting is in Device Profiles. Note: before MASQUE can be used, the global setting for Override local interface IP must be enabled. For more detail, refer to [Device tunnel protocol](/cloudflare-one/connections/connect-devices/warp/configure-warp/warp-settings/#device-tunnel-protocol). This feature will be rolled out to customers in stages over approximately the next month. + - The Device Posture [client certificate check](/cloudflare-one/identity/devices/warp-client-checks/client-certificate/) has been substantially enhanced. The primary enhancement is the ability to check for client certificates that have unique common names, made unique by the inclusion of the device serial number or host name (for example, CN = `123456.mycompany`, where 123456 is the device serial number). + - TCP MSS clamping is now used where necessary to meet the MTU requirements of the tunnel interface. This will be especially helpful in Docker use cases. + + **Warning** + - Ubuntu 16.04 and 18.04 are not supported by this version of the client. + - This is the last GA release that will be supporting older, deprecated `warp-cli` commands. There are two methods to identify these commands. One, when used in this release, the command will work but will also return a deprecation warning. And two, the deprecated commands do not appear in the output of `warp-cli -h`. + + **Known issues** + - There are certain known limitations preventing the use of the MASQUE tunnel protocol in certain scenarios. Do not use the MASQUE tunnel protocol if: + - A Magic WAN integration is on the account and does not have the latest packet flow path for WARP traffic. To check the migration status, contact your account team. + - Your account has Regional Services enabled. + - The Linux client GUI does not yet support all GUI features found in the Windows and macOS clients. Future releases of the Linux client will be adding these GUI features. + - The Zero Trust team name is not visible in the GUI if you upgraded from the previous GA release using an MDM tool. + - Sometimes the WARP icon will remain gray (disconnected state) while in dark mode. + +version: 2024.6.497.0 +releaseDate: 2024-08-15 +packageURL: https://pkg.cloudflareclient.com/ +platformName: Linux diff --git a/src/content/warp-releases/linux/ga/2024.9.346.0.yaml b/src/content/warp-releases/linux/ga/2024.9.346.0.yaml new file mode 100644 index 000000000000000..cc18eb38418f8c8 --- /dev/null +++ b/src/content/warp-releases/linux/ga/2024.9.346.0.yaml @@ -0,0 +1,27 @@ +releaseNotes: | + This release contains minor fixes and minor improvements. + + **Notable updates** + - Added `target list` to the `warp-cli` to enhance the user experience with the [Access for Infrastructure SSH](/cloudflare-one/connections/connect-networks/use-cases/ssh/ssh-infrastructure-access/) solution. + - Added the ability to customize PCAP options in the `warp-cli`. + - Added a list of installed applications in `warp-diag`. + - Added a `tunnel reset mtu` subcommand to the `warp-cli`. + - Added the ability for `warp-cli` to use the team name provided in the MDM file for initial registration. + - Added a JSON output option to the `warp-cli`. + - Added the ability to execute a PCAP on multiple interfaces with `warp-cli`. + - Added MASQUE tunnel protocol support for the consumer version of WARP ([1.1.1.1 w/ WARP](/warp-client/)). + - Improved the performance of firewall operations when enforcing split tunnel configuration. + - Fixed an issue where device posture certificate checks were unexpectedly failing. + - Fixed an issue where the Linux GUI fails to open the browser login window when registering a new Zero Trust organization. + - Fixed an issue where clients using service tokens failed to retry after a network change. + - Fixed an issue where the client, when switching between WireGuard and MASQUE protocols, sometimes required a manual tunnel key reset. + - Fixed a known issue which required users to re-register when an older single configuration MDM file was deployed after deploying the newer, multiple configuration format. + - Deprecated `warp-cli` commands have been removed. If you have any workflows that use the deprecated commands, update to the new commands where necessary. + + **Known issues:** + - Using MASQUE as the tunnel protocol may be incompatible if your organization has Regional Services is enabled. + +version: 2024.9.346.0 +releaseDate: 2024-10-03 +packageURL: https://pkg.cloudflareclient.com/ +platformName: Linux diff --git a/src/content/warp-releases/macos/beta/2021.11.371.1.yaml b/src/content/warp-releases/macos/beta/2021.11.371.1.yaml new file mode 100644 index 000000000000000..dc77ff0e9894fe0 --- /dev/null +++ b/src/content/warp-releases/macos/beta/2021.11.371.1.yaml @@ -0,0 +1,23 @@ +releaseNotes: >- + This release contains new features and improvements from the last release. + + + **Notable updates** + + - With this release you can now specify specific DNS servers to use for + domains in Local Domain fallback in the Teams Dashboard. + + - Improved reliability of connection between client gui and daemon. + + - Improved the connectivity check to more frequently and consistently check + for connectivity. + + - Fixed issue where Split Tunnel UI in Preferences->Advanced of the client did + not correctly show include only routes. + + - Fixed reliability issues around waking from sleep. +version: 2021.11.371.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2021.11.371.1 +packageSize: 41333114 +releaseDate: 2021-12-07T01:47:45.274Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2021.11.399.1.yaml b/src/content/warp-releases/macos/beta/2021.11.399.1.yaml new file mode 100644 index 000000000000000..570a9bdc742ec0c --- /dev/null +++ b/src/content/warp-releases/macos/beta/2021.11.399.1.yaml @@ -0,0 +1,10 @@ +releaseNotes: |- + This release contains new features and improvements from the last release. + + **Notable updates** + - Fixed an issue with DNS not working after waking from sleep. +version: 2021.11.399.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2021.11.399.1 +packageSize: 41352858 +releaseDate: 2021-12-09T00:56:20.876Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2021.12.4.1.yaml b/src/content/warp-releases/macos/beta/2021.12.4.1.yaml new file mode 100644 index 000000000000000..3b0c9c430cda8de --- /dev/null +++ b/src/content/warp-releases/macos/beta/2021.12.4.1.yaml @@ -0,0 +1,8 @@ +releaseNotes: |- + **Notable updates** + - Minor version bump. +version: 2021.12.4.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2021.12.4.1 +packageSize: 41365134 +releaseDate: 2021-12-11T01:14:26.752Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2022.1.201.1.yaml b/src/content/warp-releases/macos/beta/2022.1.201.1.yaml new file mode 100644 index 000000000000000..ba5ea147875c76c --- /dev/null +++ b/src/content/warp-releases/macos/beta/2022.1.201.1.yaml @@ -0,0 +1,25 @@ +releaseNotes: >- + This release contains new features and improvements from the last release. In + particular, we have made significant changes to how local settings (plist) are + processed and how they work with new devices settings in the dashboard. + + + **Notable updates** + + - Added support for Gateway session duration enforcement allowing you to force + re-authentication after a specified time. + + - Fixed issue where local domain fallback list was empty when in consumer WARP + mode. + + - Fixed wake from sleep issue where DNS requests could fail. + + + **Known issues** + + - No known issues +version: 2022.1.201.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2022.1.201.1 +packageSize: 42867563 +releaseDate: 2022-01-26T23:05:09.539Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2022.10.112.1.yaml b/src/content/warp-releases/macos/beta/2022.10.112.1.yaml new file mode 100644 index 000000000000000..1c334ae890c039a --- /dev/null +++ b/src/content/warp-releases/macos/beta/2022.10.112.1.yaml @@ -0,0 +1,22 @@ +releaseNotes: >- + This release is a mirror of GA release 2022.10.107.0 + + **Notable updates** + + - Fixed issue where GUI may still think user is registered after "warp-cli + delete" is run + + - Decreased warp-diag zip file sizes by 60-80% + + + + **Known issues** + + - If you are having issues with upgrading to new beta, please uninstall + current app, install the GA version from https://1.1.1.1/ and participate in + beta program from Preferences->Advanced. +version: 2022.10.112.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2022.10.112.1 +packageSize: 52159065 +releaseDate: 2022-11-17T06:28:17.592Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2022.10.73.1.yaml b/src/content/warp-releases/macos/beta/2022.10.73.1.yaml new file mode 100644 index 000000000000000..b4995955b6d082b --- /dev/null +++ b/src/content/warp-releases/macos/beta/2022.10.73.1.yaml @@ -0,0 +1,34 @@ +releaseNotes: >- + This release primarily contains bug fixes, no new features are included in + this release + + **Notable updates** + + - Modified behavior of `warp-cli enable-dns-log` to automatically turn off + after 7 days (this is the equivalent of manually running `warp-cli + disable-dns-log`) + + - Fixed HappyEyeballs search on IPv6 only devices + + - Fixed UI in various states where we would show the wrong text when in + various states (ex. Paused when really disabled via Admin Override, etc.) + + - Fixed HappyEyeball issue where Safari users without native IPv6 may see + increased captcha challenges + + - Fixed issue where device posture timers were paused while device was asleep. + Posture tests are now immediately ran on device wakeup and all timers + restarted + + + + **Known issues** + + - If you are having issues with upgrading to new beta, please uninstall + current app, install the GA version from https://1.1.1.1/ and participate in + beta program from Preferences->Advanced. +version: 2022.10.73.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2022.10.73.1 +packageSize: 52122199 +releaseDate: 2022-11-07T16:31:22.139Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2022.12.267.1.yaml b/src/content/warp-releases/macos/beta/2022.12.267.1.yaml new file mode 100644 index 000000000000000..7665204d0b8a3a3 --- /dev/null +++ b/src/content/warp-releases/macos/beta/2022.12.267.1.yaml @@ -0,0 +1,51 @@ +releaseNotes: >- + This release primarily contains bug fixes, no new features are included in + this release + + **Notable updates** + + - Improved captive portal handling for some more captive portals. + + - Improved reconnect logic when a setting changes to no longer always do a + full disconnect->reconnect cycle (for instance when turning on DNS logging). + + - Modified initial connectivity check behavior to now validate both IPv4 and + IPv6 are working (previously we only checked IPv4). Test will pass if either + connects successfully. + + - Fixed issue where client could be stuck on `Connecting` if certain DNS + checks failed once. + + - Fixed DNS issue where TXT records were not being correctly returned when at + the end of a CNAME chain. + + - Fixed issue where the client may not receive notifications of new settings, + re-auth events or posture from the service until reboot. + + - Fixed issue where users could be pointing at an old gateway_doh_subdomain if + you have `Allowed to Leave` set to true and they've manually joined their + client to your organization. + + - Fixed slow DNS timeout issue that could occur when IPv6 is enabled and an + NXDOMAIN record is returned. + + - Fixed issue with `Gateway with DoH` mode could say `Connected` when it + wasn't really connected as we could sometimes test the wrong endpoint. + + - Fixed issue where our local DNS proxy server could get unset with an overly + active DHCP renew time or by plugging in/out a tethered device. + + **Known issues** + + - There is a race condition that may cause IPv4 traffic to fail after the + tunnel starts up. This can be fixed by toggling off then back on the + connection. A hotfix is in the works. + + - If you are having issues with upgrading to new beta, please uninstall + current app, install the GA version from https://1.1.1.1/ and participate in + beta program from Preferences->Advanced. +version: 2022.12.267.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2022.12.267.1 +packageSize: 47987435 +releaseDate: 2022-12-06T23:13:53.633Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2022.12.439.1.yaml b/src/content/warp-releases/macos/beta/2022.12.439.1.yaml new file mode 100644 index 000000000000000..86d51c12745ccfd --- /dev/null +++ b/src/content/warp-releases/macos/beta/2022.12.439.1.yaml @@ -0,0 +1,36 @@ +releaseNotes: >- + This release contains the following changes since the previous 2022.12 beta + release + + **Notable updates** + + - Added support for new Zero Trust network location aware WARP feature. More + info to be released soon on how you can test. + + - Fixed issue where `warp-cli teams-enroll` wouldn't work when an mdm file was + present + + - Fixed issue where our localhost dns endpoints (ex. 127.0.2.2) could appear + in the fallback configuration potentially causing DNS lookups to fail + + - Fixed issues where GUI could crash when opening from the Menu Bar + + - Fixed issue that could cause some DNS queries to take upto 15 seconds to + complete + + + + **Known issues** + + - There is a race condition that may cause IPv4 traffic to fail after the + tunnel starts up. This can be fixed by toggling off then back on the + connection. A hotfix is in the works. + + - If you are having issues with upgrading to new beta, please uninstall + current app, install the GA version from https://1.1.1.1/ and participate in + beta program from Preferences->Advanced. +version: 2022.12.439.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2022.12.439.1 +packageSize: 47757810 +releaseDate: 2022-12-21T21:51:39.539Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2022.12.595.1.yaml b/src/content/warp-releases/macos/beta/2022.12.595.1.yaml new file mode 100644 index 000000000000000..d3f9314abf39fd9 --- /dev/null +++ b/src/content/warp-releases/macos/beta/2022.12.595.1.yaml @@ -0,0 +1,71 @@ +releaseNotes: >- + This release has support for new Zero Trust network location aware feature and + contains improvements to stability and bug fixes. + + **Hotfix Updates** + + - Fixed issue where clients could lose IPv4 connectivity (2nd hotfix applied). + + - Fixed issue where clients would attempt to configure DNS even when in + posture-only, or proxy modes. + + - Increased MDM file timeout to improve compatibility with certain management + solutions. + + **Notable updates in previous GA (2022.12.475.0)** + + - Added support for new Zero Trust network location aware WARP feature. More + info to be released soon on how you can test. + + - Improved captive portal handling for some more captive portals. + + - Improved reconnect logic when a setting changes to no longer always do a + full disconnect->reconnect cycle (for instance when turning on DNS logging). + + - Modified initial connectivity check behavior to now validate both IPv4 and + IPv6 are working (previously we only checked IPv4). Test will pass if either + connects successfully. + + - Fixed issue where client could be stuck on `Connecting` if certain DNS + checks failed once. + + - Fixed DNS issue where TXT records were not being correctly returned when at + the end of a CNAME chain. + + - Fixed issue where the client may not receive notifications of new settings, + re-auth events or posture from the service until reboot. + + - Fixed issue where users could be pointing at an old gateway_doh_subdomain if + you have `Allowed to Leave` set to true and they've manually joined their + client to your organization. + + - Fixed slow DNS timeout issue that could occur when IPv6 is enabled and an + NXDOMAIN record is returned. + + - Fixed issue with `Gateway with DoH` mode could say `Connected` when it + wasn't really connected as we could sometimes test the wrong endpoint. + + - Fixed issue where our local DNS proxy server could get unset with an overly + active DHCP renew time or by plugging in/out a tethered device. + + - Fixed issue where `warp-cli teams-enroll` wouldn't work when an mdm file was + present. + + - Fixed issue where our localhost dns endpoints (ex. 127.0.2.2) could appear + in the fallback configuration potentially causing DNS lookups to fail + + - Fixed issues where GUI could crash when opening from the Menu Bar. + + - Fixed issue that could cause some DNS queries to take upto 15 seconds to + complete. + + **Known issues** + + - If you are having issues with upgrading to new beta, please uninstall + current app, install the GA version from https://1.1.1.1/ and participate in + beta program from Preferences->Advanced. +version: 2022.12.595.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2022.12.595.1 +packageSize: 47744840 +releaseDate: 2023-01-19T20:26:39.950Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2022.2.115.1.yaml b/src/content/warp-releases/macos/beta/2022.2.115.1.yaml new file mode 100644 index 000000000000000..bb65c07f4e5fb7e --- /dev/null +++ b/src/content/warp-releases/macos/beta/2022.2.115.1.yaml @@ -0,0 +1,22 @@ +releaseNotes: >- + This release contains new features and improvements from the last beta + release. + + + **Notable updates** + + - Added support for Device Information only mode. This allows for posture to + be used for Access policies without Gateway being enabled. Please reach out to + your Cloudflare rep if you would like to test this feature ahead of release + + + + **Known issues** + + - The organization name is case sensitive, which could cause a device to lose + registration. +version: 2022.2.115.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2022.2.115.1 +packageSize: 43872104 +releaseDate: 2022-02-15T22:17:39.580Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2022.2.25.1.yaml b/src/content/warp-releases/macos/beta/2022.2.25.1.yaml new file mode 100644 index 000000000000000..460eb6511ec993a --- /dev/null +++ b/src/content/warp-releases/macos/beta/2022.2.25.1.yaml @@ -0,0 +1,22 @@ +releaseNotes: |- + This release contains new features and improvements from the last beta release. In particular this build now supports the ability to configure settings via the Dashboard and not just with a .plist. Note that settings in your .plist always overrule what comes from the dashboard. + + **Notable updates** + - The "enabled" .plist property has now been completely deprecated and is no longer read. Please see https://developers.cloudflare.com/cloudflare-one/connections/connect-devices/warp/deployment/mdm-deployment/parameters#switch_locked for the mechanism announced in April 2021 + - Now that settings exist in the Zero Trust Dashboard the Client UI should behave the same regardless of if you manually joined to a Team or if you were forced to by local .plist policy + - Updated Teams logo in app to Zero Trust + - Fixed issue where the WARP Client might not get updated settings when it initial starts + - Fixed issue where the Last Seen value was not updated properly in the Zero Trust Dashboard while in Gateway with DoH mode + - Fixed issue where device name was not updated in the Zero trust Dashboard if the computer name changed after initial registration + - Fixed issue where you could not log out a team after clicking "Reset Encryption Keys" + - Fixed various issues with split tunnel support in consumer mode + - Fixed issue where "warp-cli settings" showed connection time in settings instead of minutes + + + **Known issues** + No known issues +version: 2022.2.25.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2022.2.25.1 +packageSize: 42947573 +releaseDate: 2022-02-09T20:48:03.564Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2022.2.258.1.yaml b/src/content/warp-releases/macos/beta/2022.2.258.1.yaml new file mode 100644 index 000000000000000..2d4e7930a9e14fe --- /dev/null +++ b/src/content/warp-releases/macos/beta/2022.2.258.1.yaml @@ -0,0 +1,16 @@ +releaseNotes: |- + This release is a minor hotfix over the previous beta release (2022.2.115.1). + + **Notable updates** + - Fixed an issue where the organization name became case sensitive and could cause a device to lose registration. + + + **Known issues** + No known issues + + For releated Cloudflare for Teams documentation please see: https://developers.cloudflare.com/cloudflare-one/connections/connect-devices/warp +version: 2022.2.258.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2022.2.258.1 +packageSize: 43864232 +releaseDate: 2022-02-23T22:51:27.740Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2022.3.150.1.yaml b/src/content/warp-releases/macos/beta/2022.3.150.1.yaml new file mode 100644 index 000000000000000..17c61fd09e07eae --- /dev/null +++ b/src/content/warp-releases/macos/beta/2022.3.150.1.yaml @@ -0,0 +1,14 @@ +releaseNotes: |- + This release contains Bug fixes and connection stability improvement + + **Notable updates** + - Bug fixes and connection stability improvement + + + **Known issues** + No known issues +version: 2022.3.150.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2022.3.150.1 +packageSize: 42647934 +releaseDate: 2022-03-21T20:23:34.817Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2022.3.73.1.yaml b/src/content/warp-releases/macos/beta/2022.3.73.1.yaml new file mode 100644 index 000000000000000..e5ed9021dae3112 --- /dev/null +++ b/src/content/warp-releases/macos/beta/2022.3.73.1.yaml @@ -0,0 +1,27 @@ +releaseNotes: >- + This release contains new features and improvements from the last release. + + **Notable updates** + + - Added support for Device Information only mode. This allows for posture to + be used for Access policies without Gateway being enabled. + + - Fixed issue for Zero Trust accounts with Captive Portal disabled where they + client may not always reconnect when it should + + - Fixed issue where the UI would show disconnected when the client was instead + just temporarily paused + + - Fixed issue where serial numbers with spaces in the string were not + correctly reported + + + + **Known issues** + + - No known issues +version: 2022.3.73.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2022.3.73.1 +packageSize: 42640118 +releaseDate: 2022-03-10T18:54:05.856Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2022.4.21.1.yaml b/src/content/warp-releases/macos/beta/2022.4.21.1.yaml new file mode 100644 index 000000000000000..f926fce2c3d487a --- /dev/null +++ b/src/content/warp-releases/macos/beta/2022.4.21.1.yaml @@ -0,0 +1,25 @@ +releaseNotes: |- + *PLEASE NOTE* If you are a Zero Trust customer and have strict firewall rules, you must visit https://developers.cloudflare.com/cloudflare-one/connections/connect-devices/warp/deployment/firewall/#client-orchestration-api and explicitly allow our new Client Orchestration API Endpoints. + + This release contains new features and improvements from the last release + + **Notable updates** + + - Added support for Cloudflare Tunnels users to route traffic to distinct Virtual Networks with overlapping IP ranges + - Added ability for users to manually refresh Zero Trust authentication via the Preferences->Account menu + - Modified Client Orchestration API Endpoint the client connects to in Zero Trust mode + - Modified warp-cli behavior of "connect" and "disconnect" to mimic "enable-always-on" and "disable-always-on" which themselves are copies of how the main toggle switch behaves in the UI + - Modified client behavior to no longer do periodic tunnel connectivity checks. These checks frequently caused more problems than they solved. + - Fixed an issue where the UI would always launch on startup + - Fixed issue where Zero Trust users would receive a notification to update the client even though upgrades were disabled in settings + - Fixed issue where the GUI would show disconnected when it should show Paused + - Fixed various issues with warp-diag and improve overall stability + + + **Known issues** + - UI incorrectly Shows Virtual Networks selector when there is only 1 default network. This UI should be hidden unless there are actually multiple networks to choose from. +version: 2022.4.21.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2022.4.21.1 +packageSize: 45842542 +releaseDate: 2022-04-01T16:26:48.192Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2022.5.201.1.yaml b/src/content/warp-releases/macos/beta/2022.5.201.1.yaml new file mode 100644 index 000000000000000..4b745a151251a5a --- /dev/null +++ b/src/content/warp-releases/macos/beta/2022.5.201.1.yaml @@ -0,0 +1,12 @@ +releaseNotes: >- + This release contains bug fixes from the previous beta release + + **Notable updates** + + - Fixed issue with warp-cli where enable/disable with wifi was allowed in + Zero Trust mode +version: 2022.5.201.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2022.5.201.1 +packageSize: 46880045 +releaseDate: 2022-05-24T18:39:27.396Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2022.5.325.1.yaml b/src/content/warp-releases/macos/beta/2022.5.325.1.yaml new file mode 100644 index 000000000000000..99724856fb44df7 --- /dev/null +++ b/src/content/warp-releases/macos/beta/2022.5.325.1.yaml @@ -0,0 +1,11 @@ +releaseNotes: |- + This release is a hotfix for 2022.5.227.0. + **Notable updates** + + - Fixed false positives when attempting to detect a captive portal + - Fixed issue where OS version would not be updated in dash after OS update +version: 2022.5.325.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2022.5.325.1 +packageSize: 46889020 +releaseDate: 2022-06-13T23:09:42.305Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2022.5.43.1.yaml b/src/content/warp-releases/macos/beta/2022.5.43.1.yaml new file mode 100644 index 000000000000000..10ad0dadca735e8 --- /dev/null +++ b/src/content/warp-releases/macos/beta/2022.5.43.1.yaml @@ -0,0 +1,44 @@ +releaseNotes: >- + This release contains significant improvements to our DNS functionality. In + addition to overall improved DNS stability and performance, we now fully + support DNS requests over TCP. This also modifies our local DNS proxy to use + the internal IPs of 127.0.2.2, 127.0.2.3, fd01:db8:1111::2, and + fd01:db8:1111::3. + + **Notable updates** + + - Added support for DNS over TCP + + - Modified client font to be system default + + - Modified client behavior to no longer show massive upgrade notification when + a new build is released, instead you'll now see a change to our system tray + icon to indicate a new build is available + + - Fixed issue where the Virtual Network selector would appear for users with + only a single network + + - Fixed issue where the Virtual Network selector may not appear after a reboot + + - Fixed issue where the Logout from Zero trust button would remain locked + after an mdm.xml file was removed + + - Fixed issue where settings and/or UI may not properly clear when moving from + one Zero Trust org to another + + - Fixed issue when coming out of sleep where it could take 60 seconds to + connect while we waited for Apples connectivity checks to finish (and we + didn't really need to) - Fixed WARP IPC error that could be caused when we + fail to set particular firewall settings + + - Fixed issue multiple registration issues that could happen when re-applying + local policy file (.plist) + + - Fixed incorrect "OS not supported" error in warp-cli when using teams-enroll + + - Fixed issue where updated posture checks might not take effect until restart +version: 2022.5.43.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2022.5.43.1 +packageSize: 45874688 +releaseDate: 2022-05-10T18:43:06.504Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2022.7.172.1.yaml b/src/content/warp-releases/macos/beta/2022.7.172.1.yaml new file mode 100644 index 000000000000000..5db2b8cc35992ec --- /dev/null +++ b/src/content/warp-releases/macos/beta/2022.7.172.1.yaml @@ -0,0 +1,16 @@ +releaseNotes: >- + This release contains a minor bug fix from the previous beta + + **Notable updates** + + - Fix issue where app UI would not disappear consistently when bringing up + preferences + + **Known issues** + + - No known issues +version: 2022.7.172.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2022.7.172.1 +packageSize: 45566108 +releaseDate: 2022-07-14T17:40:05.663Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2022.7.285.1.yaml b/src/content/warp-releases/macos/beta/2022.7.285.1.yaml new file mode 100644 index 000000000000000..32d70ec611effb2 --- /dev/null +++ b/src/content/warp-releases/macos/beta/2022.7.285.1.yaml @@ -0,0 +1,21 @@ +releaseNotes: >- + This release contains a single change to the behavior of the client when WARP + session duration Gateway Network or HTTP policies are in place. No other bug + fixes or feature are included. + + **Notable updates** + + - Modified client behavior to no longer automatically open a new browser tab + when user needs to re-authenticate as this was causing some users to return to + their devices with 100s of tabs open. Instead the client will now use the + built in operating system notification framework to inform users of the need + to authenticate. + + **Known issues** + + - No known issues +version: 2022.7.285.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2022.7.285.1 +packageSize: 45307722 +releaseDate: 2022-07-25T16:31:14.588Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2022.7.369.1.yaml b/src/content/warp-releases/macos/beta/2022.7.369.1.yaml new file mode 100644 index 000000000000000..4d24c1b65656c49 --- /dev/null +++ b/src/content/warp-releases/macos/beta/2022.7.369.1.yaml @@ -0,0 +1,16 @@ +releaseNotes: >- + This release contains bug fixes from the previous beta + + **Notable updates** + + - Fixed issue where file device posture checks wouldn't work correctly when + the file path was changed for an existing rule. + + **Known issues** + + - No known issues +version: 2022.7.369.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2022.7.369.1 +packageSize: 45307806 +releaseDate: 2022-07-29T20:24:22.562Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2022.7.56.1.yaml b/src/content/warp-releases/macos/beta/2022.7.56.1.yaml new file mode 100644 index 000000000000000..bbabbc2cecd4e0a --- /dev/null +++ b/src/content/warp-releases/macos/beta/2022.7.56.1.yaml @@ -0,0 +1,55 @@ +releaseNotes: >- + This release primarily contains improvements to stability and bug fixes. There + are no major new features introduced with this release. + + **Notable updates** + + - Added /Library/Application\ Support/Cloudflare/cfwarp_daemon_dns.txt log + file when DNS logging is enabled + + - Added `do not fragment` bit to WARP tunnel traffic + + - Added ability for posture rules that support file paths to use environment + variables as part of the path + + - Modified output of `warp-cli account` and `warp-cli settings` to make + parsing information easier + + - Modified UI behavior so items not relevant in Zero Trust or Consumer mode + are no longer just grayed out, they are hidden completely + + - Fixed issue where warp-cli could be used determine a valid admin override + code + + - Fixed issue where warp-cli could be used to enable/disable on wifi networks + when in Zero Trust mode + + - Fixed issue where you would receive a notification immediately after install + that your internet was no longer private + + - Fixed issue with domain based split tunnels when a wildcard is used. + Anything after the `*` was included in the wildcard search so `*.example.com` + would include `badexample.com` + + - Fixed issue where client was sending improper ICMP responses when MTU needed + to change + + - Fixed issue where logs could grow too large + + - Fixed issue where user could see an error dialog going between DNS modes + + - Fixed issue where user was reminded to update after just asking to be + reminded later + + - Fixed crash in UI when viewing DNS logs and clicking on Resolver tab + + - Fixed issue where UI could sometimes appear not attached to menu bar + + **Known issues** + + - No known issues +version: 2022.7.56.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2022.7.56.1 +packageSize: 45573341 +releaseDate: 2022-07-06T17:33:34.318Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2022.8.692.1.yaml b/src/content/warp-releases/macos/beta/2022.8.692.1.yaml new file mode 100644 index 000000000000000..4378f14bf48fc89 --- /dev/null +++ b/src/content/warp-releases/macos/beta/2022.8.692.1.yaml @@ -0,0 +1,72 @@ +releaseNotes: >- + This release primarily contains improvements to stability and bug fixes. There + are no major new features introduced with this release. We also wanted to call + out that we've made server side changes to significantly reduce captcha issues + for users with IPv6 enabled (no client related change but wanted to call out + the work). + + **Notable updates** + + - Modified GUI when in Include Only split tunneling mode to correctly state + that just the routes included in the split tunnel configuration are protected. + This is just a string change. + + - Fixed issue where `warp-cli set-custom-endpoint` could be used by users + without local admin rights as a way to bypass Gateway policies. + + - Fixed issue where `warp-cli add-trusted-ssid` worked in Zero Trust mode when + it should not have. + + - Fixed issue where `warp-cli teams-enroll` would run even if already joined + to an organization and users were not allowed to disconnect or leave. + + - Fixed issue that could result in connection issues coming out of certain + sleep states (AddrInUse error or Multiple WARP Connections or + NoCurrentSession). + + - Fixed issue that could result in connection flickering between + connected/disconnected. + + - Fixed issue where connectivity test could report wrong status in logs when + in Include Only split tunnel configuration. + + - Fixed issue where UI would not properly show you were in Proxy mode. + + - Fixed issue where warp-cli could hang if daemon was in a bad state. + + - Fixed issue where sometimes Zero Trust device settings configured in the + dash wouldn't take effect for machines in a disconnected state and asleep + state. + + - Fixed issue where our DNS proxy wasn't correctly handling EDNS0 requests. + + - Fixed issue where the DNS answer for records at the end of a CNAME chain + would appear in the ADDITIONAL response section instead of the ANSWER section. + This broke certain connectivity checks for Microsoft and Android studio in + particular (probably other things). We now put the IP address found in the + ANSWER section. + + - Fixed issue where multiple instances of the service could run at the same + time. + + - Fixed issue that could occur during registration if the user clicks on on + the Launch Cloudflare WARP button after already registering. + + - Improved performance of warp-diag to now collects logs in parallel and now + collect additional routes to help with debugging. + + - Fixed crash of daemon after wake from sleeping which could cause loss of + network connectivity or the GUI to freeze. + + - Fixed issue with include-only tunnels reconnecting every ~135 seconds. + + **Known issues** + + - If you are having issues with upgrading to new beta, please uninstall + current app, install the GA version from `https://1.1.1.1/` and participate in + beta program from Preferences->Advanced. +version: 2022.8.692.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2022.8.692.1 +packageSize: 45709826 +releaseDate: 2022-09-02T19:45:49.653Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2022.8.870.1.yaml b/src/content/warp-releases/macos/beta/2022.8.870.1.yaml new file mode 100644 index 000000000000000..ad5ddc4a9739719 --- /dev/null +++ b/src/content/warp-releases/macos/beta/2022.8.870.1.yaml @@ -0,0 +1,22 @@ +releaseNotes: >- + This release contains bug fixes from the previous beta (2022.8.692.1). We also + + wanted to call out that we've made server side changes to significantly reduce + + captcha issues for users with IPv6 enabled (no client related change but + wanted + + to call out the work). + + **Notable updates** + + - Fixed failure to reconnect to WARP due to DNS stub server AddrInUse failures + + **Known issues** + + - No known issues +version: 2022.8.870.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2022.8.870.1 +packageSize: 45718456 +releaseDate: 2022-09-12T20:22:52.914Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2022.9.214.1.yaml b/src/content/warp-releases/macos/beta/2022.9.214.1.yaml new file mode 100644 index 000000000000000..39cdffe3a22d298 --- /dev/null +++ b/src/content/warp-releases/macos/beta/2022.9.214.1.yaml @@ -0,0 +1,40 @@ +releaseNotes: >- + This release primarily contains bug fixes, no new features are included in + this release + + **Notable updates** + + - Improved connection time on slow network connections + + - Improved reliability of opening the browser for registration or + authentication requests. We now try multiple times and will display an error + message if it fails to open + + - Fixed DNS fallback timeouts and related performance issues + + - Fixed issue where coming out of sleep on some systems could take an + unreasonably long time to connect + + - Fixed InvalidPacket error in logs that indicated the client needed to reset + its connection + + - Fixed UI issue where client would improperly show connection type as 1.1.1.1 + when in include split tunnel mode with WARP + + + + + + **Known issues** + + - Device posture check results stop sending after 24 hours (or possibly even + sooner) + + - If you are having issues with upgrading to new beta, please uninstall + current app, install the GA version from https://1.1.1.1/ and participate in + beta program from Preferences->Advanced. +version: 2022.9.214.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2022.9.214.1 +packageSize: 49610678 +releaseDate: 2022-09-22T18:34:26.398Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2022.9.265.1.yaml b/src/content/warp-releases/macos/beta/2022.9.265.1.yaml new file mode 100644 index 000000000000000..996a9af38355523 --- /dev/null +++ b/src/content/warp-releases/macos/beta/2022.9.265.1.yaml @@ -0,0 +1,22 @@ +releaseNotes: >- + This release primarily contains bug fixes for beta release 2022.9.214.1 + + **Notable updates** + + - Fixed issue where GUI would show no text and only the toggle after updating + mdm.plist file + + + **Known issues** + + - Device posture check results stop sending after 24 hours (or possibly even + sooner) + + - If you are having issues with upgrading to new beta, please uninstall + current app, install the GA version from https://1.1.1.1/ and participate in + beta program from Preferences->Advanced. +version: 2022.9.265.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2022.9.265.1 +packageSize: 49606616 +releaseDate: 2022-09-23T21:10:23.783Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2022.9.387.1.yaml b/src/content/warp-releases/macos/beta/2022.9.387.1.yaml new file mode 100644 index 000000000000000..3d742c938d89b56 --- /dev/null +++ b/src/content/warp-releases/macos/beta/2022.9.387.1.yaml @@ -0,0 +1,17 @@ +releaseNotes: >- + This release primarily updates the beta to match GA 2022.9.384.0 + + **Notable updates** + + - None + + + **Known issues** + + - Device posture check results stop sending after 24 hours (or possibly even + sooner) +version: 2022.9.387.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2022.9.387.1 +packageSize: 49721742 +releaseDate: 2022-09-30T19:43:00.456Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2022.9.587.1.yaml b/src/content/warp-releases/macos/beta/2022.9.587.1.yaml new file mode 100644 index 000000000000000..52ad37938ccdf77 --- /dev/null +++ b/src/content/warp-releases/macos/beta/2022.9.587.1.yaml @@ -0,0 +1,14 @@ +releaseNotes: |- + This release contains hotfixes for 2022.9.387.1. + + **Notable updates** + - Fix issue where device posture check results stopped sending after 24 hours + (or possibly even sooner) + + **Known issues** + - No known issues +version: 2022.9.587.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2022.9.587.1 +packageSize: 49724992 +releaseDate: 2022-10-12T00:54:02.445Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2023.1.382.1.yaml b/src/content/warp-releases/macos/beta/2023.1.382.1.yaml new file mode 100644 index 000000000000000..730e44af55a63bd --- /dev/null +++ b/src/content/warp-releases/macos/beta/2023.1.382.1.yaml @@ -0,0 +1,29 @@ +releaseNotes: >- + This release primarily contains bug fixes and improvements, no new features + are included in this release. + + + **Notable updates** + + - Improve timeouts with broken CNAME records that could result in very long + load times for certain apps (Office 365 apps, etc.) + + - Fixed issue where trying to launch a support_url without a valid protocol + handler (ex. https://) would result in an error + + - Fixed issue where systems with significantly out of sync system clocks could + fail registration + + - Fixed panic that could result in loss of internet connectivity + + + **Known issues** + + - If you are having issues with upgrading to new beta, please uninstall + current app, install the GA version from https://1.1.1.1/ and participate in + beta program from Preferences->Advanced. +version: 2023.1.382.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2023.1.382.1 +packageSize: 47735934 +releaseDate: 2023-02-02T00:19:03.252Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2023.1.624.1.yaml b/src/content/warp-releases/macos/beta/2023.1.624.1.yaml new file mode 100644 index 000000000000000..bcf2a9630436b6c --- /dev/null +++ b/src/content/warp-releases/macos/beta/2023.1.624.1.yaml @@ -0,0 +1,27 @@ +releaseNotes: >- + This release contains bug fixes and new features from the previous Beta + release. + + **Notable updates** + + - Improved user validation logic during manual ZT login. + + - Fixed issue where the WARP daemon can crash and lose connectivity. + + - Fixed issue where warp-diag could run traceroutes longer than expected. + Traceroute tests will now timeout after 65 seconds. + + - Fixed issue introduced with previous beta release where you could end up in + a bad registration state if .plist was removed prior to upgrade. + + - Fixed issue where manually logging into a ZT org could fail if certificate + authentication was used. + + **Known issues** + + - No known issues. +version: 2023.1.624.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2023.1.624.1 +packageSize: 47457782 +releaseDate: 2023-02-22T20:28:35.040Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2023.10.324.1.yaml b/src/content/warp-releases/macos/beta/2023.10.324.1.yaml new file mode 100644 index 000000000000000..aa7416e8d03a1f0 --- /dev/null +++ b/src/content/warp-releases/macos/beta/2023.10.324.1.yaml @@ -0,0 +1,28 @@ +releaseNotes: >- + This releases contains a fairly major refactor of the warp-cli interface. + While all existing commands are backwards compatible for at least the next 6 + months, please take a moment to look through the new warp-cli and let us know + what you think + + **Notable updates** + + - Added ability to run pcaps from warp-cli to make debugging easier + + - Modified warp-cli commands to be more consistent and readable + + - Fixed an issue where tunnel could become unresponsive a few minutes after + coming out of sleep or after changing networks + + - Fixed a small timing windows where the app could prompt the user to upgrade + to the latest version even when updated were disallowed by policy. This + happened because the GUI was able to start faster than the rest of the + processes. + + **Known issues** + + - No known issues +version: 2023.10.324.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2023.10.324.1 +packageSize: 69832601 +releaseDate: 2023-11-14T16:15:48.974Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2023.11.36.1.yaml b/src/content/warp-releases/macos/beta/2023.11.36.1.yaml new file mode 100644 index 000000000000000..ffb699d5e66d5b9 --- /dev/null +++ b/src/content/warp-releases/macos/beta/2023.11.36.1.yaml @@ -0,0 +1,17 @@ +releaseNotes: >- + This releases contains bug fixes only, no new functionality has been + introduced + + **Notable updates** + + - Fixed an issue where we were incorrectly setting the default local domain + fallback server value for entries without an explicit DNS server set + + **Known issues** + + - No known issues +version: 2023.11.36.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2023.11.36.1 +packageSize: 69634828 +releaseDate: 2023-11-14T21:34:24.046Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2023.12.292.1.yaml b/src/content/warp-releases/macos/beta/2023.12.292.1.yaml new file mode 100644 index 000000000000000..ea44341162125bc --- /dev/null +++ b/src/content/warp-releases/macos/beta/2023.12.292.1.yaml @@ -0,0 +1,44 @@ +releaseNotes: >- + This release contains exciting new features and bug fixes for both DEX and + notifications. Please take time over the next few weeks to play with the new + functionality and let us know what you think on both the community forum and + through your account teams. + + **Notable updates** + + - Added ability for Client to display Gateway NETWORK and HTTP block + notifications to the user (feature to be available in dash in the coming + week). + + - Added ability for administrators to specify multiple configurations in MDM + files that users can toggle between. This allows users to more easily switch + between production and test environments or China customers to switch between + their override endpoints within the UI. + + - Improved existing re-auth notifications to be more visible and time + sensitive. + + - Fixed an issue where DEX tests would run before the client was fully + connected. + + - Fixed minor UI issue for customers in Include Split tunnel mode where the + client would incorrectly state "Your internet is protected" instead of only + DNS and Included routes are protected. + + - Fixed an issue where the GUI app would be unresponsive to clicks after + waking up from sleep. + + - Fixed an issue where the re-authenticate button was not completely visible + in the GUI. + + **Known issues** + + - The new `display_name` MDM parameter that is part of the multiple + configurations feature is not correctly working. For this release the name + visible in the UI will be the organization value. A future beta release will + correct this; it is safe to include this parameter in updated MDM files now. +version: 2023.12.292.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2023.12.292.1 +packageSize: 70335499 +releaseDate: 2023-12-16T03:40:27.993Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2023.3.165.1.yaml b/src/content/warp-releases/macos/beta/2023.3.165.1.yaml new file mode 100644 index 000000000000000..0da5c9c8a4cfc85 --- /dev/null +++ b/src/content/warp-releases/macos/beta/2023.3.165.1.yaml @@ -0,0 +1,47 @@ +releaseNotes: >- + This release contains bug fixes and new features from the previous Beta + release. With this release we are now feature complete for the quarter and + will begin focusing exclusively on QA and bug fixes only. We encourage + customers to test with this version and report issues ASAP. + + **Notable updates** + + - Added support for Zero Trust Digital Experience Monitoring. More information + coming soon for customers who signed up for the beta + + - Added new log message to help customers and support identify when a users + local network IP space overlaps with a remote network configured to go through + the tunnel + + - Added support for Zero Trust customers to opt in to having the WARP Client + install the root CA for your organization if TLS Decryption is enabled. A new + toggle switch will appear in the dashboard under Settings->WARP Client soon to + enable this + + - Modified behavior of Managed networks tests to always happen outside the + tunnel as per original intent + + - Modified firewall behavior to allow incoming UDP traffic on ports 67-68 over + split tunnel routes configured to be protected by Gateway. This change should + allow organizations with overlapping networks to an end users local network, + to not leave their users in a completely broken state without internet + connectivity + + - Fixed issue introduced in previous beta with delays in initial registration + and onboarding flows + + - Fixed issue introduced in previous beta where entering the admin override + code would not turn off the toggle switch for the user + + - Fixed issue where GUI could miss a status message from the WARP Service + resulting in the wrong state being reflected to users. An example is the GUI + could show `Connecting` even though device was `Connected` + + **Known issues** + + - No known issues +version: 2023.3.165.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2023.3.165.1 +packageSize: 49285066 +releaseDate: 2023-03-14T22:08:27.600Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2023.3.267.1.yaml b/src/content/warp-releases/macos/beta/2023.3.267.1.yaml new file mode 100644 index 000000000000000..5bd082dfad7d523 --- /dev/null +++ b/src/content/warp-releases/macos/beta/2023.3.267.1.yaml @@ -0,0 +1,23 @@ +releaseNotes: >- + This release contains only bug fixes from the previous beta release. + + As stated in the previous beta notes, we are now feature complete for the + quarter and will begin focusing exclusively on QA and bug fixes only. We + encourage customers to test with this version and report issues ASAP. + + **Notable updates** + + - Fixed issue introduced in previous beta where client would show unable to + connect briefly before connecting properly + + - Fixed issue when running in local proxy mode where too many log entries were + written + + **Known issues** + + No known issues +version: 2023.3.267.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2023.3.267.1 +packageSize: 49319776 +releaseDate: 2023-03-22T23:39:05.875Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2023.3.386.1.yaml b/src/content/warp-releases/macos/beta/2023.3.386.1.yaml new file mode 100644 index 000000000000000..109d47b49629fc9 --- /dev/null +++ b/src/content/warp-releases/macos/beta/2023.3.386.1.yaml @@ -0,0 +1,62 @@ +releaseNotes: >- + This release contains new features and improvements from last GA release. + + **Notable updates** + + - Added support for Zero Trust Digital Experience Monitoring. More information + coming soon for customers who signed up for the beta + + - Added new log message to help customers and support identify when a users + local network IP space overlaps with a remote network configured to go through + the tunnel + + - Added support for Zero Trust customers to opt in to having the WARP Client + install the root CA for your organization if TLS Decryption is enabled. A new + toggle switch will appear in the dashboard under Settings->WARP Client soon to + enable this + + - Modified behavior of Managed networks tests to always happen outside the + tunnel as per original intent + + - Modified firewall behavior to allow incoming UDP traffic on ports 67-68 over + split tunnel routes configured to be protected by Gateway. This change should + allow organizations with overlapping networks to an end users local network, + to not leave their users in a completely broken state without internet + connectivity + + - Improved user validation logic during manual ZT login + + - Improve timeouts with broken CNAME records that could result in very long + load times for certain apps (Office 365 apps, etc.) + + - Fixed issue where trying to launch a support_url without a valid protocol + handler (ex. https://) would result in an error + + - Fixed issue where systems with significantly out of sync system clocks could + fail registration + + - Fixed panic that could result in loss of internet connectivity + + - Fixed issue where the WARP daemon can crash and lose connectivity + + - Fixed issue where warp-diag could run traceroutes longer than expected. + Traceroute tests will now timeout after 65 seconds. + + - Fixed issue where manually logging into a ZT org could fail if certificate + authentication was used + + - Fixed issue where GUI could miss a status message from the WARP Service + resulting in the wrong state being reflected to users. An example is the GUI + could show `Connecting` even though device was `Connected` + + - Fixed issue when running in local proxy mode where too many log entries were + written + + **Known issues** + + No known issues +version: 2023.3.386.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2023.3.386.1 +packageSize: 49314217 +releaseDate: 2023-04-05T16:58:23.423Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2023.5.409.1.yaml b/src/content/warp-releases/macos/beta/2023.5.409.1.yaml new file mode 100644 index 000000000000000..a7a7b2c6d481e00 --- /dev/null +++ b/src/content/warp-releases/macos/beta/2023.5.409.1.yaml @@ -0,0 +1,38 @@ +releaseNotes: >- + This release contains reliability improvements and general bug fixes. No new + features are introduced with this release. + + **Notable updates** + + - Improved performance of client when in Proxy Only mode + + - Modified `warp-cli settings` to now show if setting came from local (mdm) or + network (warp settings profile) policy to make debugging issues easier + + - Fixed issue that could result in latency increases every few minutes + + - Fixed a consumer only issue where a license key of excessive length could + result in 100% cpu usage + + - Fixed a minor memory leak every time we did a DNS query + + - Fixed issue when service token information was removed from .plist the + client would not prompt for user authentication as expected + + - Fixed 3rd party VPN Compatibility by adding a default /32 subnet to + interfaces that don't have them by default (this was specifically to fix + compat with NordLayer but may help others) + + - Fixed issue where re-authentication button could show up in consumer 1.1.1.1 + mode even though it is just a Zero Trust feature + + **Known issues** + + - If you are having issues with upgrading to new beta, please uninstall + current app, install the GA version from https://1.1.1.1/ and participate in + beta program from Preferences->Advanced. +version: 2023.5.409.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2023.5.409.1 +packageSize: 56877166 +releaseDate: 2023-05-26T19:54:07.126Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2023.5.589.1.yaml b/src/content/warp-releases/macos/beta/2023.5.589.1.yaml new file mode 100644 index 000000000000000..2087b7faa27998b --- /dev/null +++ b/src/content/warp-releases/macos/beta/2023.5.589.1.yaml @@ -0,0 +1,31 @@ +releaseNotes: >- + This release contains bug fixes and support for a new operating mode called + "Secure Web Gateway without DNS Filtering". This new mode disabled all DNS + functionality of the client while still retaining things such as the WARP + Tunnel, DEX and posture support. + + **Notable updates** + + - Add support for "SWG without DNS Filtering" mode + + - Add support for ProductVersionExtra to be used in OS Version posture checks + + - Improve performance of domain-based split tunneling when the IP was already + split tunneled (seen frequently with Zoom domains and IPs being used) + + - Fixed issue that could cause many requests for authentication to open in the + browser + + - Fixed issue where client could get into a bad state when auth id/secret + removed from plist + + **Known issues** + + - If you are having issues with upgrading to new beta, please uninstall + current app, install the GA version from https://1.1.1.1/ and participate in + beta program from Preferences -> Advanced. +version: 2023.5.589.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2023.5.589.1 +packageSize: 63456758 +releaseDate: 2023-06-12T16:48:13.599Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2023.7.242.1.yaml b/src/content/warp-releases/macos/beta/2023.7.242.1.yaml new file mode 100644 index 000000000000000..31f7699e481dfb8 --- /dev/null +++ b/src/content/warp-releases/macos/beta/2023.7.242.1.yaml @@ -0,0 +1,16 @@ +releaseNotes: >- + This update contains no new features. + + **Notable updates** + + - Fixed issue where DoH requests could take too long to timeout causes DNS + reliability issues + + **Known issues** + + - No known issues +version: 2023.7.242.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2023.7.242.1 +packageSize: 66531557 +releaseDate: 2023-07-27T03:15:47.160Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2023.7.343.1.yaml b/src/content/warp-releases/macos/beta/2023.7.343.1.yaml new file mode 100644 index 000000000000000..fc944cca4e8dac2 --- /dev/null +++ b/src/content/warp-releases/macos/beta/2023.7.343.1.yaml @@ -0,0 +1,47 @@ +releaseNotes: >- + In addition to general bug fixes this release contains two new exciting + features. + + + The first we hope will improve diagnosing connectivity issues by bubbling up + common errors to the GUI so admins no longer have to dig through logs to find + a conflicting app or configuration issue. + + + The second is a new Zero Trust posture support: checking for the presence of a + certificate. You can get started today from your dashboard. + + **Notable updates** + + - Added connectivity error reasons to the UI + + - Added new posture type: Check for presence of a certificate + + - Modify IPv6 DNS behavior to no longer bind to discrete stub resolvers and + instead point interfaces at a V6->V4 mapping `::ffff:127.0.2.2`. This change + makes DNS mapping consistent on all platforms + + - Fixed an issue with DEX traceroutes tests where not all hops were correctly + reported + + - Fixed am issue where the WARP background process could crash under extreme + load + + - Fixed an issue where managed network detection could fail when firewall + rules were not correctly removed under certain disconnect scenarios + + - Fixed a timing issue exposed during previous beta where the client could get + stuck on Connecting state. This mostly happens coming out of sleep or + switching teams + + - Fixed an issue where an invalid override code could cause warp to disconnect + when the lock switch was not set to true + + **Known issues** + + - No known issues +version: 2023.7.343.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2023.7.343.1 +packageSize: 65324213 +releaseDate: 2023-08-08T23:12:37.922Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2023.7.76.1.yaml b/src/content/warp-releases/macos/beta/2023.7.76.1.yaml new file mode 100644 index 000000000000000..d76a09c295ea212 --- /dev/null +++ b/src/content/warp-releases/macos/beta/2023.7.76.1.yaml @@ -0,0 +1,34 @@ +releaseNotes: >- + This release contains reliability improvements and general bug fixes. No new + features are introduced with this release. + + **Notable updates** + + - Added support for IPv6 DEX Traceroute tests + + - Improved reliability and efficiency in configurating split tunnel rules. + Most `error petting the dog` errors should now be gone and organizations with + large split tunnel configuration should see reliability improvements + + - Fixed issue where DEX tests would not properly run immediately after a + device came out of sleep + + - Fixed issue where DEX tests will all execute at the same time causing + performance issues for accounts with a large number of tests configured + + + + **Known issues** + + - Improved reliability and efficiency in configurating split tunnel rules. + Most `error petting the dog` errors should now be gone and organizations with + large split tunnel configuration should see reliability improvements. + + - If you are having issues with upgrading to new beta, please uninstall + current app, install the GA version from https://1.1.1.1/ and participate in + beta program from Preferences->Advanced. +version: 2023.7.76.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2023.7.76.1 +packageSize: 65514112 +releaseDate: 2023-07-14T23:03:07.654Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2023.8.298.1.yaml b/src/content/warp-releases/macos/beta/2023.8.298.1.yaml new file mode 100644 index 000000000000000..dd8ae8949f15bf5 --- /dev/null +++ b/src/content/warp-releases/macos/beta/2023.8.298.1.yaml @@ -0,0 +1,25 @@ +releaseNotes: >- + This release contains reliability improvements and general bug fixes. + + **Notable updates** + + - Fixed an issue where DNS could temporarily fail when DHCP updates were + processed + + - Fixed an issue where Learn More links on "unable to connect" errors in the + UI were pointing to the wrong place + + - Fixed an issue on initial device registration that could sometimes cause it + to fail and try again + + - Fixed an issue where the UI could appear in the wrong location when the app + starts + + **Known issues** + + - No known issues +version: 2023.8.298.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2023.8.298.1 +packageSize: 68595439 +releaseDate: 2023-08-31T22:22:11.119Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2023.9.109.1.yaml b/src/content/warp-releases/macos/beta/2023.9.109.1.yaml new file mode 100644 index 000000000000000..d5271e99935baec --- /dev/null +++ b/src/content/warp-releases/macos/beta/2023.9.109.1.yaml @@ -0,0 +1,30 @@ +releaseNotes: >- + This release contains reliability improvements and general bug fixes. + + **Notable updates** + + - Improved DNS logging to track down an issue where DNS isn't properly applied + coming out of sleep + + - Tweaked DNS behavior to work better with some captive portals (United in + particular) + + - Fixed an issue with Managed Networks where if the managed endpoint + overlapped with your exclude split tunnel configuration, the split tunnel + would only be open for IP traffic destined to the same port as your managed + TLS endpoint + + - Fixed an issue where IPv6 traffic could be incorrectly sent down the tunnel + in exclude mode + + - Fixed an issue introduced in previous beta where the client could be stuck + on connecting forever + + **Known issues** + + - No known issues +version: 2023.9.109.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2023.9.109.1 +packageSize: 68664030 +releaseDate: 2023-09-18T14:40:43.303Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2024.1.8.1.yaml b/src/content/warp-releases/macos/beta/2024.1.8.1.yaml new file mode 100644 index 000000000000000..9198f38d0562b74 --- /dev/null +++ b/src/content/warp-releases/macos/beta/2024.1.8.1.yaml @@ -0,0 +1,33 @@ +releaseNotes: >- + This release contains exciting new features. Please take time over the next + few weeks to play with the new functionality and let us know what you think on + both the community forum and through your account teams. + + + **Notable updates** + + - Added the ability for administrators to allow their end users to temporarily + obtain access to local network resources in the event their home IP space + overlaps with traffic normally routed through the WARP tunnel. + + - The last beta added the ability for the client to display Gateway Network + and HTTP block notifications to the user. We later added the ability to + configure this feature in the dash; the end-to-end solution is now available. + + - Fixed an issue introduced in the previous beta where the organization name + was case-sensitive (it should not be) + + - Fixed a crash (segfault) when running warp-diag on some systems + + + **Known issues** + + - The new `display_name` MDM parameter that is part of the multiple + configurations feature is not correctly working. For this release, the name + visible in the UI will be the organization value. A future beta release will + correct this; it is safe to include this parameter in updated MDM files now +version: 2024.1.8.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2024.1.8.1 +packageSize: 70397577 +releaseDate: 2024-01-03T21:21:39.744Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2024.10.279.1.yaml b/src/content/warp-releases/macos/beta/2024.10.279.1.yaml new file mode 100644 index 000000000000000..5a2fdaa49b6082a --- /dev/null +++ b/src/content/warp-releases/macos/beta/2024.10.279.1.yaml @@ -0,0 +1,15 @@ +releaseNotes: | + This release contains minor fixes and improvements. + + **Changes and improvements:** + - Fixed an issue where SSH sessions and other application connections over TCP or UDP could be dropped when using MASQUE and the device’s primary network interface changed. + - Fixed an issue to ensure the managed certificate is installed in the trust store if not already there. + + **Known issues:** + - Cloudflare is investigating temporary networking issues caused by macOS 15 (Sequoia) changes that seem to affect some users and may be seen with any version of the WARP client. + +version: 2024.10.279.1 +releaseDate: 2024-10-22T15:49:22.421Z +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2024.10.279.1 +packageSize: 80563160 +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2024.10.537.1.yaml b/src/content/warp-releases/macos/beta/2024.10.537.1.yaml new file mode 100644 index 000000000000000..d36fda4cdd64150 --- /dev/null +++ b/src/content/warp-releases/macos/beta/2024.10.537.1.yaml @@ -0,0 +1,25 @@ +releaseNotes: | + This release contains an exciting new feature along with reliability improvements and general bug fixes. Please take time over the next few weeks to play with the new functionality and let us know what you think on both the community forum and through your account teams. + + **New features:** + - Added the ability for administrators to initiate remote packet capture (PCAP) and warp-diag collection + + **Changes and improvements:** + - Improved handling of multiple network interfaces on the system + - Improved reliability of connection establishment logic under degraded network conditions + - Improved captive portal detection behavior by forcing captive portal checks outside the tunnel + - Allow the ability to configure tunnel protocol for consumer registrations + - Fixed an issue with the WARP client becoming unresponsive during startup + - Extended diagnostics collection time in warp-diag to ensure logs are captured reliably + - Extended warp-diag to collect system profiler firewall state as part of diagnostics + - Fixed an issue with the Cloudflare WARP GUI showing garbled text in some cases + - Fixed an issue with the WARP client becoming unresponsive while handling LAN inclusion + + **Known issues:** + + - The WARP client may not function correctly on macOS 15.0 (Sequoia). We recommend updating to macOS 15.1 to resolve these issues. +version: 2024.10.537.1 +releaseDate: 2024-11-05T17:42:32.083Z +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2024.10.537.1 +packageSize: 82253609 +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2024.11.688.1.yaml b/src/content/warp-releases/macos/beta/2024.11.688.1.yaml new file mode 100644 index 000000000000000..7f065b6917b4f6e --- /dev/null +++ b/src/content/warp-releases/macos/beta/2024.11.688.1.yaml @@ -0,0 +1,23 @@ +releaseNotes: | + This release contains minor fixes and improvements. + + Note: If using macOS Sequoia, Cloudflare recommends the use of macOS 15.1 or later. With macOS 15.1, Apple addressed several issues that may have caused the WARP client to not behave as expected when used with macOS 15.0.x. + + **Changes and improvements:** + - Consumers can now set the tunnel protocol using `warp-cli tunnel protocol set `. + - Extended diagnostics collection time in `warp-diag` to ensure logs are captured reliably. + - Improved captive portal support by disabling the firewall during captive portal login flows. + - Improved reliability of connection establishment logic under degraded network conditions. + - Improved reconnection speed when a Cloudflare server is in a degraded state. + - Improved captive portal detection on certain public networks. + - Fixed an issue where admin override displayed an incorrect override end time. + - Reduced connectivity interruptions on WireGuard Split Tunnel Include mode configurations. + + **Known issues:** + - macOS Sequoia: Due to changes Apple introduced in macOS 15.0.x, the WARP client may not behave as expected. Cloudflare recommends the use of macOS 15.1 or later. + +version: 2024.11.688.1 +releaseDate: 2024-12-05T23:00:28.925Z +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2024.11.688.1 +packageSize: 85276565 +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2024.3.236.1.yaml b/src/content/warp-releases/macos/beta/2024.3.236.1.yaml new file mode 100644 index 000000000000000..adb624dc4e45a06 --- /dev/null +++ b/src/content/warp-releases/macos/beta/2024.3.236.1.yaml @@ -0,0 +1,24 @@ +releaseNotes: >- + This release contains no new features and is focused exclusively on + improvements. + + + **Notable updates** + + - macOS client downloads will now contain version numbers in the file name to + allow easy identification. + + - Improved the re-connection logic to minimize impact to existing tunneled TCP + sessions. + + - Increased the data collected by warp-diag to improve debugging capabilities. + + - Improved compatibility with multicast DNS (mDNS) systems. + + **Known issues** + - No known issues. +version: 2024.3.236.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2024.3.236.1 +packageSize: 73484898 +releaseDate: 2024-03-22T16:46:20.328Z +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2024.5.287.1.yaml b/src/content/warp-releases/macos/beta/2024.5.287.1.yaml new file mode 100644 index 000000000000000..4d93a1227e85538 --- /dev/null +++ b/src/content/warp-releases/macos/beta/2024.5.287.1.yaml @@ -0,0 +1,17 @@ +releaseNotes: | + This is a release focused on fixes and improvements. + + **Notable updates:** + - Fixed a known issue where the certificate was not always properly left behind in `/Library/Application Support/Cloudflare/installed_cert.pem`. + - Fixed an issue so that that the reauth notification is cleared from the UI when the user switches configurations. + - Fixed an issue by correcting the WARP client setting of macOS firewall rules. This relates to TunnelVision (CVE-2024-3661). + - Fixed an issue that could cause the Cloudflare WARP menu bar application to disappear when switching configurations. + + **Known issues:** + - If a user has an MDM file configured to support multiple profiles (for the switch configurations feature), and then changes to an MDM file configured for a single profile, the WARP client may not connect. The workaround is to use the 'warp-cli registration delete' command to clear the registration, and then re-register the client. + +version: 2024.5.287.1 +releaseDate: 2024-05-21T22:03:52.187Z +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2024.5.287.1 +packageSize: 74534251 +platformName: macOS diff --git a/src/content/warp-releases/macos/beta/2024.8.309.1.yaml b/src/content/warp-releases/macos/beta/2024.8.309.1.yaml new file mode 100644 index 000000000000000..fb236a4e33cb393 --- /dev/null +++ b/src/content/warp-releases/macos/beta/2024.8.309.1.yaml @@ -0,0 +1,23 @@ +releaseNotes: |- + This is a release focused on fixes and improvements. + + **Changes and improvements:** + - Added the ability to customize PCAP options in the warp-cli. + - Added a list of installed applications in warp-diag. + - Added a summary of warp-dex traceroute results in its JSON output. + - Improved the performance of firewall operations when enforcing split tunnel configuration. + - Fixed an issue where the DNS logs were not being cleared when the user switched configurations. + - Fixed a Known Issue which required users to re-register when an older single configuration MDM file was deployed after deploying the newer, multiple configuration format. + - Fixed an issue which prevented the use of private IP ranges that overlapped with end user's home networks. + - Deprecated warp-cli commands have been removed. If you have any workflows that use the deprecated commands, please update to the new commands where necessary. + + **Known issues:** + - Using MASQUE as the tunnel protocol may be incompatible if your organization has either of the following conditions: + - Magic WAN is enabled but not the latest packet flow path for WARP. Please check the migration status with your account team. + - Regional Services enabled. + +version: 2024.8.309.1 +releaseDate: 2024-08-26T17:18:31.086Z +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2024.8.309.1 +packageSize: 77067797 +platformName: macOS diff --git a/src/content/warp-releases/macos/ga/1.5.148.0.yaml b/src/content/warp-releases/macos/ga/1.5.148.0.yaml new file mode 100644 index 000000000000000..0a8edcff237f51d --- /dev/null +++ b/src/content/warp-releases/macos/ga/1.5.148.0.yaml @@ -0,0 +1,47 @@ +releaseNotes: >- + **Notable Updates** + + + - Added support for Teams admins to control use of captive portal in their + organization. + + - Support for detecting and opening captive portal login page when captive + portal network is detected. + + - Show Excluded IPs UI in Teams mode. + + - Added new support for service token-based authentication for managed (MDM) + devices. + + - Fixed issue when going between LAN and/or Wi-Fi networks. + + - Clients registered with Teams can now view their local device posture + status. + + - Added new WARP proxy mode for advanced users. See + Preferences->Advanced->Configure Proxy Mode for more info. + + - Fixed reconnection issue when waking from sleep. + + - Several other bug fixes and improvements. + + + **Known issues** + + + - You are unable to subscribe to WARP+ via the Desktop apps. You must + subscribe first on your mobile device and then copy/paste your license key + into the Accounts page on desktop. + + - Localization parity with mobile is coming in a future update. + + - Wired networks via a USB dongle are not excluded properly. + + + For a complete list of known issues please visit + https://developers.cloudflare.com/warpclient/known-issues-and-faq +version: 1.5.148.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/1.5.148.0 +packageSize: 32900112 +releaseDate: 2021-06-05T00:05:03.232Z +platformName: macOS diff --git a/src/content/warp-releases/macos/ga/1.5.207.0.yaml b/src/content/warp-releases/macos/ga/1.5.207.0.yaml new file mode 100644 index 000000000000000..1dbdc913b6d3129 --- /dev/null +++ b/src/content/warp-releases/macos/ga/1.5.207.0.yaml @@ -0,0 +1,40 @@ +releaseNotes: >- + **Notable Updates** + + + - Significant improvements to DoH reliability and performance. + + - Organization name in MDM file is no longer case sensitive. + + - Fixed macOS installer package issue on M1 machines. + + - Fixed an issue where config changes in Teams Dashboard don't automatically + propagate to the client. + + - Fixed an issue where MDM file changes were not picked up correctly by + client. + + - Fixed issues with local domain fallback not working in all cases. + + - Several other bug fixes and improvements. + + + **Known issues** + + + - You are unable to subscribe to WARP+ via the Desktop apps. You must + subscribe first on your mobile device and then copy/paste your license key + into the Accounts page on desktop. + + - Localization parity with mobile is coming in a future update. + + - Wired networks via a USB dongle are not excluded properly. + + + For a complete list of known issues please visit + https://developers.cloudflare.com/warpclient/known-issues-and-faq +version: 1.5.207.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/1.5.207.0 +packageSize: 34860545 +releaseDate: 2021-06-16T18:02:06.307Z +platformName: macOS diff --git a/src/content/warp-releases/macos/ga/1.5.294.0.yaml b/src/content/warp-releases/macos/ga/1.5.294.0.yaml new file mode 100644 index 000000000000000..757be936bc035c6 --- /dev/null +++ b/src/content/warp-releases/macos/ga/1.5.294.0.yaml @@ -0,0 +1,34 @@ +releaseNotes: >- + **Notable Updates** + + + - Add ability for Teams admins to allow users to switch between DoH only and + WARP. + + - Improved stability of DoH resolver. + + - Fixed UI bug with admin override where disconnected message would persist + when it shouldn't. + + - Several other bug fixes and improvements. + + + **Known issues** + + + - You are unable to subscribe to WARP+ via the Desktop apps. You must + subscribe first on your mobile device and then copy/paste your license key + into the Accounts page on desktop. + + - Localization parity with mobile is coming in a future update. + + - Wired networks via a USB dongle are not excluded properly. + + + For a complete list of known issues please visit + https://developers.cloudflare.com/warpclient/known-issues-and-faq +version: 1.5.294.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/1.5.294.0 +packageSize: 34729215 +releaseDate: 2021-07-01T14:46:12.765Z +platformName: macOS diff --git a/src/content/warp-releases/macos/ga/1.5.463.0.yaml b/src/content/warp-releases/macos/ga/1.5.463.0.yaml new file mode 100644 index 000000000000000..2c7fa19aec32f71 --- /dev/null +++ b/src/content/warp-releases/macos/ga/1.5.463.0.yaml @@ -0,0 +1,32 @@ +releaseNotes: >- + **Notable Updates** + + + - New posture types for teams admins to check if Firewall Enabled or Disk + Encrypted. + + - Added ability for Teams admins to split tunnel based on hostname + (example.com, sub.example or *.example.com). + + - General Bug fixes and improvements. + + + **Known issues** + + + - You are unable to subscribe to WARP+ via the Desktop apps. You must + subscribe first on your mobile device and then copy/paste your license key + into the Accounts page on desktop. + + - Localization parity with mobile is coming in a future update. + + - Wired networks via a USB dongle are not excluded properly. + + + For a complete list of known issues please visit + https://developers.cloudflare.com/warpclient/known-issues-and-faq +version: 1.5.463.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/1.5.463.0 +packageSize: 37461224 +releaseDate: 2021-07-22T20:53:13.676Z +platformName: macOS diff --git a/src/content/warp-releases/macos/ga/1.6.27.0.yaml b/src/content/warp-releases/macos/ga/1.6.27.0.yaml new file mode 100644 index 000000000000000..2e374063b859051 --- /dev/null +++ b/src/content/warp-releases/macos/ga/1.6.27.0.yaml @@ -0,0 +1,6 @@ +releaseNotes: "" +version: 1.6.27.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/1.6.27.0 +packageSize: 43990513 +releaseDate: 2021-10-04T20:23:48.605Z +platformName: macOS diff --git a/src/content/warp-releases/macos/ga/2021.11.281.0.yaml b/src/content/warp-releases/macos/ga/2021.11.281.0.yaml new file mode 100644 index 000000000000000..af6f6e58eeecfab --- /dev/null +++ b/src/content/warp-releases/macos/ga/2021.11.281.0.yaml @@ -0,0 +1,45 @@ +releaseNotes: >- + This release contains new features and improvements from the last release. + + + - Starting with this release our version number scheme has now changed to + YYYY.M.build_number (ex. 2021.11.123). + + - Use timestamps in log file names stored by warp-diag. + + - Added traceroute information to warp-diag for Teams destinations to help + debug connectivity issues. + + - warp-diag now reports status when run from terminal so you can see it + working. + + - warp-diag now allows for --output flag so you can specify where diagnostics + data is stored. + + - Improved general reliability issues by moving DoH requests outside the + tunnel + + - Improved overall reliability of daemon/service including how it connects to + the GUI (reduce instance of IPC errors). + + - Fixed localhost proxy mode which was broken in last release. + + - Fixed issue where posture checks were not running every 5 minutes like they + should. + + - Fixed issue where DNS sockets could sometimes fail to be released, resulting + in address in use errors. + + - Fixed issue where auto_connect mdm parameter wasn't working correctly when + switch_locked=false. + + - Fixed issue where invalid certificate on device would cause the client to + not connect. + + - Fixed issue in re-connection logic where we would not always try to + re-connect if there was a network change detected. +version: 2021.11.281.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2021.11.281.0 +packageSize: 40031870 +releaseDate: 2021-11-30T17:11:42.873Z +platformName: macOS diff --git a/src/content/warp-releases/macos/ga/2021.12.1.0.yaml b/src/content/warp-releases/macos/ga/2021.12.1.0.yaml new file mode 100644 index 000000000000000..8279d56b3f98cfe --- /dev/null +++ b/src/content/warp-releases/macos/ga/2021.12.1.0.yaml @@ -0,0 +1,23 @@ +releaseNotes: >- + This release contains new features and improvements from the last release. + + + **Notable updates** + + - With this release you can now specify specific DNS servers to use for + domains in Local Domain fallback in the Teams Dashboard. + + - Improved reliability of connection between client gui and daemon. + + - Improved the connectivity check to more frequently and consistently check + for connectivity. + + - Fixed issue where Split Tunnel UI in Preferences->Advanced of the client did + not correctly show include only routes. + + - Fixed reliability issues around waking from sleep. +version: 2021.12.1.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2021.12.1.0 +packageSize: 41365504 +releaseDate: 2021-12-10T22:48:05.550Z +platformName: macOS diff --git a/src/content/warp-releases/macos/ga/2022.10.107.0.yaml b/src/content/warp-releases/macos/ga/2022.10.107.0.yaml new file mode 100644 index 000000000000000..a126749f976c797 --- /dev/null +++ b/src/content/warp-releases/macos/ga/2022.10.107.0.yaml @@ -0,0 +1,39 @@ +releaseNotes: >- + This release primarily contains bug fixes, no new features are included in + this release + + **Notable updates** + + - Modified behavior of `warp-cli enable-dns-log` to automatically turn off + after 7 days (this is the equivalent of manually running `warp-cli + disable-dns-log`) + + - Fixed HappyEyeballs search on IPv6 only devices + + - Fixed UI in various states where we would show the wrong text when in + various states (ex. Paused when really disabled via Admin Override, etc.) + + - Fixed HappyEyeball issue where Safari users without native IPv6 may see + increased captcha challenges + + - Fixed issue where device posture timers were paused while device was asleep. + Posture tests are now immediately ran on device wakeup and all timers + restarted + + - Fixed issue where GUI may still think user is registered after "warp-cli + delete" is run + + - Decreased warp-diag zip file sizes by 60-80% + + + + **Known issues** + + - If you are having issues with upgrading to new beta, please uninstall + current app, install the GA version from https://1.1.1.1/ and participate in + beta program from Preferences->Advanced. +version: 2022.10.107.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2022.10.107.0 +packageSize: 52156967 +releaseDate: 2022-11-17T04:54:58.289Z +platformName: macOS diff --git a/src/content/warp-releases/macos/ga/2022.12.593.0.yaml b/src/content/warp-releases/macos/ga/2022.12.593.0.yaml new file mode 100644 index 000000000000000..ade327c2eb9913b --- /dev/null +++ b/src/content/warp-releases/macos/ga/2022.12.593.0.yaml @@ -0,0 +1,71 @@ +releaseNotes: >- + This release has support for new Zero Trust network location aware feature and + contains improvements to stability and bug fixes. + + **Hotfix Updates** + + - Fixed issue where clients could lose IPv4 connectivity (2nd hotfix applied). + + - Fixed issue where clients would attempt to configure DNS even when in + posture-only, or proxy modes. + + - Increased MDM file timeout to improve compatibility with certain management + solutions. + + **Notable updates in previous GA (2022.12.475.0)** + + - Added support for new Zero Trust network location aware WARP feature. More + info to be released soon on how you can test. + + - Improved captive portal handling for some more captive portals. + + - Improved reconnect logic when a setting changes to no longer always do a + full disconnect->reconnect cycle (for instance when turning on DNS logging). + + - Modified initial connectivity check behavior to now validate both IPv4 and + IPv6 are working (previously we only checked IPv4). Test will pass if either + connects successfully. + + - Fixed issue where client could be stuck on `Connecting` if certain DNS + checks failed once. + + - Fixed DNS issue where TXT records were not being correctly returned when at + the end of a CNAME chain. + + - Fixed issue where the client may not receive notifications of new settings, + re-auth events or posture from the service until reboot. + + - Fixed issue where users could be pointing at an old gateway_doh_subdomain if + you have `Allowed to Leave` set to true and they've manually joined their + client to your organization. + + - Fixed slow DNS timeout issue that could occur when IPv6 is enabled and an + NXDOMAIN record is returned. + + - Fixed issue with `Gateway with DoH` mode could say `Connected` when it + wasn't really connected as we could sometimes test the wrong endpoint. + + - Fixed issue where our local DNS proxy server could get unset with an overly + active DHCP renew time or by plugging in/out a tethered device. + + - Fixed issue where `warp-cli teams-enroll` wouldn't work when an mdm file was + present. + + - Fixed issue where our localhost dns endpoints (ex. 127.0.2.2) could appear + in the fallback configuration potentially causing DNS lookups to fail + + - Fixed issues where GUI could crash when opening from the Menu Bar. + + - Fixed issue that could cause some DNS queries to take upto 15 seconds to + complete. + + **Known issues** + + - If you are having issues with upgrading to new beta, please uninstall + current app, install the GA version from https://1.1.1.1/ and participate in + beta program from Preferences->Advanced. +version: 2022.12.593.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2022.12.593.0 +packageSize: 47747133 +releaseDate: 2023-01-18T19:03:02.025Z +platformName: macOS diff --git a/src/content/warp-releases/macos/ga/2022.2.248.0.yaml b/src/content/warp-releases/macos/ga/2022.2.248.0.yaml new file mode 100644 index 000000000000000..da4768926c55b0d --- /dev/null +++ b/src/content/warp-releases/macos/ga/2022.2.248.0.yaml @@ -0,0 +1,16 @@ +releaseNotes: |- + This release is a minor hotfix over the previous release (2022.2.69.0). + + **Notable updates** + - Fixed an issue where the organization name became case sensitive and could cause a device to lose registration. + + + **Known issues** + No known issues + + For releated Cloudflare for Teams documentation please see: https://developers.cloudflare.com/cloudflare-one/connections/connect-devices/warp +version: 2022.2.248.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2022.2.248.0 +packageSize: 42949868 +releaseDate: 2022-02-23T20:58:41.089Z +platformName: macOS diff --git a/src/content/warp-releases/macos/ga/2022.2.69.0.yaml b/src/content/warp-releases/macos/ga/2022.2.69.0.yaml new file mode 100644 index 000000000000000..12182f396ac6d2e --- /dev/null +++ b/src/content/warp-releases/macos/ga/2022.2.69.0.yaml @@ -0,0 +1,22 @@ +releaseNotes: |- + This release contains new features and improvements from the last release. In particular, we have made significant changes to how local settings (plist) are processed. Additionally, we added the ability to configure all applicable parameters from the Zero Trust dashboard. This allows admins to more easily control client behavior without having to use a 3rd party tool. + + **Notable updates** + - Added support for Gateway session duration enforcement. This allows administrators to force re-authentication after a specified time. + - The "enabled" plist property has now been completely deprecated and is no longer respected. Please see https://developers.cloudflare.com/cloudflare-one/connections/connect-devices/warp/deployment/mdm-deployment/parameters#switch_locked for switch_locked mechanism that was announced in April 2021 + - Now that settings exist in the Zero Trust Dashboard, the Client UI should behave the same for clients manually joined to a Team and clients forced to by local .plist policy + - Updated Teams logo in app to Zero Trust + - Fixed an issue where the Last Seen value was not updated properly in the Zero Trust Dashboard while in Gateway with DoH mode + - Fixed an issue where the device name was not updated in the Zero trust Dashboard if the computer name changed after initial registration + - Fixed various issues with split tunnel support in consumer mode + - Fixed an issue where "warp-cli settings" showed connection time in seconds instead of minutes + - Fixed an issue where the local domain fallback list was empty when in consumer WARP mode. + - Fixed a wake from sleep issue where DNS requests could fail. + + **Known issues** + - The organization name is case sensitive, which could cause a device to lose registration. +version: 2022.2.69.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2022.2.69.0 +packageSize: 42940993 +releaseDate: 2022-02-14T17:29:49.970Z +platformName: macOS diff --git a/src/content/warp-releases/macos/ga/2022.3.187.0.yaml b/src/content/warp-releases/macos/ga/2022.3.187.0.yaml new file mode 100644 index 000000000000000..b3b778081ada050 --- /dev/null +++ b/src/content/warp-releases/macos/ga/2022.3.187.0.yaml @@ -0,0 +1,13 @@ +releaseNotes: |- + This release contains Bug fixes and connection stability improvement + + **Notable updates** + Bug fixes and connection stability improvement + + **Known issues** + No known issues +version: 2022.3.187.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2022.3.187.0 +packageSize: 42632439 +releaseDate: 2022-03-24T23:35:38.837Z +platformName: macOS diff --git a/src/content/warp-releases/macos/ga/2022.3.36.0.yaml b/src/content/warp-releases/macos/ga/2022.3.36.0.yaml new file mode 100644 index 000000000000000..3c7f4489511cda7 --- /dev/null +++ b/src/content/warp-releases/macos/ga/2022.3.36.0.yaml @@ -0,0 +1,27 @@ +releaseNotes: >- + This release contains new features and improvements from the last release. + + **Notable updates** + + - Added support for Device Information only mode. This allows for posture to + be used for Access policies without Gateway being enabled. + + - Fixed issue for Zero Trust accounts with Captive Portal disabled where they + client may not always reconnect when it should + + - Fixed issue where the UI would show disconnected when the client was instead + just temporarily paused + + - Fixed issue where serial numbers with spaces in the string were not + correctly reported + + + + **Known issues** + + - No known issues +version: 2022.3.36.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2022.3.36.0 +packageSize: 42642183 +releaseDate: 2022-03-08T22:13:14.766Z +platformName: macOS diff --git a/src/content/warp-releases/macos/ga/2022.4.114.0.yaml b/src/content/warp-releases/macos/ga/2022.4.114.0.yaml new file mode 100644 index 000000000000000..e6cda4957199229 --- /dev/null +++ b/src/content/warp-releases/macos/ga/2022.4.114.0.yaml @@ -0,0 +1,25 @@ +releaseNotes: |- + *PLEASE NOTE* If you are a Zero Trust customer and have strict firewall rules, you must visit https://developers.cloudflare.com/cloudflare-one/connections/connect-devices/warp/deployment/firewall/#client-orchestration-api and explicitly allow our new Client Orchestration API Endpoints. + + This release contains new features and improvements from the last release + + **Notable updates** + + - Added support for Cloudflare Tunnels users to route traffic to distinct Virtual Networks with overlapping IP ranges + - Added ability for users to manually refresh Zero Trust authentication via the Preferences->Account menu + - Modified Client Orchestration API Endpoint the client connects to in Zero Trust mode + - Modified warp-cli behavior of "connect" and "disconnect" to mimic "enable-always-on" and "disable-always-on" which themselves are copies of how the main toggle switch behaves in the UI + - Modified client behavior to no longer do periodic tunnel connectivity checks. These checks frequently caused more problems than they solved. + - Fixed an issue where the UI would always launch on startup + - Fixed issue where Zero Trust users would receive a notification to update the client even though upgrades were disabled in settings + - Fixed issue where the GUI would show disconnected when it should show Paused + - Fixed various issues with warp-diag and improve overall stability + + + **Known issues** + - UI incorrectly Shows Virtual Networks selector when there is only 1 default network. This UI should be hidden unless there are actually multiple networks to choose from. +version: 2022.4.114.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2022.4.114.0 +packageSize: 45840973 +releaseDate: 2022-04-07T22:22:36.484Z +platformName: macOS diff --git a/src/content/warp-releases/macos/ga/2022.5.227.0.yaml b/src/content/warp-releases/macos/ga/2022.5.227.0.yaml new file mode 100644 index 000000000000000..1c600ea15790cb4 --- /dev/null +++ b/src/content/warp-releases/macos/ga/2022.5.227.0.yaml @@ -0,0 +1,56 @@ +releaseNotes: >- + This release contains significant improvements to our DNS functionality. In + addition to overall improved DNS stability and performance, we now fully + support DNS requests over TCP. This also modifies our local DNS proxy to use + the internal IPs of 127.0.2.2, 127.0.2.3, fd01:db8:1111::2, and + fd01:db8:1111::3. + + **Notable updates** + + - Added support for DNS over TCP + + - Modified client font to be system default + + - Modified client behavior to no longer show massive upgrade notification when + a new build is released, instead you'll now see a change to our system tray + icon to indicate a new build is available + + - Fixed issue where the Virtual Network selector would appear for users with + only a single network + + - Fixed issue where the Virtual Network selector may not appear after a reboot + + - Fixed issue where the Logout from Zero trust button would remain locked + after an mdm.xml file was removed + + - Fixed issue where settings and/or UI may not properly clear when moving from + one Zero Trust org to another + + - Fixed issue when coming out of sleep where it could take 60 seconds to + connect while we waited for Apples connectivity checks to finish (and we + didn't really need to) - Fixed WARP IPC error that could be caused when we + fail to set particular firewall settings + + - Fixed issue multiple registration issues that could happen when re-applying + local policy file (.plist) + + - Fixed incorrect "OS not supported" error in warp-cli when using teams-enroll + + - Fixed issue where updated posture checks might not take effect until restart + + - Fixed issue with warp-cli where enable/disable with wifi was allowed in Zero + Trust mode + + - Fixed issue where too many DNS requests could result in the following error + appearing in logs: WARN warp::dns: Shedding DNS load + + + **Known issues** + + - Memory leak in the CloudflareWARP daemon process that can slowly grow over + time. +version: 2022.5.227.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2022.5.227.0 +packageSize: 46884598 +releaseDate: 2022-05-25T20:47:17.916Z +platformName: macOS diff --git a/src/content/warp-releases/macos/ga/2022.5.310.0.yaml b/src/content/warp-releases/macos/ga/2022.5.310.0.yaml new file mode 100644 index 000000000000000..e71d135d4906aef --- /dev/null +++ b/src/content/warp-releases/macos/ga/2022.5.310.0.yaml @@ -0,0 +1,19 @@ +releaseNotes: >- + This release is a hotfix for 2022.5.227.0. + + **Notable updates** + + - Fixed false positives when attempting to detect a captive portal + + - Fixed issue where OS version would not be updated in dash after OS update + + + **Known issues** + + - Memory leak in the CloudflareWARP daemon process that can slowly grow over + time. +version: 2022.5.310.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2022.5.310.0 +packageSize: 46889613 +releaseDate: 2022-06-06T22:22:09.899Z +platformName: macOS diff --git a/src/content/warp-releases/macos/ga/2022.5.342.0.yaml b/src/content/warp-releases/macos/ga/2022.5.342.0.yaml new file mode 100644 index 000000000000000..b0ec46cec1cd796 --- /dev/null +++ b/src/content/warp-releases/macos/ga/2022.5.342.0.yaml @@ -0,0 +1,12 @@ +releaseNotes: |- + This release is a hotfix for 2022.5.310.0. + **Notable updates** + + - Fixed a crash from reading /etc/resolv.conf while it was being updated + - Removed large memory leak causing ~1GB/day memory growth + - Bug fixes and connection stability improvement +version: 2022.5.342.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2022.5.342.0 +packageSize: 46913974 +releaseDate: 2022-06-16T22:27:30.715Z +platformName: macOS diff --git a/src/content/warp-releases/macos/ga/2022.7.175.0.yaml b/src/content/warp-releases/macos/ga/2022.7.175.0.yaml new file mode 100644 index 000000000000000..86ae63ec12a9886 --- /dev/null +++ b/src/content/warp-releases/macos/ga/2022.7.175.0.yaml @@ -0,0 +1,61 @@ +releaseNotes: >- + This release primarily contains improvements to stability and bug fixes. There + are no major new features introduced with this release. + + **Notable updates** + + - Added /Library/Application\ Support/Cloudflare/cfwarp_daemon_dns.txt log + file when DNS logging is enabled + + - Added `do not fragment` bit to WARP tunnel traffic + + - Added ability for posture rules that support file paths to use environment + variables as part of the path + + - Modified output of `warp-cli account` and `warp-cli settings` to make + parsing information easier + + - Modified UI behavior so items not relevant in Zero Trust or Consumer mode + are no longer just grayed out, they are hidden completely + + - Fixed issue where warp-cli could be used determine a valid admin override + code + + - Fixed issue where warp-cli could be used to enable/disable on wifi networks + when in Zero Trust mode + + - Fixed issue where you would receive a notification immediately after install + that your internet was no longer private + + - Fixed issue with domain based split tunnels when a wildcard is used. + Anything after the `*` was included in the wildcard search so `*.example.com` + would include `badexample.com` + + - Fixed issue where client was sending improper ICMP responses when MTU needed + to change + + - Fixed issue where logs could grow too large + + - Fixed issue where user could see an error dialog going between DNS modes + + - Fixed issue where user was reminded to update after just asking to be + reminded later + + - Fixed crash in UI when viewing DNS logs and clicking on Resolver tab + + - Fixed issue where UI could sometimes appear not attached to menu bar + + - Fix issue where app UI would not disappear consistently when bringing up + preferences + + - Fixed issue where waking from sleep or changing networks may result in the + client staying in a broken state + + **Known issues** + + - No known issues +version: 2022.7.175.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2022.7.175.0 +packageSize: 45552702 +releaseDate: 2022-07-14T19:12:50.797Z +platformName: macOS diff --git a/src/content/warp-releases/macos/ga/2022.7.422.0.yaml b/src/content/warp-releases/macos/ga/2022.7.422.0.yaml new file mode 100644 index 000000000000000..037f4c7f89b1849 --- /dev/null +++ b/src/content/warp-releases/macos/ga/2022.7.422.0.yaml @@ -0,0 +1,23 @@ +releaseNotes: >- + This release contains bug fixes and user experience change for customers using + Zero Trust `Enforce WARP session duration` Gateway policies + + **Notable updates** + + - Modified client behavior to no longer automatically open a new browser tab + when user needs to reauthenticate as this was causing some users to return to + their devices with 100s of tabs open. Instead the client will now use the + built in operating system notification framework to inform users of the need + to authenticate. + + - Fixed issue where file device posture checks wouldn't work correctly when + the file path was changed for an existing rule. + + **Known issues** + + - No known issues +version: 2022.7.422.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2022.7.422.0 +packageSize: 45309401 +releaseDate: 2022-08-01T20:20:23.143Z +platformName: macOS diff --git a/src/content/warp-releases/macos/ga/2022.8.861.0.yaml b/src/content/warp-releases/macos/ga/2022.8.861.0.yaml new file mode 100644 index 000000000000000..132586e41b4ba73 --- /dev/null +++ b/src/content/warp-releases/macos/ga/2022.8.861.0.yaml @@ -0,0 +1,77 @@ +releaseNotes: >- + This release primarily contains improvements to stability and bug fixes. There + + are no major new features introduced with this release. We also wanted to call + + out that we've made server side changes to significantly reduce captcha issues + + for users with IPv6 enabled (no client related change but wanted to call out + the + + work). + + **Notable updates** + + - Modified GUI when in Include Only split tunneling mode to correctly state + that just the routes included in the split tunnel configuration are protected. + This is just a string change. + + - Fixed issue where `warp-cli set-custom-endpoint` could be used by users + without local admin rights as a way to bypass Gateway policies. + + - Fixed issue where `warp-cli add-trusted-ssid` worked in Zero Trust mode when + it should not have. + + - Fixed issue where `warp-cli teams-enroll` would run even if already joined + to an organization and users were not allowed to disconnect or leave. + + - Fixed issue that could result in connection issues coming out of certain + sleep states (AddrInUse error or Multiple WARP Connections or + NoCurrentSession). + + - Fixed issue that could result in connection flickering between + connected/disconnected. + + - Fixed issue where connectivity test could report wrong status in logs when + in Include Only split tunnel configuration. + + - Fixed issue where UI would not properly show you were in Proxy mode. + + - Fixed issue where warp-cli could hang if daemon was in a bad state. + + - Fixed issue where sometimes Zero Trust device settings configured in the + dash wouldn't take effect for machines in a disconnected state and asleep + state. + + - Fixed issue where our DNS proxy wasn't correctly handling EDNS0 requests. + + - Fixed issue where the DNS answer for records at the end of a CNAME chain + would appear in the ADDITIONAL response section instead of the ANSWER section. + This broke certain connectivity checks for Microsoft and Android studio in + particular (probably other things). We now put the IP address found in the + ANSWER section. + + - Fixed issue where multiple instances of the service could run at the same + time. + + - Fixed issue that could occur during registration if the user clicks on on + the Launch Cloudflare WARP button after already registering. + + - Fixed issue where DNS functionality may be in a broken state when device + wakes from sleep + + - Improved performance of warp-diag to now collects logs in parallel and now + collect additional routes to help with debugging. + + + + **Known issues** + + - If you are having issues with upgrading to new beta, please uninstall + current app, install the GA version from https://1.1.1.1/ and participate in + beta program from Preferences->Advanced. +version: 2022.8.861.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2022.8.861.0 +packageSize: 45714883 +releaseDate: 2022-09-12T19:00:38.057Z +platformName: macOS diff --git a/src/content/warp-releases/macos/ga/2022.9.384.0.yaml b/src/content/warp-releases/macos/ga/2022.9.384.0.yaml new file mode 100644 index 000000000000000..168bb03eebeb146 --- /dev/null +++ b/src/content/warp-releases/macos/ga/2022.9.384.0.yaml @@ -0,0 +1,38 @@ +releaseNotes: >- + This release primarily contains improvements to stability and bug fixes. + + **Notable updates** + + - Fixed issue where GUI would show no text and only the toggle after updating + mdm.plist file + + - Improved connection time on slow network connections + + - Improved reliability of opening the browser for registration or + authentication requests. We now try multiple times and will display an error + message if it fails to open + + - Fixed DNS fallback timeouts and related performance issues + + - Fixed issue where coming out of sleep on some systems could take an + unreasonably long time to connect + + - Fixed InvalidPacket error in logs that indicated the client needed to reset + its connection + + - Fixed issue where user experienced no network after boot + + - Fixed issue where warp-diag rotated daemon logs did not collect older logs + + - Fixed crash in parsing of route changes + + + **Known issues** + + - Device posture check results stop sending after 24 hours (or possibly even + sooner) +version: 2022.9.384.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2022.9.384.0 +packageSize: 49718631 +releaseDate: 2022-09-30T18:37:22.860Z +platformName: macOS diff --git a/src/content/warp-releases/macos/ga/2022.9.582.0.yaml b/src/content/warp-releases/macos/ga/2022.9.582.0.yaml new file mode 100644 index 000000000000000..8c7ac54c8b93773 --- /dev/null +++ b/src/content/warp-releases/macos/ga/2022.9.582.0.yaml @@ -0,0 +1,14 @@ +releaseNotes: |- + This release contains hotfixes for 2022.9.384.0. + + **Notable updates** + - Fix issue where device posture check results stopped sending after 24 hours + (or possibly even sooner) + + **Known issues** + - No known issues +version: 2022.9.582.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2022.9.582.0 +packageSize: 49722458 +releaseDate: 2022-10-11T23:58:53.166Z +platformName: macOS diff --git a/src/content/warp-releases/macos/ga/2023.11.4.0.yaml b/src/content/warp-releases/macos/ga/2023.11.4.0.yaml new file mode 100644 index 000000000000000..293a64ca7981d4d --- /dev/null +++ b/src/content/warp-releases/macos/ga/2023.11.4.0.yaml @@ -0,0 +1,28 @@ +releaseNotes: >- + This releases contains a fairly major refactor of the warp-cli interface. + While all existing commands are backwards compatible for at least the next 6 + months, please take a moment to look through the new warp-cli and let us know + what you think + + **Notable updates** + + - Added ability to run pcaps from warp-cli to make debugging easier + + - Modified warp-cli commands to be more consistent and readable + + - Fixed an issue where tunnel could become unresponsive a few minutes after + coming out of sleep or after changing networks + + - Fixed a small timing windows where the app could prompt the user to upgrade + to the latest version even when updated were disallowed by policy. This + happened because the GUI was able to start faster than the rest of the + processes. + + **Known issues** + + - No known issues +version: 2023.11.4.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2023.11.4.0 +packageSize: 69678790 +releaseDate: 2023-11-09T20:46:47.364Z +platformName: macOS diff --git a/src/content/warp-releases/macos/ga/2023.12.2.0.yaml b/src/content/warp-releases/macos/ga/2023.12.2.0.yaml new file mode 100644 index 000000000000000..e93d6eb45bedf5a --- /dev/null +++ b/src/content/warp-releases/macos/ga/2023.12.2.0.yaml @@ -0,0 +1,17 @@ +releaseNotes: >- + This releases contains bug fixes only, no new functionality has been + introduced + + **Notable updates** + + - Fixed an issue where we were incorrectly setting the default local domain + fallback server value for entries without an explicit DNS server set + + **Known issues** + + - No known issues +version: 2023.12.2.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2023.12.2.0 +packageSize: 69395875 +releaseDate: 2023-12-01T20:18:34.545Z +platformName: macOS diff --git a/src/content/warp-releases/macos/ga/2023.3.382.0.yaml b/src/content/warp-releases/macos/ga/2023.3.382.0.yaml new file mode 100644 index 000000000000000..e015df5d4b9e011 --- /dev/null +++ b/src/content/warp-releases/macos/ga/2023.3.382.0.yaml @@ -0,0 +1,62 @@ +releaseNotes: >- + This release contains new features and improvements from last GA release. + + **Notable updates** + + - Added support for Zero Trust Digital Experience Monitoring. More information + coming soon for customers who signed up for the beta + + - Added new log message to help customers and support identify when a users + local network IP space overlaps with a remote network configured to go through + the tunnel + + - Added support for Zero Trust customers to opt in to having the WARP Client + install the root CA for your organization if TLS Decryption is enabled. A new + toggle switch will appear in the dashboard under Settings->WARP Client soon to + enable this + + - Modified behavior of Managed networks tests to always happen outside the + tunnel as per original intent + + - Modified firewall behavior to allow incoming UDP traffic on ports 67-68 over + split tunnel routes configured to be protected by Gateway. This change should + allow organizations with overlapping networks to an end users local network, + to not leave their users in a completely broken state without internet + connectivity + + - Improved user validation logic during manual ZT login + + - Improve timeouts with broken CNAME records that could result in very long + load times for certain apps (Office 365 apps, etc.) + + - Fixed issue where trying to launch a support_url without a valid protocol + handler (ex. https://) would result in an error + + - Fixed issue where systems with significantly out of sync system clocks could + fail registration + + - Fixed panic that could result in loss of internet connectivity + + - Fixed issue where the WARP daemon can crash and lose connectivity + + - Fixed issue where warp-diag could run traceroutes longer than expected. + Traceroute tests will now timeout after 65 seconds. + + - Fixed issue where manually logging into a ZT org could fail if certificate + authentication was used + + - Fixed issue where GUI could miss a status message from the WARP Service + resulting in the wrong state being reflected to users. An example is the GUI + could show `Connecting` even though device was `Connected` + + - Fixed issue when running in local proxy mode where too many log entries were + written + + **Known issues** + + No known issues +version: 2023.3.382.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2023.3.382.0 +packageSize: 49309406 +releaseDate: 2023-04-04T23:14:09.365Z +platformName: macOS diff --git a/src/content/warp-releases/macos/ga/2023.3.415.0.yaml b/src/content/warp-releases/macos/ga/2023.3.415.0.yaml new file mode 100644 index 000000000000000..0b79ac3681328e1 --- /dev/null +++ b/src/content/warp-releases/macos/ga/2023.3.415.0.yaml @@ -0,0 +1,16 @@ +releaseNotes: >- + This is a macOS only hotfix from the 2023.3.382.0 release + + **Notable updates** + + - Fixes an issue for customers with multiple overlapping virtual networks + where the GUI would no longer show the vnet selection UI after a reboot. + + **Known issues** + + No known issues +version: 2023.3.415.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2023.3.415.0 +packageSize: 49312145 +releaseDate: 2023-04-17T15:28:46.936Z +platformName: macOS diff --git a/src/content/warp-releases/macos/ga/2023.3.460.0.yaml b/src/content/warp-releases/macos/ga/2023.3.460.0.yaml new file mode 100644 index 000000000000000..5565694507f6b11 --- /dev/null +++ b/src/content/warp-releases/macos/ga/2023.3.460.0.yaml @@ -0,0 +1,16 @@ +releaseNotes: >- + This is a Mac only hotfix from the 2023.3.415.0 release + + **Notable updates** + + - Fixes an issue where entering team name with case sensitivity would result + in a registration error(s). + + **Known issues** + + No known issues +version: 2023.3.460.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2023.3.460.0 +packageSize: 49522156 +releaseDate: 2023-05-04T17:36:29.622Z +platformName: macOS diff --git a/src/content/warp-releases/macos/ga/2023.7.159.0.yaml b/src/content/warp-releases/macos/ga/2023.7.159.0.yaml new file mode 100644 index 000000000000000..58c6cfd0d0339cb --- /dev/null +++ b/src/content/warp-releases/macos/ga/2023.7.159.0.yaml @@ -0,0 +1,17 @@ +releaseNotes: >- + This update is recommended for all customers and includes an important + reliability fix. + + **Notable updates** + + - Fixed issue where client could take up to 1-2 minutes to recover + connectivity instead of 1-2 seconds in the event of a service issue + + **Known issues** + + - No known issues +version: 2023.7.159.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2023.7.159.0 +packageSize: 63885141 +releaseDate: 2023-07-21T01:15:03.874Z +platformName: macOS diff --git a/src/content/warp-releases/macos/ga/2023.7.8.0.yaml b/src/content/warp-releases/macos/ga/2023.7.8.0.yaml new file mode 100644 index 000000000000000..1ac1e310ec7e044 --- /dev/null +++ b/src/content/warp-releases/macos/ga/2023.7.8.0.yaml @@ -0,0 +1,62 @@ +releaseNotes: >- + This release contains new features, reliability improvements and bug fixes + from both the previous beta and the previous GA build. + + **Notable updates** + + - Added support for "SWG without DNS Filtering" mode. All DNS functionality + from the WARP client is disabled while in this service mode + + - Added support for ProductVersionExtra to be used in OS Version device + posture checks + + - Improved performance of domain-based split tunneling when an IP address is + already split tunneled (seen frequently with Zoom domains and IPs being used) + + - Improved performance of the client when in the "Proxy Only" service mode + + - Modified `warp-cli settings` to show if the applied settings came from local + (mdm) or network (warp settings profile) policy to make debugging profile + issues easier + + - Fixed an issue that could result in increased latency when resolving queries + + - Fixed an issue where inputting a license key of excessive length in the + consumer login could result in high CPU usage + + - Optimized the performance of DNS queries to prevent minor memory leaks + + - Fixed an issue when service token information was removed from .plist the + client would not prompt for user authentication as expected + + - Fixed 3rd party VPN Compatibility by adding a default /32 subnet to + interfaces that don't have them by default (this was specifically to fix + compat with NordLayer but may help others) + + - Fixed an issue where re-authentication button could show up in consumer + 1.1.1.1 mode even though it is just a Zero Trust feature + + - Fixed an issue that could cause many requests for authentication to open in + the browser + + - Fixed an issue that could cause registration errors when auth ID or other + parameters are removed from a local MDM/.plist file + + - Fixed an issue where the client would attempt to connect even when the "AUTO + CONNECT" setting was Disabled in WARP Settings or not specified either in an + MDM file + + - Fixed an issue where the client could open multiple browser tabs to + "cloudflareportal.com/test" during authentication scenarios + + - Fixed an issue where the GUI application would auto-populate upon return + from a standby power state + + **Known issues** + + - No known issues +version: 2023.7.8.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2023.7.8.0 +packageSize: 63442069 +releaseDate: 2023-07-07T19:12:43.737Z +platformName: macOS diff --git a/src/content/warp-releases/macos/ga/2023.9.252.0.yaml b/src/content/warp-releases/macos/ga/2023.9.252.0.yaml new file mode 100644 index 000000000000000..b26fe945569cc81 --- /dev/null +++ b/src/content/warp-releases/macos/ga/2023.9.252.0.yaml @@ -0,0 +1,35 @@ +releaseNotes: |- + This release contains significant improvements to reliability and a number of exciting new features. + + **Notable updates** + + - Added connectivity error reasons to the UI. Examples of this UI and the types of errors your users will see can be found in the [client errors documentation](https://developers.cloudflare.com/cloudflare-one/connections/connect-devices/warp/troubleshooting/client-errors/) + - Added new posture type: [Client certificate](https://developers.cloudflare.com/cloudflare-one/identity/devices/warp-client-checks/client-certificate/) + - Added support for IPv6 DEX Traceroute tests (previously only IPv4 addresses could be used) + - Improved reliability and efficiency in configurating split tunnel rules. Most `error petting the dog` errors should now be gone and organizations with large split tunnel configuration should see reliability improvements. + - Modify IPv6 DNS behavior to no longer bind to discrete stub resolvers and instead point interfaces at a V6->V4 mapping `::ffff:127.0.2.2`. This change makes DNS mapping consistent on all platforms + - Fixed an issue where warp-svc.exe could crash under extreme load + - Fixed an issue with DEX traceroutes tests where not all hops were correctly reported + - Fixed an issue where DEX tests would not properly run immediately after a device came out of sleep + - Fixed an issue where DEX tests would execute simultaneously causing performance issues for accounts with a large number of tests configured + - Fixed an issue with DEX traceroutes tests where not all hops were correctly reported + - Fixed an issue where DNS status would flap between Connected / Disconnect in Connectivity panel + - Fixed an issue where DoH requests could take too long to timeout causes DNS reliability issues + - Fixed an issue where DNS could temporarily fail when DHCP updates were processed + - Fixed an issue on initial device registration that could sometimes cause it to fail and try again + - Fixed an issue where UI could appear in the wrong location when the app starts + - Fixed an issue where short DNS timeouts were causing issues with some captive portals (United in particular) + - Fixed an issue where managed network detection could fail when our firewall rules were not correctly removed under certain disconnect scenarios + - Fixed an issue with Managed Networks where if the managed endpoint overlapped with your exclude split tunnel configuration, the split tunnel would only be open for IP traffic destined to the same port as your managed TLS endpoint + - Fixed an issue where IPv6 traffic could be incorrectly sent down the tunnel in exclude mode + - Fixed an issue where an invalid override code could cause warp to disconnect when the lock switch was not set to true + - Fixed an issue where the UI could appear in the wrong location when the app starts + + + **Known issues** + - No known issues +version: 2023.9.252.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2023.9.252.0 +packageSize: 68485101 +releaseDate: 2023-09-27T21:07:48.007Z +platformName: macOS diff --git a/src/content/warp-releases/macos/ga/2024.1.160.0.yaml b/src/content/warp-releases/macos/ga/2024.1.160.0.yaml new file mode 100644 index 000000000000000..ed645ba067d4d8f --- /dev/null +++ b/src/content/warp-releases/macos/ga/2024.1.160.0.yaml @@ -0,0 +1,46 @@ +releaseNotes: >- + This release contains a number of exciting new features and several + improvements and bug fixes. + + + **Notable updates** + + - Added the ability for the Client to display Gateway NETWORK and HTTP block + notifications to the user. + + - Added the ability for administrators to specify multiple configurations in + MDM files that users can toggle between. This allows users to more easily + switch between production and test environments or for China users to switch + between their override endpoints within the UI. + + - Added the ability for administrators to allow their end users to temporarily + obtain access to local network resources in the event their home IP space + overlaps with traffic normally routed through the WARP tunnel. + + - Improved existing re-auth notifications to be more visible and time + sensitive. + + - Improved the retry mechanisms for DEX test results. + + - Fixed an issue where DEX tests would run before the client was fully + connected. + + + **Known issues** + + - Registration may silently fail for users if they had previously used the + beta feature 'switch between multiple orgs/configurations' and uninstalled the + beta client before installing this GA client. It is recommended that the new + GA client be installed over the beta client (without first uninstalling the + beta client). If the beta client has already been uninstalled, simply + re-install the GA client a second time to clear this issue. + + - When `Install CA to system certificate store` is enabled, the certificate is + not always properly left behind in `/Library/Application + Support/Cloudflare/installed_cert.pem`. This issue will be fixed in a future + release. +version: 2024.1.160.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2024.1.160.0 +packageSize: 67358686 +releaseDate: 2024-01-24T18:36:39.621Z +platformName: macOS diff --git a/src/content/warp-releases/macos/ga/2024.11.309.0.yaml b/src/content/warp-releases/macos/ga/2024.11.309.0.yaml new file mode 100644 index 000000000000000..4e15c251730519d --- /dev/null +++ b/src/content/warp-releases/macos/ga/2024.11.309.0.yaml @@ -0,0 +1,20 @@ +releaseNotes: | + This release contains reliability improvements and general bug fixes. + + **Changes and improvements:** + - Fixed an issue where SSH sessions and other application connections over TCP or UDP could drop when a device that is using MASQUE changes its primary network interface. + - Fixed an issue to ensure the Cloudflare root certificate (or custom certificate) is installed in the trust store if not already there. + - Fixed an issue with the WARP client becoming unresponsive during startup. + - Extended `warp-diag` to collect system profiler firewall state as part of diagnostics. + - Fixed an issue with the WARP client becoming unresponsive while handling LAN inclusion. + - Fixed an issue where users were unable to connect with an IPC error message displayed in the UI. + - Fixed an issue that was preventing proper operation of DNS-over-TLS (DoT) for consumer users. + + **Known issues:** + - macOS Sequoia: Due to changes Apple introduced in macOS 15.0.x, the WARP client may not behave as expected. Cloudflare recommends the use of macOS 15.1 or later. + +version: 2024.11.309.0 +releaseDate: 2024-11-18T21:48:45.789Z +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2024.11.309.0 +packageSize: 80967264 +platformName: macOS diff --git a/src/content/warp-releases/macos/ga/2024.12.492.0.yaml b/src/content/warp-releases/macos/ga/2024.12.492.0.yaml new file mode 100644 index 000000000000000..abce72b43e9d268 --- /dev/null +++ b/src/content/warp-releases/macos/ga/2024.12.492.0.yaml @@ -0,0 +1,25 @@ +releaseNotes: | + This release contains minor fixes and improvements. + + Note: If using macOS Sequoia, Cloudflare recommends the use of macOS 15.2 or later. With macOS 15.2, Apple addressed several issues that may have caused the WARP client to not behave as expected when used with macOS 15.0 and 15.1. + + **Changes and improvements:** + - Consumers can now set the tunnel protocol using `warp-cli tunnel protocol set `. + - Extended diagnostics collection time in `warp-diag` to ensure logs are captured reliably. + - Improved captive portal support by disabling the firewall during captive portal login flows. + - Improved reliability of connection establishment logic under degraded network conditions. + - Improved reconnection speed when a Cloudflare server is in a degraded state. + - Improved captive portal detection on certain public networks. + - Fixed an issue where admin override displayed an incorrect override end time. + - Reduced connectivity interruptions on WireGuard Split Tunnel Include mode configurations. + - Fixed connectivity issues switching between managed network profiles with different configured protocols. + - QLogs are now disabled by default and can be enabled with `warp-cli debug qlog enable`. The QLog setting from previous releases will no longer be respected. + + **Known issues:** + - macOS Sequoia: Due to changes Apple introduced in macOS 15.0, the WARP client may not behave as expected. Cloudflare recommends the use of macOS 15.2 or later. + +version: 2024.12.492.0 +releaseDate: 2024-12-19T01:34:27.719Z +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2024.12.492.0 +packageSize: 84696492 +platformName: macOS diff --git a/src/content/warp-releases/macos/ga/2024.12.554.0.yaml b/src/content/warp-releases/macos/ga/2024.12.554.0.yaml new file mode 100644 index 000000000000000..f6ca22e8efb12e3 --- /dev/null +++ b/src/content/warp-releases/macos/ga/2024.12.554.0.yaml @@ -0,0 +1,17 @@ +releaseNotes: | + This release contains improvements to support custom Gateway certificate installation in addition to the changes and improvements included in version 2024.12.492.0. + + Note: If using macOS Sequoia, Cloudflare recommends the use of macOS 15.2 or later. With macOS 15.2, Apple addressed several issues that may have caused the WARP client to not behave as expected when used with macOS 15.0 and 15.1. + + **Changes and improvements**: + - Adds support for installing all available custom Gateway certificates from an account to the system store. + - Users can now get a list of installed certificates by running `warp-cli certs`. + + **Known issues:** + - macOS Sequoia: Due to changes Apple introduced in macOS 15.0.x, the WARP client may not behave as expected. Cloudflare recommends the use of macOS 15.2 or later. + +version: 2024.12.554.0 +releaseDate: 2024-12-19T22:33:11.258Z +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2024.12.554.0 +packageSize: 86091189 +platformName: macOS diff --git a/src/content/warp-releases/macos/ga/2024.2.68.0.yaml b/src/content/warp-releases/macos/ga/2024.2.68.0.yaml new file mode 100644 index 000000000000000..3e5029556fef75d --- /dev/null +++ b/src/content/warp-releases/macos/ga/2024.2.68.0.yaml @@ -0,0 +1,21 @@ +releaseNotes: >- + This release contains no new features and is focused exclusively on squashing + a few bugs. + + + **Notable updates** + + - Fixed an issue that caused high memory usage of the daemon process. + + + **Known issues** + + - When `Install CA to system certificate store` is enabled, the certificate is + not always properly left behind in `/Library/Application + Support/Cloudflare/installed_cert.pem`. This issue will be fixed in a future + release. +version: 2024.2.68.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2024.2.68.0 +packageSize: 67362170 +releaseDate: 2024-02-14T21:46:30.690Z +platformName: macOS diff --git a/src/content/warp-releases/macos/ga/2024.3.407.0.yaml b/src/content/warp-releases/macos/ga/2024.3.407.0.yaml new file mode 100644 index 000000000000000..f27a6cea94f7bb5 --- /dev/null +++ b/src/content/warp-releases/macos/ga/2024.3.407.0.yaml @@ -0,0 +1,25 @@ +releaseNotes: >- + This release contains no new features and is focused exclusively on + improvements. + + + **Notable updates** + + - macOS client downloads will now contain version numbers in the file name to + allow easy identification. + + - Improved the re-connection logic to minimize impact to existing tunneled TCP + sessions. + + - Increased the data collected by warp-diag to improve debugging capabilities. + + - Improved compatibility with multicast DNS (mDNS) systems. + + + **Known issues** + - No known issues. +version: 2024.3.407.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2024.3.407.0 +packageSize: 73556028 +releaseDate: 2024-03-29T21:43:18.666Z +platformName: macOS diff --git a/src/content/warp-releases/macos/ga/2024.3.444.0.yaml b/src/content/warp-releases/macos/ga/2024.3.444.0.yaml new file mode 100644 index 000000000000000..7b0a9fe7d062966 --- /dev/null +++ b/src/content/warp-releases/macos/ga/2024.3.444.0.yaml @@ -0,0 +1,17 @@ +releaseNotes: >- + This is a macOS only hot fix from the 2024.3.407.0 release. + + + **Notable updates** + + - Fixed an issue by correcting the WARP client setting of macOS firewall + rules. This relates to TunnelVision (CVE-2024-3661). + + + **Known issues** + - No known issues. +version: 2024.3.444.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2024.3.444.0 +packageSize: 73556157 +releaseDate: 2024-05-08T23:21:59.630Z +platformName: macOS diff --git a/src/content/warp-releases/macos/ga/2024.6.416.0.yaml b/src/content/warp-releases/macos/ga/2024.6.416.0.yaml new file mode 100644 index 000000000000000..f987950b76db89f --- /dev/null +++ b/src/content/warp-releases/macos/ga/2024.6.416.0.yaml @@ -0,0 +1,27 @@ +releaseNotes: |- + This release includes some exciting new features. It also includes additional fixes and minor improvements. + + **New features** + - Admins can now elect to have ZT WARP clients connect using the MASQUE protocol; this setting is in Device Profiles. Note: before MASQUE can be used, the global setting for Override local interface IP must be enabled. For more detail, see https://developers.cloudflare.com/cloudflare-one/connections/connect-devices/warp/configure-warp/warp-settings/#device-tunnel-protocol. This feature will be rolled out to customers in stages over approximately the next month. + - The Device Posture client certificate check has been substantially enhanced. The primary enhancement is the ability to check for client certificates that have unique common names, made unique by the inclusion of the device serial number or host name (for example, CN = 123456.mycompany, where 123456 is the device serial number). Additional details can be found here: https://developers.cloudflare.com/cloudflare-one/identity/devices/warp-client-checks/client-certificate/ + + **Additional changes and improvements** + - Fixed a known issue where the certificate was not always properly left behind in `/Library/Application Support/Cloudflare/installed_cert.pem`. + - Fixed an issue where re-auth notifications were not cleared from the UI when the user switched configurations. + - Fixed a macOS firewall rule that allowed all UDP traffic to go outside the tunnel. Relates to TunnelVision (CVE-2024-3661). + - Fixed an issue that could cause the Cloudflare WARP menu bar application to disappear when switching configurations. + + **Warning** + - This is the last GA release that will be supporting older, deprecated warp-cli commands. There are two methods to identify these commands. One, when used in this release, the command will work but will also return a deprecation warning. And two, the deprecated commands do not appear in the output of `warp-cli -h`. + + **Known issues** + - If a user has an MDM file configured to support multiple profiles (for the switch configurations feature), and then changes to an MDM file configured for a single profile, the WARP client may not connect. The workaround is to use the `warp-cli registration delete` command to clear the registration, and then re-register the client. + - There are certain known limitations preventing the use of the MASQUE tunnel protocol in certain scenarios. Do not use the MASQUE tunnel protocol if: + - A Magic WAN integration is on the account and is not yet migrated to the warp_unified_flow. Please check migration status with your account team. + - Your account has Regional Services enabled. + - Managed network detection will fail for TLS 1.2 endpoints with EMS (Extended Master Secret) disabled +version: 2024.6.416.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2024.6.416.0 +packageSize: 76887581 +releaseDate: 2024-06-28T17:02:21.443Z +platformName: macOS diff --git a/src/content/warp-releases/macos/ga/2024.6.474.0.yaml b/src/content/warp-releases/macos/ga/2024.6.474.0.yaml new file mode 100644 index 000000000000000..1f5adcd3e27baca --- /dev/null +++ b/src/content/warp-releases/macos/ga/2024.6.474.0.yaml @@ -0,0 +1,28 @@ +releaseNotes: >- + This release only contains a hotfix from the 2024.6.416.0 release. + + **Notable updates** + + - Fixed an issue which could cause alternate network detections to fail for + hosts using TLS 1.2 which do not support TLS Extended Master Secret (EMS). + + - Improved the stability of device profile switching based on alternate + network detection. + + **Known issues** + + - If a user has an MDM file configured to support multiple profiles (for the + switch configurations feature), and then changes to an MDM file configured for + a single profile, the WARP client may not connect. The workaround is to use + the `warp-cli registration delete` command to clear the registration, and then + re-register the client. + + - There are certain known limitations preventing the use of the MASQUE tunnel + protocol in certain scenarios. Do not use the MASQUE tunnel protocol if: + - A Magic WAN integration is on the account and is not yet migrated to the warp_unified_flow. Please check migration status with your account team. + - Your account has Regional Services enabled. +version: 2024.6.474.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2024.6.474.0 +packageSize: 76919339 +releaseDate: 2024-07-30T20:01:41.355Z +platformName: macOS diff --git a/src/content/warp-releases/macos/ga/2024.8.457.0.yaml b/src/content/warp-releases/macos/ga/2024.8.457.0.yaml new file mode 100644 index 000000000000000..73ecc790cc74401 --- /dev/null +++ b/src/content/warp-releases/macos/ga/2024.8.457.0.yaml @@ -0,0 +1,23 @@ +releaseNotes: | + This release contains minor fixes and improvements. + + **Notable updates:** + - Added the ability to customize PCAP options in `warp-cli`. + - Added a list of installed applications in `warp-diag`. + - Added a summary of `warp-dex` traceroute results in its JSON output. + - Improved the performance of firewall operations when enforcing Split Tunnels configuration. + - Fixed an issue where the DNS logs were not being cleared when the user switched configurations. + - Fixed an issue where clients using service tokens failed to retry after a network change. + - Fixed a known issue which required users to re-register when an older single configuration MDM file was deployed after deploying the newer, multiple configuration format. + - Fixed an issue which prevented the use of private IP ranges that overlapped with end users' home networks. + - Deprecated `warp-cli` commands have been removed. If you have any workflows that use the deprecated commands, update to the new commands where necessary. + + **Known issues:** + - Cloudflare is investigating temporary networking issues on macOS 15 (Sequoia) that seem to affect some users. + - Using MASQUE as the tunnel protocol may be incompatible if your organization has Regional Services enabled. + +version: 2024.8.457.0 +releaseDate: 2024-09-26T16:48:59.669Z +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2024.8.457.0 +packageSize: 77755150 +platformName: macOS diff --git a/src/content/warp-releases/macos/ga/2024.9.346.0.yaml b/src/content/warp-releases/macos/ga/2024.9.346.0.yaml new file mode 100644 index 000000000000000..17298fa0421e583 --- /dev/null +++ b/src/content/warp-releases/macos/ga/2024.9.346.0.yaml @@ -0,0 +1,24 @@ +releaseNotes: | + This release contains minor fixes and improvements. + + All customers running macOS Ventura 13.0 and above (including macOS Sequoia) are advised to upgrade to this release. This release fixes an incompatibility with the firewall that may sometimes result in the firewall becoming disabled. + + **Changes and improvements:** + - Added `target list` to the `warp-cli` to enhance the user experience with the [Access for Infrastructure SSH](/cloudflare-one/connections/connect-networks/use-cases/ssh/ssh-infrastructure-access/) solution. + - Added a `tunnel reset mtu` subcommand to the `warp-cli`. + - Added the ability for `warp-cli` to use the team name provided in the MDM file for initial registration. + - Added a JSON output option to the `warp-cli`. + - Added the ability to execute a PCAP on multiple interfaces with `warp-cli` and `warp-dex`. + - Improved `warp-dex` default interface selection for PCAPs and changed `warp-dex` CLI output to JSON. + - Improved [application posture check](/cloudflare-one/identity/devices/warp-client-checks/application-check/) compatibility with symbolically linked files. + - Fixed an issue where the client, when switching between WireGuard and MASQUE protocols, sometimes required a manual tunnel key reset. + - Added MASQUE tunnel protocol support for the consumer version of WARP ([1.1.1.1 w/ WARP](/warp-client/)). + + **Known issues:** + - Using MASQUE as the tunnel protocol may be incompatible if your organization has Regional Services enabled. + +version: 2024.9.346.0 +releaseDate: 2024-10-03T22:17:44.714Z +packageURL: https://downloads.cloudflareclient.com/v1/download/macos/version/2024.9.346.0 +packageSize: 79993994 +platformName: macOS diff --git a/src/content/warp-releases/windows/beta/2021.12.5.1.yaml b/src/content/warp-releases/windows/beta/2021.12.5.1.yaml new file mode 100644 index 000000000000000..3d9d5c016fe8c36 --- /dev/null +++ b/src/content/warp-releases/windows/beta/2021.12.5.1.yaml @@ -0,0 +1,8 @@ +releaseNotes: |- + **Notable updates** + - Minor version bump. +version: 2021.12.5.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2021.12.5.1 +packageSize: 88457216 +releaseDate: 2021-12-11T01:16:06.761Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2022.1.189.1.yaml b/src/content/warp-releases/windows/beta/2022.1.189.1.yaml new file mode 100644 index 000000000000000..8236ec01bb83173 --- /dev/null +++ b/src/content/warp-releases/windows/beta/2022.1.189.1.yaml @@ -0,0 +1,31 @@ +releaseNotes: >- + This release contains new features and improvements from the last release. In + particular, we have made significant changes to how local settings (MDM) are + processed and how they work with new devices settings in the dashboard. + + + **Notable updates** + + - Added support for Gateway session duration enforcement allowing you to force + re-authentication after a specified time. + + - Fixed issue where context menu would remain after you quit the GUI. + + - Fixed wake from sleep issue where DNS requests could fail. + + - Improved overall stability of Windows installer. + + + **Known issues** + + - If you change organizations by pushing a new mdm.xml file while the user is + already logged in to an organization the client will get in to a bad state and + need to be uninstalled. + + - Any change to the mdm.xml file will require the user to re-authenticate when + they shouldn't have to. +version: 2022.1.189.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2022.1.189.1 +packageSize: 88473600 +releaseDate: 2022-01-26T19:07:51.514Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2022.10.111.1.yaml b/src/content/warp-releases/windows/beta/2022.10.111.1.yaml new file mode 100644 index 000000000000000..0f591d57b290e5e --- /dev/null +++ b/src/content/warp-releases/windows/beta/2022.10.111.1.yaml @@ -0,0 +1,20 @@ +releaseNotes: >- + This release is a mirror of GA release 2022.10.106.0 + + - Fixed issue where GUI may still think user is registered after "warp-cli + delete" is run + + - Decreased warp-diag run times by not resolving traceroute domains + + - Decreased warp-diag zip file sizes by 60-80% + + + + **Known issues** + + - No known issues +version: 2022.10.111.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2022.10.111.1 +packageSize: 105861120 +releaseDate: 2022-11-17T06:26:13.700Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2022.10.74.1.yaml b/src/content/warp-releases/windows/beta/2022.10.74.1.yaml new file mode 100644 index 000000000000000..7303d8ef101fc1a --- /dev/null +++ b/src/content/warp-releases/windows/beta/2022.10.74.1.yaml @@ -0,0 +1,23 @@ +releaseNotes: |- + This release primarily contains bug fixes, no new features are included in this release + + **Notable updates** + - Modified installer behavior to now set the following registry key `HKLM\SOFTWARE\POLICIES\MICROSOFT\Windows\NetworkConnectivityStatusIndicator\UseGlobalDNS=1 (REG_DWORD)`. This resolves issues where Windows would think you didn't have a network connection even though you did. + - Modified behavior of warp-diag to now also include 24 hours of Windows system event logs (for Zero Trust customers only). + - Modified behavior of `warp-cli enable-dns-log` to automatically turn off after 7 days (this is the equivalent of manually running `warp-cli disable-dns-log`) + - Fixed HappyEyeballs search on IPv6 only devices + - Fixed UI in various states where we would show the wrong text when in various states (ex. Paused when really disabled via Admin Override, etc.) + - Fixed issue in consumer on mode where you could add a domain based split tunnel rule but you couldn't delete them + - Fixed issue where you could recieve Windows notifications when you weren't supposed to + - Fixed issue where DHCP packets may be blocked when switching from Ethernet to Wifi + - Fixed `System.AggregateException` that on some systems would cause the WARP UI to crash (note even if the UI is not running, the system service is still enforcing policy) + - Fixed issue where the installer would check for an updated version of the app upon install. The installer no longer does this so the client itself can download settings and determine if users should be allowed to self update. + + + **Known issues** + - No known issues +version: 2022.10.74.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2022.10.74.1 +packageSize: 105807872 +releaseDate: 2022-11-04T19:20:09.495Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2022.12.268.1.yaml b/src/content/warp-releases/windows/beta/2022.12.268.1.yaml new file mode 100644 index 000000000000000..bff8a22ca11c607 --- /dev/null +++ b/src/content/warp-releases/windows/beta/2022.12.268.1.yaml @@ -0,0 +1,62 @@ +releaseNotes: >- + This release contains bug fixes and a new UI `Connectivity` panel in + preferences (Windows only at the moment) to assist with debugging. Please give + it a try and let us know how it works! + + **Notable updates** + + - New `Connectivity` tab in the GUI bubbles up helpful information (Windows + only for now). Please let us know how this works for you. + + - Improved captive portal handling for some more captive portals. + + - Improved reconnect logic when a setting changes to no longer always do a + full disconnect->reconnect cycle (for instance when turning on DNS logging). + + - Modified initial connectivity check behavior to now validate both IPv4 and + IPv6 are working (previously we only checked IPv4). Test will pass if either + connects successfully. + + - Fixed issue where UI could appear hung. + + - Fixed issue where progress bar won't appear during update until update is + completed. + + - Fixed issue where client could be stuck on `Connecting` if certain DNS + checks failed once. + + - Fixed DNS issue where TXT records were not being correctly returned when at + the end of a CNAME chain. + + - Fixed issue where the client may not receive notifications of new settings, + re-auth events or posture from the service until reboot. + + - Fixed issue where users could be pointing at an old gateway_doh_subdomain if + you have `Allowed to Leave` set to true and they've manually joined their + client to your organization. + + - Fixed slow DNS timeout issue that could occur when IPv6 is enabled and an + NXDOMAIN record is returned. + + - Fixed issue with `Gateway with DoH` mode could say `Connected` when it + wasn't really connected as we could sometimes test the wrong endpoint. + + - Fixed issue where our local DNS proxy server could get unset with an overly + active DHCP renew time or by plugging in/out a tethered device. + + - Fixed issue where if `support_url` doesn't have a protocol definitely we now + automatically add `https` + + - Fixed issue where the Cloudflare WARP system Service may crash if a long + running child process crashes (such as ipconfig, netsh, etc.) + + + + **Known issues** + + - No known issues +version: 2022.12.268.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2022.12.268.1 +packageSize: 105132032 +releaseDate: 2022-12-06T23:04:22.736Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2022.12.440.1.yaml b/src/content/warp-releases/windows/beta/2022.12.440.1.yaml new file mode 100644 index 000000000000000..3c20a4e93f281ec --- /dev/null +++ b/src/content/warp-releases/windows/beta/2022.12.440.1.yaml @@ -0,0 +1,31 @@ +releaseNotes: >- + This release contains the following changes since the previous 2022.12 beta + release + + **Notable updates** + + - Added support for new Zero Trust network location aware WARP feature. More + info to be released soon on how you can test. + + - Fixed issue where `warp-cli teams-enroll` wouldn't work when an mdm file was + present + + - Fixed issue where our localhost dns endpoints (ex. 127.0.2.2) could appear + in the fallback configuration potentially causing DNS lookups to fail + + - Fixed issue that could cause the Cloudflare WARP Service to crash (and then + potentially the GUI) + + - Fixed issue that could cause some DNS queries to take upto 15 seconds to + complete + + + + **Known issues** + + - No known issues +version: 2022.12.440.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2022.12.440.1 +packageSize: 105148416 +releaseDate: 2022-12-21T21:52:17.028Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2022.12.478.1.yaml b/src/content/warp-releases/windows/beta/2022.12.478.1.yaml new file mode 100644 index 000000000000000..979174d6b50efb1 --- /dev/null +++ b/src/content/warp-releases/windows/beta/2022.12.478.1.yaml @@ -0,0 +1,13 @@ +releaseNotes: |- + This release primarily updates the beta to match GA 2022.12.476.0 + + **Notable updates** + - None + + **Known issues** + - No known issues +version: 2022.12.478.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2022.12.478.1 +packageSize: 105148416 +releaseDate: 2022-12-29T02:15:28.923Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2022.12.581.1.yaml b/src/content/warp-releases/windows/beta/2022.12.581.1.yaml new file mode 100644 index 000000000000000..7718be1a09eba4a --- /dev/null +++ b/src/content/warp-releases/windows/beta/2022.12.581.1.yaml @@ -0,0 +1,16 @@ +releaseNotes: >- + This release contains only stability and bug fixes. + + **Hotfix Updates** + + - Fixed issue where clients would attempt to configure DNS even when in + posture-only, or proxy modes. + + **Known issues** + + - No known issues +version: 2022.12.581.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2022.12.581.1 +packageSize: 105140224 +releaseDate: 2023-01-11T20:51:06.149Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2022.2.116.1.yaml b/src/content/warp-releases/windows/beta/2022.2.116.1.yaml new file mode 100644 index 000000000000000..a063ee54b6afa77 --- /dev/null +++ b/src/content/warp-releases/windows/beta/2022.2.116.1.yaml @@ -0,0 +1,16 @@ +releaseNotes: |- + This release contains new features and improvements from the last beta release. + + **Notable updates** + - Added support for Device Information only mode. This allows for posture to be used for Access policies without Gateway being enabled. Please reach out to your Cloudflare rep if you would like to test this feature ahead of release + + + **Known issues** + - The organization name is case sensitive, which could cause a device to lose registration. + + For releated Cloudflare for Teams documentation please see: https://developers.cloudflare.com/cloudflare-one/connections/connect-devices/warp +version: 2022.2.116.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2022.2.116.1 +packageSize: 88367104 +releaseDate: 2022-02-15T22:10:21.115Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2022.2.24.1.yaml b/src/content/warp-releases/windows/beta/2022.2.24.1.yaml new file mode 100644 index 000000000000000..274d2b5086f1bfc --- /dev/null +++ b/src/content/warp-releases/windows/beta/2022.2.24.1.yaml @@ -0,0 +1,26 @@ +releaseNotes: |- + This release contains new features and improvements from the last beta release. In particular this build now supports the ability to configure settings via the Dashboard and not just with a mdm.xml file. Note that settings in your mdm.xml always overrule what comes from the dashboard. + + **Notable updates** + - The "enabled" mdm.xml property has now been completely deprecated and is no longer read. Please see https://developers.cloudflare.com/cloudflare-one/connections/connect-devices/warp/deployment/mdm-deployment/parameters#switch_locked for the mechanism announced in April 2021 + - Now that settings exist in the Zero Trust Dashboard the Client UI should behave the same regardless of if you manually joined to a Team or if you were forced to by local mdm.xml policy + - Updated Teams logo in app to Zero Trust + - Modified GUI exit behavior for users who manually joined their device to a Team. Quiting the app will still keep the service running and enforcing policy as it always has for clients that were reployed via mdm/Intune/etc. + - Removed UI that was not relevant when in Zero Trust Mode (consumer only features in connection tab, quit button that doesnt really do anything, etc.) + - Fixed issue where the WARP Client might not get updated settings when it initial starts + - Fixed issue where the Last Seen value was not updated properly in the Zero Trust Dashboard while in Gateway with DoH mode + - Fixed issue where device name was not updated in the Zero trust Dashboard if the computer name changed after initial registration + - Fixed issue where you could not log out a team after clicking "Reset Encryption Keys" + - Fixed various issues with split tunnel support in consumer mode + - Fixed issue where "warp-cli settings" showed connection time in settings instead of minutes + + + **Known issues** + No known issues + + For releated Cloudflare for Teams documentation please see: https://developers.cloudflare.com/cloudflare-one/connections/connect-devices/warp +version: 2022.2.24.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2022.2.24.1 +packageSize: 88383488 +releaseDate: 2022-02-09T20:27:18.482Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2022.2.257.1.yaml b/src/content/warp-releases/windows/beta/2022.2.257.1.yaml new file mode 100644 index 000000000000000..14efcee997b237b --- /dev/null +++ b/src/content/warp-releases/windows/beta/2022.2.257.1.yaml @@ -0,0 +1,16 @@ +releaseNotes: |- + This release is a minor hotfix over the previous release (2022.2.116.1). + + **Notable updates** + - Fixed an issue where the organization name became case sensitive and could cause a device to lose registration. + + + **Known issues** + No known issues + + For releated Cloudflare for Teams documentation please see: https://developers.cloudflare.com/cloudflare-one/connections/connect-devices/warp +version: 2022.2.257.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2022.2.257.1 +packageSize: 88367104 +releaseDate: 2022-02-23T22:34:54.766Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2022.3.151.1.yaml b/src/content/warp-releases/windows/beta/2022.3.151.1.yaml new file mode 100644 index 000000000000000..4c886db2743fdd0 --- /dev/null +++ b/src/content/warp-releases/windows/beta/2022.3.151.1.yaml @@ -0,0 +1,16 @@ +releaseNotes: |- + This release contains bug fixes and connection stability improvement + + **Notable updates** + - Bug fixes and connection stability improvement + + + **Known issues** + No known issues + + For releated Cloudflare for Teams documentation please see: https://developers.cloudflare.com/cloudflare-one/connections/connect-devices/warp +version: 2022.3.151.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2022.3.151.1 +packageSize: 89055232 +releaseDate: 2022-03-21T20:13:12.537Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2022.3.72.1.yaml b/src/content/warp-releases/windows/beta/2022.3.72.1.yaml new file mode 100644 index 000000000000000..181b2260a2d3f39 --- /dev/null +++ b/src/content/warp-releases/windows/beta/2022.3.72.1.yaml @@ -0,0 +1,34 @@ +releaseNotes: >- + This release contains new features and improvements from the last release. + + + + **Notable updates** + + - Added support for Device Information only mode. This allows for posture to + be used for Access policies without Gateway being enabled. + + - Fixed issue where UI would not update immediately based on a dashboard + settings change + + - Fixed issue where the client could fail to check for updates + + - Fixed issue for Zero Trust accounts with Captive Portal disabled where they + client may not always reconnect when it should + + - Fixed issue where the UI would show disconnected when the client was instead + just temporarily paused + + - Fixed issue where serial numbers with spaces in the string were not + correctly reported + + + + **Known issues** + + - No known issues +version: 2022.3.72.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2022.3.72.1 +packageSize: 88788992 +releaseDate: 2022-03-10T18:09:26.981Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2022.4.22.1.yaml b/src/content/warp-releases/windows/beta/2022.4.22.1.yaml new file mode 100644 index 000000000000000..2e913b2caa99a48 --- /dev/null +++ b/src/content/warp-releases/windows/beta/2022.4.22.1.yaml @@ -0,0 +1,27 @@ +releaseNotes: |- + *PLEASE NOTE* If you are a Zero Trust customer and have strict firewall rules, you must visit https://developers.cloudflare.com/cloudflare-one/connections/connect-devices/warp/deployment/firewall/#client-orchestration-api and explicitly allow our new Client Orchestration API Endpoints. + + This release contains new features and improvements from the last release + + **Notable updates** + + - Added support for Cloudflare Tunnels users to route traffic to distinct Virtual Networks with overlapping IP ranges + - Added ability for users to manually refresh Zero Trust authentication via the Preferences->Account menu + - Modified Client Orchestration API Endpoint the client connects to in Zero Trust mode + - Modified warp-cli behavior of "connect" and "disconnect" to mimic "enable-always-on" and "disable-always-on" which themselves are copies of how the main toggle switch behaves in the UI + - Modified client behavior to no longer do periodic tunnel connectivity checks. These checks frequently caused more problems than they solved. + - Fixed issue where UI would not display correctly for users with multiple monitors or in VMWare [win] + - Fixed connectivity issues over devices with embedded 4G [win] + - Fix issue where Windows device could fail to renew IP address when coming out of sleep [win] + - Fixed issue where Zero Trust users would receive a notification to update the client even though upgrades were disabled in settings + - Fixed issue where the GUI would show disconnected when it should show Paused + - Fixed various issues with warp-diag and improve overall stability + + + **Known issues** + - UI incorrectly Shows Virtual Networks selector when there is only 1 default network. This UI should be hidden unless there are actually multiple networks to choose from. +version: 2022.4.22.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2022.4.22.1 +packageSize: 90533888 +releaseDate: 2022-04-01T16:23:37.283Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2022.5.200.1.yaml b/src/content/warp-releases/windows/beta/2022.5.200.1.yaml new file mode 100644 index 000000000000000..604a8e6be08ef33 --- /dev/null +++ b/src/content/warp-releases/windows/beta/2022.5.200.1.yaml @@ -0,0 +1,32 @@ +releaseNotes: >- + This release contains bug fixes from the previous beta release + + **Notable updates** + + - Fixed issue with warp-cli where enable/disable with wifi was allowed in Zero + Trust mode + + - Fixed issue where we would not properly re-enforce the DNS server values we + set (127.0.2.2, 127.0.2.3, fd01:db8:1111::2, and fd01:db8:1111::3) + + - Fixed issue where we don't always properly restore the users original DNS + server values + + - Fixed issue where we don't properly restore DNS servers values on device + shutdown + + - Fixed issue where connection was toggled off after upgrade + + - Fixed issue where we get multiple desktop notifications after wake from + sleep + + + **Known issues** + + - This version requires at least Windows 10.0.19042. If you are running a + prior version of Windows, please delay upgrading. +version: 2022.5.200.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2022.5.200.1 +packageSize: 91090944 +releaseDate: 2022-05-24T18:31:28.344Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2022.5.324.1.yaml b/src/content/warp-releases/windows/beta/2022.5.324.1.yaml new file mode 100644 index 000000000000000..125421236f4b86d --- /dev/null +++ b/src/content/warp-releases/windows/beta/2022.5.324.1.yaml @@ -0,0 +1,27 @@ +releaseNotes: >- + This release is a hotfix for 2022.5.226.0. + + **Notable updates** + + - Fixed false positives when attempting to detect a captive portal + + - Fixed issue where OS version would not be updated in dash after OS update + + - Fixed issue when DNS would not resolve for fallback domains on certain + machines + + - Fixed installation failure when a newer version of WebView2 exists + + + **Known issues** + + - This version requires at least Windows 10.0.19042. If you are running a + prior version of Windows, please delay upgrading. + + - On an unexpected power loss, the wrong DNS servers maybe set on the machine + on subsequent boots. Causing DNS resolution to fail. +version: 2022.5.324.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2022.5.324.1 +packageSize: 91086848 +releaseDate: 2022-06-14T00:13:33.701Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2022.5.44.1.yaml b/src/content/warp-releases/windows/beta/2022.5.44.1.yaml new file mode 100644 index 000000000000000..8192f4564318119 --- /dev/null +++ b/src/content/warp-releases/windows/beta/2022.5.44.1.yaml @@ -0,0 +1,63 @@ +releaseNotes: >- + This release contains significant improvements to our DNS functionality. In + addition to overall improved DNS stability and performance, we now fully + support DNS requests over TCP. This also modifies our local DNS proxy to use + the internal IPs of 127.0.2.2, 127.0.2.3, fd01:db8:1111::2, and + fd01:db8:1111::3. + + **Notable updates** + + - Added support for DNS over TCP + + - Added support for teams-enroll in the warp-cli utility + + - Modified client font to be system default + + - Modified client behavior to no longer show massive upgrade notification when + a new build is released, instead you'll now see a change to our system tray + icon to indicate a new build is available + + - Fixed issue where the Virtual Network selector would appear for users with + only a single network + + - Fixed issue where the Virtual Network selector may not appear after a reboot + + - Fixed issue where the Logout from Zero trust button would remain locked + after an mdm.xml file was removed + + - Fixed issue where settings and/or UI may not properly clear when moving from + one Zero Trust org to another + + - Fixed issue where device posture checks (Application and File Check) were + case sensitive when they shouldn't have been + + - Fixed issue where updating the mdm.xml file would require the user to + re-register in cases where it shouldn't (registration would appear missing) + + - Fixed issue when coming out of sleep where it could take 60 seconds to + connect while we waited for Apples connectivity checks to finish (and we + didn't really need to) + + - Fixed issue where our service could crash and not properly restart + + - Fixed issue where updated posture checks might not take effect until restart + + **Known issues** + + - Event Viewer will show tcpip errors when multiple clients are on the same + network + + - warp-svc does not properly restart when killed + + - Network may take up to 40 seconds to reconnect after pro-longed sleep and/or + modern standby + + - Does not work on LTE connections. Disable IPv6 as a workaround. + + - This version requires at least Windows 10.0.19042. If you are running a + prior version of Windows, please delay upgrading. +version: 2022.5.44.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2022.5.44.1 +packageSize: 90836992 +releaseDate: 2022-05-10T18:42:54.109Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2022.7.171.1.yaml b/src/content/warp-releases/windows/beta/2022.7.171.1.yaml new file mode 100644 index 000000000000000..e88594f194f6441 --- /dev/null +++ b/src/content/warp-releases/windows/beta/2022.7.171.1.yaml @@ -0,0 +1,31 @@ +releaseNotes: >- + This release contains bug fixes and improvements from the prior beta release. + Please note that with this release the authentication flow for users has now + moved to the default browser instead of an embedded in-app browser. + + **Notable updates** + + - Modified Zero Trust authentication flow to no longer rely on WebView2 + embedded experience and use default browser instead + + - Fixed major issue introduced with 2022.5.341 where IPv6 traffic was no + longer consistently routed through the tunnel + + - Fixed issue where warp-svc.exe may not start due to missing VCRUNTIME140.dll + on some systems + + - Fixed issue that could result in broken DNS for users running WiFi until an + admin manually reset DNS back to default + + - Removed built in web browser used for Zero Trust Organization log in. Now + relies on default web browser on the machine. + + **Known issues** + + - This version requires at least Windows 10.0.19042. If you are running a + prior version of Windows, please delay upgrading. +version: 2022.7.171.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2022.7.171.1 +packageSize: 88604672 +releaseDate: 2022-07-14T17:29:46.929Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2022.7.214.1.yaml b/src/content/warp-releases/windows/beta/2022.7.214.1.yaml new file mode 100644 index 000000000000000..4cc51bc7737a44e --- /dev/null +++ b/src/content/warp-releases/windows/beta/2022.7.214.1.yaml @@ -0,0 +1,22 @@ +releaseNotes: >- + This release contains a single change to the behavior of the client when WARP + session duration Gateway Network or HTTP policies are in place. No other bug + fixes or feature are included. + + **Notable updates** + + - Modified client behavior to no longer automatically open a new browser tab + when user needs to reauthenticate as this was causing some users to return to + their devices with 100s of tabs open. Instead the client will now use the + built in operating system notification framework to inform users of the need + to authenticate. + + **Known issues** + + - This version requires at least Windows 10.0.19042. If you are running a + prior version of Windows, please delay upgrading +version: 2022.7.214.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2022.7.214.1 +packageSize: 103211008 +releaseDate: 2022-07-20T00:09:43.643Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2022.7.281.1.yaml b/src/content/warp-releases/windows/beta/2022.7.281.1.yaml new file mode 100644 index 000000000000000..6c15edb8948f9b7 --- /dev/null +++ b/src/content/warp-releases/windows/beta/2022.7.281.1.yaml @@ -0,0 +1,24 @@ +releaseNotes: >- + This release contains couple of fixes from last GA build. No other bug fixes + or feature are included. + + **Notable updates** + + - Modified client behavior to no longer automatically open a new browser tab + when user needs to re-authenticate as this was causing some users to return to + their devices with 100s of tabs open. Instead the client will now use the + built in operating system notification framework to inform users of the need + to authenticate. + + + - Fixed an issue with enrolling Zero Trust users using Windows installer. + + **Known issues** + + - This version requires at least Windows 10.0.19042. If you are running a + prior version of Windows, please delay upgrading +version: 2022.7.281.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2022.7.281.1 +packageSize: 103211008 +releaseDate: 2022-07-22T23:04:25.614Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2022.7.370.1.yaml b/src/content/warp-releases/windows/beta/2022.7.370.1.yaml new file mode 100644 index 000000000000000..35ea0fb1ff437e0 --- /dev/null +++ b/src/content/warp-releases/windows/beta/2022.7.370.1.yaml @@ -0,0 +1,19 @@ +releaseNotes: >- + This release contains bug fixes from the previous beta + + **Notable updates** + + - Fixed issues with device registration after logging out/in of the client. + + - Fixed issue where file device posture checks wouldn't work correctly when + the file path was changed for an existing rule. + + **Known issues** + + - This version requires at least Windows 10.0.19042. If you are running a + prior version of Windows, please delay upgrading +version: 2022.7.370.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2022.7.370.1 +packageSize: 103219200 +releaseDate: 2022-07-29T20:35:45.905Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2022.8.558.1.yaml b/src/content/warp-releases/windows/beta/2022.8.558.1.yaml new file mode 100644 index 000000000000000..159db510166c427 --- /dev/null +++ b/src/content/warp-releases/windows/beta/2022.8.558.1.yaml @@ -0,0 +1,83 @@ +releaseNotes: >- + This release primarily contains improvements to stability and bug fixes. + Please note that the issue preventing the client from working with Windows + versions older than 10.0.19042 is now fixed in this release. We also wanted to + call out that we've made server side changes to significantly reduce captcha + issues for users with IPv6 enabled (no client related change but wanted to + call out the work). + + **Notable updates** + + - Modified GUI app to now be built on .Net 6.0 as .Net 5.0 is now end of life + and upgraded the internal version of our upgrade engine (Sparkle). No user + facing changes expected. + + - Modified GUI when in Include Only split tunneling mode to correctly state + that just the routes included in the split tunnel configuration are protected. + This is just a string change. + + - Fixed issue where `warp-cli set-custom-endpoint` could be used by users + without local admin rights as a way to bypass Gateway policies. + + - Fixed issue where `warp-cli add-trusted-ssid` worked in Zero Trust mode when + it should not have. + + - Fixed issue where `warp-cli teams-enroll` would run even if already joined + to an organization and users were not allowed to disconnect or leave. + + - Fixed issue that could result in connection issues coming out of certain + sleep states (AddrInUse error or Multiple WARP Connections or + NoCurrentSession). + + - Fixed issue that could result in connection flickering between + connected/disconnected. + + - Fixed issue where connectivity test could report wrong status in logs when + in Include Only split tunnel configuration. + + - Fixed issue where warp-cli could hang if service was in a bad state. + + - Fixed issue where sometimes Zero Trust device settings configured in the + dash wouldn't take effect for machines in a disconnected state and asleep + state. + + - Fixed issue where our DNS proxy wasn't correctly handling EDNS0 requests. + + - Fixed issue preventing the WARP Client from working with Windows versions + prior to 10.0.19042 by no longer using SetInterfaceDnsSettings and instead set + DNS server config by modifying the following registry key(s) directly for each + interface. + SYSTEM\CurrentControlSet\Services\{service}\Parameters\Interfaces\{guid}. + + - Fixed issue where the DNS Answer for records at the end of a CNAME chain + would appear in the ADDITIONAL response section instead of the ANSWER section. + This broke certain connectivity checks for Microsoft and Android studio in + particular (probably other things). We now put the IP address found in the + ANSWER section. + + - Fixed issue where multiple instances of the service could run at the same + time. + + - Fixed issue that could occur during registration if the user clicks on on + the Launch Cloudflare WARP button after already registering. + + - Fixed issue where the Zero Trust client was starting in connected mode when + dash settings `Switched Locked` and `Auto Connect` were turned off/disabled. + The client should only ever auto connect when these are enabled. + + - Improved performance of warp-diag to now collects logs in parallel and now + collect additional routes to help with debugging. + + **Known issues** + + - In "Include Only Mode" the tunnel may reset every 135 seconds when no + traffic is flowing over the tunnel + + - Client may crash when an issue is detected on the tunnel (caused by waking + from sleep or bad network connection). This crash my result in a lack of + network connectivity. +version: 2022.8.558.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2022.8.558.1 +packageSize: 105873408 +releaseDate: 2022-08-30T22:10:00.120Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2022.8.624.1.yaml b/src/content/warp-releases/windows/beta/2022.8.624.1.yaml new file mode 100644 index 000000000000000..9bf6588f1a5f025 --- /dev/null +++ b/src/content/warp-releases/windows/beta/2022.8.624.1.yaml @@ -0,0 +1,21 @@ +releaseNotes: |- + This release contains bug fixes from the previous beta (2022.8.558.1). Please + note that the issue preventing the client from working with Windows versions + older than 10.0.19042 is now fixed in this release. We also wanted to call out + that we've made server side changes to significantly reduce captcha issues for + users with IPv6 enabled (no client related change but wanted to call out the + work). + + **Notable updates** + + - Fixed crash of daemon after wake from sleeping which could cause loss of + network connectivity or the GUI to freeze + - Fixed issue with includeonly tunnels reconnecting every ~135 seconds + + **Known issues** + - No known issues +version: 2022.8.624.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2022.8.624.1 +packageSize: 105893888 +releaseDate: 2022-09-01T01:04:14.158Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2022.8.869.1.yaml b/src/content/warp-releases/windows/beta/2022.8.869.1.yaml new file mode 100644 index 000000000000000..e073f1b92363c80 --- /dev/null +++ b/src/content/warp-releases/windows/beta/2022.8.869.1.yaml @@ -0,0 +1,20 @@ +releaseNotes: |- + This release contains bug fixes from the previous beta (2022.8.624.1). Please + note that the issue preventing the client from working with Windows versions + older than 10.0.19042 is now fixed in this release. We also wanted to call out + that we've made server side changes to significantly reduce captcha issues for + users with IPv6 enabled (no client related change but wanted to call out the + work). + + **Notable updates** + + - Added ability for ZT Administrators to specify if they want embedded WebView2 browser to be used instead of the default system browser. See [Deployment documentation](https://developers.cloudflare.com/cloudflare-one/connections/connect-devices/warp/deployment/mdm-deployment/#install-warp-on-windows) for more information + - Fixed failure to reconnect to WARP due to DNS stub server AddrInUse failures + + **Known issues** + - No known issues +version: 2022.8.869.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2022.8.869.1 +packageSize: 106332160 +releaseDate: 2022-09-12T19:49:11.038Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2022.9.207.1.yaml b/src/content/warp-releases/windows/beta/2022.9.207.1.yaml new file mode 100644 index 000000000000000..4c979811339b6e8 --- /dev/null +++ b/src/content/warp-releases/windows/beta/2022.9.207.1.yaml @@ -0,0 +1,39 @@ +releaseNotes: >- + This release primarily contains bug fixes, no new features are included in + this release + + **Notable updates** + + - Improved connection time on slow network connections + + - Fixed bug where initial teams registration could take awhile to show up on + client UI + + - Fixed bug that could cause Teams registration to fail (mostly server side + but mentioning here as well) and handoff from the success page in the browser + to the client + + - Fixed notification experience so you only recieve a single notification if + registration fails instead of hundreds + + - Fixed DNS fallback timeouts and related performance issues + + - Fixed issue where coming out of sleep on some systems could take an + unreasonably long time to connect + + - Fixed InvalidPacket error in logs that indicated the client needed to reset + its connection + + + + + + **Known issues** + + - Device posture check results stop sending after 24 hours (or possibly even + sooner) +version: 2022.9.207.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2022.9.207.1 +packageSize: 103960576 +releaseDate: 2022-09-22T17:21:59.546Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2022.9.213.1.yaml b/src/content/warp-releases/windows/beta/2022.9.213.1.yaml new file mode 100644 index 000000000000000..159ab9a2b188485 --- /dev/null +++ b/src/content/warp-releases/windows/beta/2022.9.213.1.yaml @@ -0,0 +1,39 @@ +releaseNotes: >- + This release primarily contains bug fixes, no new features are included in + this release + + **Notable updates** + + - Improved connection time on slow network connections + + - Fixed bug where initial teams registration could take awhile to show up on + client UI + + - Fixed bug that could cause Teams registration to fail (mostly server side + but mentioning here as well) and handoff from the success page in the browser + to the client + + - Fixed notification experience so you only recieve a single notification if + registration fails instead of hundreds + + - Fixed DNS fallback timeouts and related performance issues + + - Fixed issue where coming out of sleep on some systems could take an + unreasonably long time to connect + + - Fixed InvalidPacket error in logs that indicated the client needed to reset + its connection + + + + + + **Known issues** + + - Device posture check results stop sending after 24 hours (or possibly even + sooner) +version: 2022.9.213.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2022.9.213.1 +packageSize: 104009728 +releaseDate: 2022-09-22T18:18:54.710Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2022.9.266.1.yaml b/src/content/warp-releases/windows/beta/2022.9.266.1.yaml new file mode 100644 index 000000000000000..3906db4dffa638e --- /dev/null +++ b/src/content/warp-releases/windows/beta/2022.9.266.1.yaml @@ -0,0 +1,18 @@ +releaseNotes: >- + This release primarily contains bug fixes for beta release 2022.9.213.1 + + **Notable updates** + + - Fixed issue where WARP DNS servers stay set after Windows update, causing no + network for user + - Fixed in-app update not showing download progress bar. + + **Known issues** + + - Device posture check results stop sending after 24 hours (or possibly even + sooner) +version: 2022.9.266.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2022.9.266.1 +packageSize: 103993344 +releaseDate: 2022-09-23T21:15:57.753Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2022.9.388.1.yaml b/src/content/warp-releases/windows/beta/2022.9.388.1.yaml new file mode 100644 index 000000000000000..31c1c9c8b52808a --- /dev/null +++ b/src/content/warp-releases/windows/beta/2022.9.388.1.yaml @@ -0,0 +1,19 @@ +releaseNotes: >- + This release primarily contains bug fixes for beta release 2022.9.266.1 and + matches GA 2022.9.383.0 + + **Notable updates** + + - Fixes 10 second delay for on some connections for Comcast users + + - Fixes error code 2755 during installation via msi + + **Known issues** + + - Device posture check results stop sending after 24 hours (or possibly even + sooner) +version: 2022.9.388.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2022.9.388.1 +packageSize: 103960576 +releaseDate: 2022-09-30T19:44:41.367Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2022.9.586.1.yaml b/src/content/warp-releases/windows/beta/2022.9.586.1.yaml new file mode 100644 index 000000000000000..6b043b8cefe2917 --- /dev/null +++ b/src/content/warp-releases/windows/beta/2022.9.586.1.yaml @@ -0,0 +1,14 @@ +releaseNotes: |- + This release contains hotfixes for 2022.9.388.1. + + **Notable updates** + - Fix issue where device posture check results stopped sending after 24 hours + (or possibly even sooner) + + **Known issues** + - No known issues +version: 2022.9.586.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2022.9.586.1 +packageSize: 103960576 +releaseDate: 2022-10-12T00:36:26.458Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2023.1.383.1.yaml b/src/content/warp-releases/windows/beta/2023.1.383.1.yaml new file mode 100644 index 000000000000000..e2237b8a72282b0 --- /dev/null +++ b/src/content/warp-releases/windows/beta/2023.1.383.1.yaml @@ -0,0 +1,26 @@ +releaseNotes: >- + This release primarily contains bug fixes and improvements, no new features + are included in this release. + + **Notable updates** + + - Improve timeouts with broken CNAME records that could result in very long + load times for certain apps (Office 365 apps, etc.) + + - Fixed issue where systems with significantly out of sync system clocks could + fail registration + + - Fixed a number of GUI crash bugs that would cause the app to disappear from + the system tray + + - Fixed issue that could cause the application to be hidden behind the Windows + system tray expanded list UI + + **Known issues** + + - No known issues +version: 2023.1.383.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2023.1.383.1 +packageSize: 105414656 +releaseDate: 2023-02-02T00:33:33.817Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2023.1.625.1.yaml b/src/content/warp-releases/windows/beta/2023.1.625.1.yaml new file mode 100644 index 000000000000000..a6c4a28d7e4d1ce --- /dev/null +++ b/src/content/warp-releases/windows/beta/2023.1.625.1.yaml @@ -0,0 +1,43 @@ +releaseNotes: >- + This release contains bug fixes and a major new architecture for how traffic + is handled on Windows from the previous beta release. Please read entire + release notes. + + *Major change* + + WARP On Windows will now use a new tunnel architecture that more closely + matches our macOS and Linux implementations. WARP will now create a virtual + interface that is visible in your network connections and directly modify the + routing table to control where traffic flows. Please thoroughly test this + release before deploying in your organization. + + **Notable updates** + + - Added support for Windows Subsystem for Linux 2 (WSL2). + + - Improved compatibility with apps like Firefox and Zoom that use custom MTU + settings. + + - Fixed issue where warp-diag could run traceroutes longer than expected. + Traceroute tests will now timeout after 65 seconds. + + - Improved UI states for WARP client. + + - Improved user validation logic during manual ZT login. + + - Fixed issue where the WARP service can crash and lose connectivity. + + - Fixed issue where manually logging into a ZT org could fail if certificate + authentication was used. + + + + **Known issues** + + - If you encounter issues during upgrade/install, please restart your Windows + device (this issue will be resolved in a future release). +version: 2023.1.625.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2023.1.625.1 +packageSize: 106024960 +releaseDate: 2023-02-22T20:38:31.340Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2023.10.258.1.yaml b/src/content/warp-releases/windows/beta/2023.10.258.1.yaml new file mode 100644 index 000000000000000..6527cdfc14bc6aa --- /dev/null +++ b/src/content/warp-releases/windows/beta/2023.10.258.1.yaml @@ -0,0 +1,27 @@ +releaseNotes: >- + This releases contains a fairly major refactor of the warp-cli interface. + While all existing commands are backwards compatible for at least the next 6 + months, please take a moment to look through the new warp-cli and let us know + what you think + + **Notable updates** + + - Added ability to run pcaps from warp-cli to make debugging easier + + - Modified warp-cli commands to be more consistent and readable + + - Fixed an issue where tunnel could become unresponsive a few minutes after + coming out of sleep or after changing networks + + - Fixed an issue where the Cloudflare WARP interface could not properly + initialize when coming out of sleep when running alongside some 3rd party + legacy VPNs + + **Known issues** + + - No known issues +version: 2023.10.258.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2023.10.258.1 +packageSize: 112975872 +releaseDate: 2023-11-06T19:36:27.336Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2023.11.37.1.yaml b/src/content/warp-releases/windows/beta/2023.11.37.1.yaml new file mode 100644 index 000000000000000..079053fb605cbb4 --- /dev/null +++ b/src/content/warp-releases/windows/beta/2023.11.37.1.yaml @@ -0,0 +1,31 @@ +releaseNotes: >- + This releases contains bug fixes only, no new functionality has been + introduced + + **Notable updates** + + - Fixed an issue where multicast traffic was being sent down the tunnel when + it shouldn't be. Traffic to 224.0.0.0/4 is now always excluded from the tunnel + + - Fixed an issue where we would not properly restore DNS servers to the + current DHCP value but instead restoring to last DHCP value saved. This caused + issues going between multiple different networks (going from home to work or a + hotel with a completely different network) + + - Fixed an issue for users with domain based split tunnel rules that could + prevent access to certain sites due to Windows automatically adding/deleting + broadcast routes in related IP ranges. This error resulted in users not being + able to visit sites with IP addresses in the ranges impacted by the domain + based split tunnel rule + + - Fixed an issue where we were incorrectly setting the default local domain + fallback server value for entries without an explicit DNS server set + + **Known issues** + + - No known issues +version: 2023.11.37.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2023.11.37.1 +packageSize: 112992256 +releaseDate: 2023-11-14T22:03:08.191Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2023.12.289.1.yaml b/src/content/warp-releases/windows/beta/2023.12.289.1.yaml new file mode 100644 index 000000000000000..d35fde844af8321 --- /dev/null +++ b/src/content/warp-releases/windows/beta/2023.12.289.1.yaml @@ -0,0 +1,34 @@ +releaseNotes: >- + This release contains exciting new features and bug fixes for both DEX and + notifications. Please take time over the next few weeks to play with the new + functionality and let us know what you think on both the community forum and + through your account teams. + + **Notable updates** + + - Added ability for Client to display Gateway NETWORK and HTTP block + notifications to the user (feature to be available in dash in the coming + week). + + - Added ability for administrators to specify multiple configurations in MDM + files that users can toggle between. This allows users to more easily switch + between production and test environments or China customers to switch between + their override endpoints within the UI. + + - Improved existing re-auth notifications to be more visible and time + sensitive. + + - Fixed an issue where DEX tests would run before the client was fully + connected. + + **Known issues** + + - The new `display_name` MDM parameter that is part of the multiple + configurations feature is not correctly working. For this release the name + visible in the UI will be the organization value. A future beta release will + correct this; it is safe to include this parameter in updated MDM files now. +version: 2023.12.289.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2023.12.289.1 +packageSize: 113917952 +releaseDate: 2023-12-16T03:15:55.788Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2023.12.290.1.yaml b/src/content/warp-releases/windows/beta/2023.12.290.1.yaml new file mode 100644 index 000000000000000..7aed405f35e87da --- /dev/null +++ b/src/content/warp-releases/windows/beta/2023.12.290.1.yaml @@ -0,0 +1,36 @@ +releaseNotes: >- + This release contains exciting new features and bug fixes for both DEX and + notifications. Please take time over the next few weeks to play with the new + functionality and let us know what you think on both the community forum and + through your account teams. + + **Notable updates** + + - Added ability for Client to display Gateway NETWORK and HTTP block + notifications to the user (feature to be available in dash in the coming + week). + + - Added ability for administrators to specify multiple configurations in MDM + files that users can toggle between. This allows users to more easily switch + between production and test environments or China customers to switch between + their override endpoints within the UI. + + - Improved existing re-auth notifications to be more visible and time + sensitive. + + - Fixed an issue where DEX tests would run before the client was fully + connected. + + + + **Known issues** + + - The new `display_name` MDM parameter that is part of the multiple + configurations feature is not correctly working. For this release the name + visible in the UI will be the organization value. A future beta release will + correct this; it is safe to include this parameter in updated MDM files now. +version: 2023.12.290.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2023.12.290.1 +packageSize: 113917952 +releaseDate: 2023-12-16T03:20:49.734Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2023.3.142.1.yaml b/src/content/warp-releases/windows/beta/2023.3.142.1.yaml new file mode 100644 index 000000000000000..2502fb95bc845c5 --- /dev/null +++ b/src/content/warp-releases/windows/beta/2023.3.142.1.yaml @@ -0,0 +1,52 @@ +releaseNotes: >- + This release contains bug fixes and new features from the previous beta + release. With this release we are now feature complete for the quarter and + will begin focusing exclusively on QA and bug fixes only. We encourage + customers to test with this version and report issues ASAP. + + *Major change* + + As a reminder, starting with the previous beta 2023.1.625.1, WARP On Windows + now uses a new tunnel architecture that more closely matches our macOS and + Linux implementations. WARP will now create a virtual interface that is + visible in your network connections and directly modify the routing table to + control where traffic flows. Please thoroughly test this release before + deploying in your organization. + + **Notable updates** + + - Added support for Zero Trust Digital Experience Monitoring. More information + coming soon for customers who signed up for the beta + + - Added new log message to help customers and support identify when a users + local network IP space overlaps with a remote network configured to go through + the tunnel + + - Added support for Zero Trust customers to opt in to having the WARP Client + install the root CA for your organization if TLS Decryption is enabled. A new + toggle switch will appear in the dashboard under Settings->WARP Client soon to + enable this + + - Modified behavior of Managed networks tests to always happen outside the + tunnel as per original intent + + - Fixed issue introduced in previous beta, and called out in known issues, + where users may need to restart or perform a clean install after upgrade to + the new release + + - Fixed issue where GUI could miss a status message from the WARP Service + resulting in the wrong state being reflected to users. An example is the GUI + could show `Connecting` even though device was `Connected` + + **Known issues** + + - Latest Windows client may take a few seconds to change to update the + connection status after initial registration. + + - If you encounter issues during upgrade/install, please restart your Windows + device (this issue will be resolved in a future release). +version: 2023.3.142.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2023.3.142.1 +packageSize: 106692608 +releaseDate: 2023-03-13T22:14:39.826Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2023.3.185.1.yaml b/src/content/warp-releases/windows/beta/2023.3.185.1.yaml new file mode 100644 index 000000000000000..85be6f50991e61a --- /dev/null +++ b/src/content/warp-releases/windows/beta/2023.3.185.1.yaml @@ -0,0 +1,34 @@ +releaseNotes: >- + This release contains only bug fixes from the previous beta release. + + + As stated in the previous beta notes, we are now feature complete for the + quarter and will begin focusing exclusively on QA and bug fixes only. We + encourage customers to test with this version and report issues ASAP. + + *Major change* + + As a reminder, starting with the previous beta 2023.1.625.1, WARP On Windows + now uses a new tunnel architecture that more closely matches our macOS and + Linux implementations. WARP will now create a virtual interface that is + visible in your network connections and directly modify the routing table to + control where traffic flows. Please thoroughly test this release before + deploying in your organization. + + **Notable updates** + + - Fixed issue introduced in previous beta when there is both an Ethernet and a + Wifi interface present and active the machine + + - Improved logging of application posture checks to understand rationale + behind statuses of application checks (file missing, process not found, etc.) + + **Known issues** + + - Latest Windows client may take a few seconds to change to update the + connection status after initial registration. +version: 2023.3.185.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2023.3.185.1 +packageSize: 106692608 +releaseDate: 2023-03-15T19:57:18.526Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2023.3.266.1.yaml b/src/content/warp-releases/windows/beta/2023.3.266.1.yaml new file mode 100644 index 000000000000000..beaf89a4ab9d16a --- /dev/null +++ b/src/content/warp-releases/windows/beta/2023.3.266.1.yaml @@ -0,0 +1,35 @@ +releaseNotes: >- + This release contains only bug fixes from the previous beta release. + + As stated in the previous beta notes, we are now feature complete for the + quarter and will begin focusing exclusively on QA and bug fixes only. We + encourage customers to test with this version and report issues ASAP. + + *Major change* + + As a reminder, starting with the previous beta 2023.1.625.1, WARP On Windows + now uses a new tunnel architecture that more closely matches our macOS and + Linux implementations. WARP will now create a virtual interface that is + visible in your network connections and directly modify the routing table to + control where traffic flows. Please thoroughly test this release before + deploying in your organization. + + **Notable updates** + + - Fix issue where IPv6 being disabled via the registered wasn't properly + detected + + - Fixed issue introduced in previous beta where client would show unable to + connect briefly before connecting properly + + - Fixed issue when running in local proxy mode where too many log entries were + written + + **Known issues** + + No known issues +version: 2023.3.266.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2023.3.266.1 +packageSize: 106700800 +releaseDate: 2023-03-22T23:15:28.634Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2023.3.387.1.yaml b/src/content/warp-releases/windows/beta/2023.3.387.1.yaml new file mode 100644 index 000000000000000..123fabbf10a5d52 --- /dev/null +++ b/src/content/warp-releases/windows/beta/2023.3.387.1.yaml @@ -0,0 +1,73 @@ +releaseNotes: >- + **Major change** + + WARP On Windows now uses a new tunnel architecture that more closely matches + our macOS and Linux implementations. WARP will now create a virtual interface + that is visible in your network connections and directly modify the routing + table to control where traffic flows. Please thoroughly test this release + before deploying in your organization. + + **Notable updates** + + - Added support for Windows Subsystem for Linux 2 (WSL2) + + - Added support for Zero Trust Digital Experience Monitoring + + - Added new log message to help customers and support identify when a users + local network IP space overlaps with a remote network configured to go through + the tunnel + + - Added support for Zero Trust customers to opt in to having the WARP Client + install the root CA for your organization if TLS Decryption is enabled. + + - Improve timeouts with broken CNAME records that could result in very long + load times for certain apps (Office 365 apps, etc.) + + - Improved compatibility with apps like Firefox and Zoom that use custom MTU + settings + + - Improved UI states for WARP client + + - Improved user validation logic during manual ZT login + + - Improved logging of application posture checks to understand rationale + behind statuses of application checks (file missing, process not found, etc.) + + - Modified behavior of Managed networks tests to always happen outside the + tunnel as per original intent + + - Fixed issue where systems with significantly out of sync system clocks could + fail registration + + - Fixed a number of GUI crash bugs that would cause the app to disappear from + the system tray + + - Fixed issue that could cause the application to be hidden behind the Windows + system tray expanded list UI + + - Fixed issue where warp-diag could run traceroutes longer than expected. + Traceroute tests will now timeout after 65 seconds. + + - Fixed issue where the WARP service can crash and lose connectivity + + - Fixed issue where manually logging into a ZT org could fail if certificate + authentication was used + + - Fixed issue where GUI could miss a status message from the WARP Service + resulting in the wrong state being reflected to users. An example is the GUI + could show `Connecting` even though device was `Connected` + + - Fix issue where IPv6 being disabled via the registered wasn't properly + detected + + - Fixed issue when running in local proxy mode where too many log entries were + written + + **Known issues** + + No known issues +version: 2023.3.387.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2023.3.387.1 +packageSize: 106668032 +releaseDate: 2023-04-05T17:01:15.794Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2023.5.170.1.yaml b/src/content/warp-releases/windows/beta/2023.5.170.1.yaml new file mode 100644 index 000000000000000..ffe491e8917c392 --- /dev/null +++ b/src/content/warp-releases/windows/beta/2023.5.170.1.yaml @@ -0,0 +1,41 @@ +releaseNotes: >- + This release contains reliability improvements and general bug fixes. No new + features are introduced with this release. + + **Notable updates** + + - Added more status messages to UI when client is unable to connect + + - Improved performance of client when in Proxy Only mode + + - Modified `warp-cli settings` to now show if setting came from local (mdm) or + network (warp settings profile) policy to make debugging issues easier + + - Fixed issue that could result in latency increases every few minutes + + - FIxed issue where UI would be in wrong state after entering an admin + override code + + - Fixed an issue with re-authentication policies that could result in the + browser loading a broken url + + - Fixed a minor memory leak every time we did a DNS query + + - Fixed issue when service token information was removed from mdm.xml the + client would not prompt for user authentication as expected + + - Fixed issue where localhost DNS proxy could not be set properly in certain + VPN and VM configuration + + + + + + **Known issues** + + - No known issues +version: 2023.5.170.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2023.5.170.1 +packageSize: 108167168 +releaseDate: 2023-05-11T23:21:23.059Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2023.5.587.1.yaml b/src/content/warp-releases/windows/beta/2023.5.587.1.yaml new file mode 100644 index 000000000000000..e1454c6cacc7f7d --- /dev/null +++ b/src/content/warp-releases/windows/beta/2023.5.587.1.yaml @@ -0,0 +1,40 @@ +releaseNotes: >- + This release contains bug fixes and support for a new operating mode called + "Secure Web Gateway without DNS Filtering". This new mode disabled all DNS + functionality of the client while still retaining things such as the WARP + Tunnel, DEX and posture support. + + **Notable updates** + + - Add support for "SWG without DNS Filtering" mode. All DNS functionality from + the WARP client is disabled. + + - Improve performance of domain-based split tunneling when the IP was already + split tunneled (seen frequently with Zoom domains and IPs being used) + + - Fixed localization issues in en-MX UI that caused longer strings to get + clipped + + - Fixed issue with certain tools like nslookup that was introduced in previous + beta where DNS could appear broken + + - Fixed issue where WARP Client wasn't properly detecting if IPv6 was disabled + via `HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters` + + - Fixed issue where onboarding=false mdm flag did not work if that GUI app + started before the service + + + + + + **Known issues** + + - If certain deployment parameters (e.g. auth id, secret, etc.) are removed + from the MDM file, the GUI will display a registration error. To remediate + this, the user will be prompted to login to the Zero Trust organization again. +version: 2023.5.587.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2023.5.587.1 +packageSize: 110772224 +releaseDate: 2023-06-12T16:07:05.431Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2023.7.243.1.yaml b/src/content/warp-releases/windows/beta/2023.7.243.1.yaml new file mode 100644 index 000000000000000..406e3b5c698627a --- /dev/null +++ b/src/content/warp-releases/windows/beta/2023.7.243.1.yaml @@ -0,0 +1,27 @@ +releaseNotes: >- + This is a critical hotfix for organizations that have long running deployment + cycles. The certificate used to sign and validate our installer will expire on + August 9th 2023 and may cause windows SmartScreen warnings on installation. + + This update contains no new features. + + **Notable updates** + + - Fixed issue where DoH requests could take too long to timeout causes DNS + reliability issues + + + + **Known issues** + + - Customers may experience a DPC_WATCHDOG_VIOLATION Blue Screen when + connecting. This error was introduced with the 2023.3 GA release and happens + more frequently with larger split tunnel configurations, especially on more + resource constrained machines. We are actively working on a fix. Until then we + recommend staying on 2022.12 GA release OR reducing your split tunnel + configuration if possible. +version: 2023.7.243.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2023.7.243.1 +packageSize: 111558656 +releaseDate: 2023-07-27T03:25:02.078Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2023.7.344.1.yaml b/src/content/warp-releases/windows/beta/2023.7.344.1.yaml new file mode 100644 index 000000000000000..02b9b93fdf29f05 --- /dev/null +++ b/src/content/warp-releases/windows/beta/2023.7.344.1.yaml @@ -0,0 +1,49 @@ +releaseNotes: >- + In addition to general bug fixes this release contains two new exciting + features. + + + The first we hope will improve diagnosing connectivity issues by bubbling up + common errors to the GUI so admins no longer have to dig through logs to find + a conflicting app or configuration issue. + + + The second is a new Zero Trust posture support: checking for the presence of a + certificate. You can get started today from your dashboard. + + + **Notable updates** + + - Added connectivity error reasons to the UI + + - Added new posture type: Check for presence of a certificate + + - Fixed an issue with DEX traceroutes tests where not all hops were correctly + reported + + - Fixed an issue where the WARP background process could crash under extreme + load + + - Fixed an issue where the Windows GUI could spam the Windows System Eventlog + with unhelpful error messages + + - Fixed an issue where managed network detection could fail when firewall + rules were not correctly removed under certain disconnect scenarios + + - Fixed a timing issue exposed during previous beta where the client could get + stuck on Connecting state. This mostly happens coming out of sleep or + switching teams + + **Known issues** + + - Customers may experience a DPC_WATCHDOG_VIOLATION Blue Screen when + connecting. This error was introduced with the 2023.3 GA release and happens + more frequently with larger split tunnel configurations, especially on more + resource constrained machines. We are actively working on a fix. Until then we + recommend staying on 2022.12 GA release OR reducing your split tunnel + configuration if possible. +version: 2023.7.344.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2023.7.344.1 +packageSize: 111190016 +releaseDate: 2023-08-08T23:25:54.720Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2023.7.77.1.yaml b/src/content/warp-releases/windows/beta/2023.7.77.1.yaml new file mode 100644 index 000000000000000..1e36b7e123742a3 --- /dev/null +++ b/src/content/warp-releases/windows/beta/2023.7.77.1.yaml @@ -0,0 +1,34 @@ +releaseNotes: >- + This release contains reliability improvements and general bug fixes. No new + features are introduced with this release. + + **Notable updates** + + - Added support for IPv6 DEX Traceroute tests + + - Improved reliability and efficiency in configuring split tunnel rules. Most + `error petting the dog` errors should now be gone and organizations with large + split tunnel configuration should see reliability improvements + + - Fixed issue where DEX tests would not properly run immediately after a + device came out of sleep + + - Fixed issue where DEX tests will all execute at the same time causing + performance issues for accounts with a large number of tests configured + + - Fixed issue where DNS status would flap between Connected / Disconnect in + Connectivity panel + + **Known issues** + + - Customers may experience a DPC_WATCHDOG_VIOLATION Blue Screen when + connecting. This error was introduced with the 2023.3 GA release and happens + more frequently with larger split tunnel configurations, especially on more + resource constrained machines. We are actively working on a fix. Until then we + recommend staying on 2022.12 GA release OR reducing your split tunnel + configuration if possible. +version: 2023.7.77.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2023.7.77.1 +packageSize: 111443968 +releaseDate: 2023-07-14T23:12:43.705Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2023.8.296.1.yaml b/src/content/warp-releases/windows/beta/2023.8.296.1.yaml new file mode 100644 index 000000000000000..537c1debc6b4a9b --- /dev/null +++ b/src/content/warp-releases/windows/beta/2023.8.296.1.yaml @@ -0,0 +1,27 @@ +releaseNotes: >- + This release contains reliability improvements and general bug fixes. + + **Notable updates** + + - Fixed an issue that was causing Windows BSOD (DPC_WATCHDOG_VIOLATION) + + - Fixed an issue where DNS could temporarily fail when DHCP updates were + processed + + - Fixed an issue where Learn More links on "unable to connect" errors in the + UI were pointing to the wrong place + + - Fixed an issue on initial device registration that could sometimes cause it + to fail and try again + + - Fixed an issue where UI could appear in the wrong location when the app + starts + + **Known issues** + + - No known issues +version: 2023.8.296.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2023.8.296.1 +packageSize: 112414720 +releaseDate: 2023-08-31T21:56:00.717Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2023.9.107.1.yaml b/src/content/warp-releases/windows/beta/2023.9.107.1.yaml new file mode 100644 index 000000000000000..96eae95262d654d --- /dev/null +++ b/src/content/warp-releases/windows/beta/2023.9.107.1.yaml @@ -0,0 +1,30 @@ +releaseNotes: >- + This release contains reliability improvements and general bug fixes. + + **Notable updates** + + - Improved DNS logging to track down an issue where DNS isn't properly applied + coming out of sleep + + - Tweaked DNS behavior to work better with some captive portals (United in + particular) + + - Fixed an issue with Managed Networks where if the managed endpoint + overlapped with your exclude split tunnel configuration, the split tunnel + would only be open for IP traffic destined to the same port as your managed + TLS endpoint + + - Fixed an issue where IPv6 traffic could be incorrectly sent down the tunnel + in exclude mode + + - Fixed an issue introduced in previous beta where the client could be stuck + on connecting forever + + **Known issues** + + - No known issues +version: 2023.9.107.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2023.9.107.1 +packageSize: 112439296 +releaseDate: 2023-09-18T14:12:59.245Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2024.1.7.1.yaml b/src/content/warp-releases/windows/beta/2024.1.7.1.yaml new file mode 100644 index 000000000000000..cc39b6d81001f5f --- /dev/null +++ b/src/content/warp-releases/windows/beta/2024.1.7.1.yaml @@ -0,0 +1,33 @@ +releaseNotes: >- + This release contains exciting new features. Please take time over the next + few weeks to play with the new functionality and let us know what you think on + both the community forum and through your account teams. + + + **Notable updates** + + - Added the ability for administrators to allow their end users to temporarily + obtain access to local network resources in the event their home IP space + overlaps with traffic normally routed through the WARP tunnel. + + - The last beta added the ability for the client to display Gateway Network + and HTTP block notifications to the user. We later added the ability to + configure this feature in the dash; the end-to-end solution is now available. + + - Fixed an issue introduced in the previous beta where the organization name + was case-sensitive (it should not be) + + + + + **Known issues** + + - The new `display_name` MDM parameter that is part of the multiple + configurations feature is not correctly working. For this release, the name + visible in the UI will be the organization value. A future beta release will + correct this; it is safe to include this parameter in updated MDM files now +version: 2024.1.7.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2024.1.7.1 +packageSize: 113909760 +releaseDate: 2024-01-03T21:27:24.407Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2024.10.279.1.yaml b/src/content/warp-releases/windows/beta/2024.10.279.1.yaml new file mode 100644 index 000000000000000..7fd820d15129862 --- /dev/null +++ b/src/content/warp-releases/windows/beta/2024.10.279.1.yaml @@ -0,0 +1,20 @@ +releaseNotes: | + This release contains minor fixes and improvements. + + **Changes and improvements:** + - Fixed an issue where SSH sessions and other application connections over TCP or UDP could be dropped when using MASQUE and the device's primary network interface changed. + - Fixed an issue to ensure the managed certificate is installed in the trust store if not already there. + + **Known issues:** + - DNS resolution may be broken when the following condition are all true: + - WARP is in Secure Web Gateway without DNS filtering (tunnel-only) mode. + - A custom DNS server address is configured on the primary network adapter. + - The custom DNS server address on the primary network adapter is changed while WARP is connected. + + To work around this issue, please reconnect the WARP client by toggling off and back on. + +version: 2024.10.279.1 +releaseDate: 2024-10-22T15:54:53.014Z +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2024.10.279.1 +packageSize: 122912768 +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2024.10.537.1.yaml b/src/content/warp-releases/windows/beta/2024.10.537.1.yaml new file mode 100644 index 000000000000000..8c5d3cd9cfdfe5f --- /dev/null +++ b/src/content/warp-releases/windows/beta/2024.10.537.1.yaml @@ -0,0 +1,28 @@ +releaseNotes: | + This release contains an exciting new feature along with reliability improvements and general bug fixes. Please take time over the next few weeks to play with the new functionality and let us know what you think on both the community forum and through your account teams. + + + **New features:** + - Added the ability for administrators to initiate remote packet capture (PCAP) and warp-diag collection + + **Changes and improvements:** + - Improved reliability of connection establishment logic under degraded network conditions + - Improved captive portal detection behavior by forcing captive portal checks outside the tunnel + - Allow the ability to configure tunnel protocol for consumer registrations + - Fixed an issue with the WARP client becoming unresponsive during startup + - Extended diagnostics collection time in warp-diag to ensure logs are captured reliably + + + **Known issues:** + - DNS resolution may be broken when the following condition are all true: + - WARP is in Secure Web Gateway without DNS filtering (tunnel-only) mode. + - A custom DNS server address is configured on the primary network adapter. + - The custom DNS server address on the primary network adapter is changed while WARP is connected. + + To work around this issue, please reconnect the WARP client by toggling off and back on. + +version: 2024.10.537.1 +releaseDate: 2024-11-05T19:51:27.779Z +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2024.10.537.1 +packageSize: 123584512 +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2024.11.688.1.yaml b/src/content/warp-releases/windows/beta/2024.11.688.1.yaml new file mode 100644 index 000000000000000..27a7eeb8970e558 --- /dev/null +++ b/src/content/warp-releases/windows/beta/2024.11.688.1.yaml @@ -0,0 +1,30 @@ +releaseNotes: | + This release contains minor fixes and improvements. + + **Changes and improvements:** + - Consumers can now set the tunnel protocol using "warp-cli tunnel protocol set ". + - Extended diagnostics collection time in warp-diag to ensure logs are captured reliably. + - Improved captive portal support by disabling the firewall during captive portal login flows. + - Improved captive portal detection on certain public networks. + - Improved reconnection speed when a Cloudflare server is in a degraded state. + - Fixed an issue where WARP may fail to remove certificates from the user store in device information only mode. + - Ensured at most one powershell instance is opened when fetching the device serial number for posture checks. + - Fixed an issue to prevent the daemon from following Windows junctions created by non-admin users that could be used to delete files as SYSTEM user and potentially gain SYSTEM user privileges. + - Improved reliability of connection establishment logic under degraded network conditions. + - Fixed an issue that caused high memory usage when viewing connection statistics for extended periods of time. + - Improved WARP connectivity in environments with virtual interfaces from VirtualBox, VMware, and similar tools. + - Reduced connectivity interruptions on WireGuard include split tunnel configurations. + + **Known issues:** + - DNS resolution may be broken when the following conditions are all true: + - WARP is in Secure Web Gateway without DNS filtering (tunnel-only) mode. + - A custom DNS server address is configured on the primary network adapter. + - The custom DNS server address on the primary network adapter is changed while WARP is connected. + + To work around this issue, please reconnect the WARP client by toggling off and back on. + +version: 2024.11.688.1 +releaseDate: 2024-12-06T00:15:25.077Z +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2024.11.688.1 +packageSize: 126074880 +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2024.12.326.1.yaml b/src/content/warp-releases/windows/beta/2024.12.326.1.yaml new file mode 100644 index 000000000000000..9d35b9278e269bd --- /dev/null +++ b/src/content/warp-releases/windows/beta/2024.12.326.1.yaml @@ -0,0 +1,20 @@ +releaseNotes: | + This release contains minor fixes and improvements. + + **Changes and improvements:** + - Fixed connectivity issues switching between managed network profiles with different configured protocols. + - Added support for multiple users on shared Windows 10 and Windows 11 devices. Once a user completes the Windows login, all traffic to Cloudflare will be attributed to the currently active Windows user account. Contact your Customer Success Manager to request participation in this beta. + + **Known issues:** + - DNS resolution may be broken when the following conditions are all true: + - WARP is in Secure Web Gateway without DNS filtering (tunnel-only) mode. + - A custom DNS server address is configured on the primary network adapter. + - The custom DNS server address on the primary network adapter is changed while WARP is connected. + + To work around this issue, reconnect the WARP client by toggling off and back on. + +version: 2024.12.326.1 +releaseDate: 2024-12-13T18:48:56.668Z +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2024.12.326.1 +packageSize: 125767680 +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2024.3.237.1.yaml b/src/content/warp-releases/windows/beta/2024.3.237.1.yaml new file mode 100644 index 000000000000000..9e510eef03c5176 --- /dev/null +++ b/src/content/warp-releases/windows/beta/2024.3.237.1.yaml @@ -0,0 +1,37 @@ +releaseNotes: >- + This release contains no new features and is focused exclusively on + improvements. + + + **Notable updates** + + - Windows client downloads will now contain version numbers in the file name + to allow easy identification. + + - Enabled re-authentication and other notifications to always be shown + (without sound) regardless of Windows Focus Assist settings. + + - Suppressed the GUI certificate error message "Limited connectivity: A + certificate missing; please contact your administrator" for a scenario where + it was not needed. + + - Improved the re-connection logic to minimize impact to existing tunneled TCP + sessions. + + - Corrected an issue where the DNS server information was being improperly + persisted across network changes. + + - Increased the data collected by warp-diag to improve debugging capabilities. + + + **Known issues** + + - When `Install CA to system certificate store` is enabled, the certificate is + not always properly left behind in + `%ProgramData%\Cloudflare\installed_cert.pem`. This issue will be fixed in a + future release. +version: 2024.3.237.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2024.3.237.1 +packageSize: 116310016 +releaseDate: 2024-03-22T17:08:06.556Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2024.5.310.1.yaml b/src/content/warp-releases/windows/beta/2024.5.310.1.yaml new file mode 100644 index 000000000000000..f1cb9530c86eb6b --- /dev/null +++ b/src/content/warp-releases/windows/beta/2024.5.310.1.yaml @@ -0,0 +1,34 @@ +releaseNotes: >- + This is a release focused on fixes and improvements. + + + **Notable updates** + + - Added a new Unable to Connect message to the UI to help in troubleshooting. + + - In the upgrade window, a change was made to use international date formats + to resolve an issue with localization. + + - Made a change to ensure DEX tests are not running when the tunnel is not up + due to the device going to or waking from sleep. This is specific to devices + using the S3 power model. + + - Fixed a known issue where the certificate was not always properly left + behind in `%ProgramData%\Cloudflare\installed_cert.pem`. + + - Fixed an issue where ICMPv6 Neighbor Solicitation messages were being + incorrectly sent on the WARP tunnel. + + + **Known issues** + + - If a user has an MDM file configured to support multiple profiles (for the + switch configurations feature), and then changes to an MDM file configured for + a single profile, the WARP client may not connect. The workaround is to use + the 'warp-cli registration delete' command to clear the registration, and then + re-register the client. +version: 2024.5.310.1 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2024.5.310.1 +packageSize: 116621312 +releaseDate: 2024-05-22T15:01:49.271Z +platformName: Windows diff --git a/src/content/warp-releases/windows/beta/2024.8.308.1.yaml b/src/content/warp-releases/windows/beta/2024.8.308.1.yaml new file mode 100644 index 000000000000000..ea6d9cf94292691 --- /dev/null +++ b/src/content/warp-releases/windows/beta/2024.8.308.1.yaml @@ -0,0 +1,29 @@ +releaseNotes: |- + This is a release focused on fixes and improvements. + + **Changes and improvements:** + - Added the ability to customize PCAP options in the warp-cli. + - Added a list of installed applications in warp-diag. + - Added a summary of warp-dex traceroute results in its JSON output. + - Improved the performance of firewall operations when enforcing split tunnel configuration. + - Reduced time it takes for a WARP client update to complete. + - Fixed issues where incorrect DNS server addresses were being applied following reboots and network changes. Any incorrect static entries set by previous WARP versions must be manually reverted. + - Fixed a Known Issue which required users to re-register when an older single configuration MDM file was deployed after deploying the newer, multiple configuration format. + - Deprecated warp-cli commands have been removed. If you have any workflows that use the deprecated commands, please update to the new commands where necessary. + + **Known issues:** + - Using MASQUE as the tunnel protocol may be incompatible if your organization has either of the following conditions: + - Magic WAN is enabled but not the latest packet flow path for WARP. Please check migration status with your account team. + - Regional Services enabled. + + - DNS resolution may be broken when the following condition are all true: + - WARP is in Secure Web Gateway without DNS filtering (tunnel-only) mode. + - A custom DNS server address is configured on the primary network adapter. + - The custom DNS server address on the primary network adapter is changed while WARP is connected. + To work around this issue, please reconnect the WARP client by toggling off and back on. + +version: 2024.8.308.1 +releaseDate: 2024-08-26T17:08:14.697Z +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2024.8.308.1 +packageSize: 121303040 +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/1.2.2544.0.yaml b/src/content/warp-releases/windows/ga/1.2.2544.0.yaml new file mode 100644 index 000000000000000..182a6659934801d --- /dev/null +++ b/src/content/warp-releases/windows/ga/1.2.2544.0.yaml @@ -0,0 +1,26 @@ +releaseNotes: >- + This is the latest release for Windows that addresses many issues reported by + users. + + + **Notable improvements in this release:** + + + - More specific error messages when configuring a license + + - Fixed potential vulnerability with Windows Service component + + - Fixed bug configuring custom gateway with managed Teams clients + + - Fixed issue with incorrect UI after logging out of Teams + + - Fixed issue where UI would not respond correctly to monitor DPI changes + + - Fixed various issues with DNS resolution + + - Other minor performance and bug fixes +version: 1.2.2544.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/1.2.2544.0 +packageSize: 80068608 +releaseDate: 2020-11-17T16:57:10.397Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/1.2.2834.0.yaml b/src/content/warp-releases/windows/ga/1.2.2834.0.yaml new file mode 100644 index 000000000000000..3c5acce00a1833b --- /dev/null +++ b/src/content/warp-releases/windows/ga/1.2.2834.0.yaml @@ -0,0 +1,30 @@ +releaseNotes: |- + This release contains some minor improvements and fixes from the last release. + + **Notable updates** + + - Changes to UI based on feedback + - Cloudflare for Teams split tunnel support + - Improved connectivity checks and stabilization. Please let us know if you see any issues connecting to WARP. + - AT&T Cloudflare for Teams users should be able reliably connect now. This was a backend change but noting here for users who experiences the issue + - Many localization fixes + - Added localization for the following languages: EG, DE, ES, FR, ID, IT, JP, KR, NL, PL, BR, RU, TR, CN, TW. If you are native speaker please help us by providing feedback on translations! + - Updated UI throughout the product + - Added version number of file properties of .msi so you can more easily see the version + - Better error handling when too many devices are added to existing WARP+ License + - Improve waking from sleep connectivity + - Fixed: Connection timeout issue reported by some users + - Fixed: Settings Menu does not update after switching OS between light & dark modes + - Fixed: Home window layout on some languages + + **Known issues** + + - You are unable to subscribe to WARP+ via the Desktop apps. You must subscribe first on your mobile device and then copy/paste your license key into the Accounts page on desktop + - To opt-out of the beta please uninstall via the instructions here: https://developers.cloudflare.com/warp-client/warp-for-everyone/setting-up/windows#how-to-remove-application and install from from the link here: https://developers.cloudflare.com/warp-client/warp-for-everyone/setting-up/requirements#windows + + For a complete list of known issues please visit https://developers.cloudflare.com/warpclient/known-issues-and-faq +version: 1.2.2834.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/1.2.2834.0 +packageSize: 78643200 +releaseDate: 2020-12-31T00:30:25.057Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/1.2.2866.0.yaml b/src/content/warp-releases/windows/ga/1.2.2866.0.yaml new file mode 100644 index 000000000000000..ffc249e359493b6 --- /dev/null +++ b/src/content/warp-releases/windows/ga/1.2.2866.0.yaml @@ -0,0 +1,18 @@ +releaseNotes: |- + This release contains some minor improvements and fixes from the last release. + + **Notable updates** + + - Fixed an issue where you would incorrectly recieve an "SSL Certificate Missing" error message when you had trouble connecting to WARP + + **Known issues** + + - You are unable to subscribe to WARP+ via the Desktop apps. You must subscribe first on your mobile device and then copy/paste your license key into the Accounts page on desktop + - To opt-out of the beta please uninstall via the instructions here: https://developers.cloudflare.com/warp-client/warp-for-everyone/setting-up/windows#how-to-remove-application and install from from the link here: https://developers.cloudflare.com/warp-client/warp-for-everyone/setting-up/requirements#windows + + For a complete list of known issues please visit https://developers.cloudflare.com/warpclient/known-issues-and-faq +version: 1.2.2866.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/1.2.2866.0 +packageSize: 78401536 +releaseDate: 2021-01-06T23:07:55.956Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/1.3.184.0.yaml b/src/content/warp-releases/windows/ga/1.3.184.0.yaml new file mode 100644 index 000000000000000..f1aa11ce3ece258 --- /dev/null +++ b/src/content/warp-releases/windows/ga/1.3.184.0.yaml @@ -0,0 +1,22 @@ +releaseNotes: |- + **Notable updates** + - Fixed DNS issue when Teams Gateway is in use side-by-side with another VPN + - Support for split tunnel and local domain fallback in Cloudflare for Teams + - Improved connection retry logic when coming out of sleep + - Fixed an issue with mdm configs not being applied correctly + - Fixed crashes when in 1.1.1.1 only mode + - Added new onboarding mdm flag to suppress UI during initial client startup when joining a Teams organization + - Fixed UI issues when in a Teams DoH only mode deployment + - Now install Edge Chromium WebView2 runtime for use during Cloudflare for Teams enrollment + + **Known issues** + + - You are unable to subscribe to WARP+ via the Desktop apps. You must subscribe first on your mobile device and then copy/paste your license key into the Accounts page on desktop + - To opt-out of the beta please uninstall via the instructions here: https://developers.cloudflare.com/warp-client/warp-for-everyone/setting-up/windows#how-to-remove-application and install from from the link here: https://developers.cloudflare.com/warp-client/warp-for-everyone/setting-up/requirements#windows + + For a complete list of known issues please visit https://developers.cloudflare.com/warpclient/known-issues-and-faq +version: 1.3.184.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/1.3.184.0 +packageSize: 80990208 +releaseDate: 2021-03-03T23:25:31.540Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/1.4.107.0.yaml b/src/content/warp-releases/windows/ga/1.4.107.0.yaml new file mode 100644 index 000000000000000..4ad27d24c56a653 --- /dev/null +++ b/src/content/warp-releases/windows/ga/1.4.107.0.yaml @@ -0,0 +1,26 @@ +releaseNotes: >- + **Notable updates in this release** + + + - Added two new MDM flags for Cloudflare for Teams deployments. + ***switch_locked*** to lock main switch and ***auto_connect*** to + automatically reconnect tunnel after specified minutes. + + - General bug fixes and improvements. + + + **Known issues** + + + - You are unable to subscribe to WARP+ via the Desktop apps. You must + subscribe first on your mobile device and then copy/paste your license key + into the Accounts page on desktop + + + For a complete list of known issues please visit + https://developers.cloudflare.com/warpclient/known-issues-and-faq +version: 1.4.107.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/1.4.107.0 +packageSize: 81260544 +releaseDate: 2021-04-07T01:22:09.132Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/1.4.25.0.yaml b/src/content/warp-releases/windows/ga/1.4.25.0.yaml new file mode 100644 index 000000000000000..cc429fafcf2bc92 --- /dev/null +++ b/src/content/warp-releases/windows/ga/1.4.25.0.yaml @@ -0,0 +1,19 @@ +releaseNotes: |- + **Notable updates** + - New support for device posture reporting (Teams accounts only) + - New IP exclusion UI so you can now exclude an IP, or IP range from the WARP tunnel + - Fixed: Reconnect DNS when errors are encountered + - Fixed: Gateway users will now see DoH over WARP work correctly + - Other minor bug fixes + + **Known issues** + + - You are unable to subscribe to WARP+ via the Desktop apps. You must subscribe first on your mobile device and then copy/paste your license key into the Accounts page on desktop + - To opt-out of the beta please uninstall via the instructions here: https://developers.cloudflare.com/warp-client/warp-for-everyone/setting-up/windows#how-to-remove-application and install from from the link here: https://developers.cloudflare.com/warp-client/warp-for-everyone/setting-up/requirements#windows + + For a complete list of known issues please visit https://developers.cloudflare.com/warpclient/known-issues-and-faq +version: 1.4.25.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/1.4.25.0 +packageSize: 81084416 +releaseDate: 2021-03-23T01:23:50.274Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/1.4.33.0.yaml b/src/content/warp-releases/windows/ga/1.4.33.0.yaml new file mode 100644 index 000000000000000..27774c5bd0ccc1b --- /dev/null +++ b/src/content/warp-releases/windows/ga/1.4.33.0.yaml @@ -0,0 +1,24 @@ +releaseNotes: |- + **Notable updates in this release** + - This is a hotfix release to address two issues for Teams customers: + - Fixed a rare deployment issue + - Fixed issue with device posture verification of applications + + ***Previous Release (1.4.25.0) Notes*** + - New support for device posture reporting (Teams accounts only) + - New IP exclusion UI so you can now exclude an IP, or IP range from the WARP tunnel + - Fixed: Reconnect DNS when errors are encountered + - DoH/DoT are now routed inside the WARP tunnel + - Other minor bug fixes + + **Known issues** + + - You are unable to subscribe to WARP+ via the Desktop apps. You must subscribe first on your mobile device and then copy/paste your license key into the Accounts page on desktop + - To opt-out of the beta please uninstall via the instructions here: https://developers.cloudflare.com/warp-client/warp-for-everyone/setting-up/windows#how-to-remove-application and install from from the link here: https://developers.cloudflare.com/warp-client/warp-for-everyone/setting-up/requirements#windows + + For a complete list of known issues please visit https://developers.cloudflare.com/warpclient/known-issues-and-faq +version: 1.4.33.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/1.4.33.0 +packageSize: 81084416 +releaseDate: 2021-03-24T18:20:59.127Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/1.5.147.0.yaml b/src/content/warp-releases/windows/ga/1.5.147.0.yaml new file mode 100644 index 000000000000000..227c72c665d2e19 --- /dev/null +++ b/src/content/warp-releases/windows/ga/1.5.147.0.yaml @@ -0,0 +1,30 @@ +releaseNotes: |- + This release contains several new features and improvements. + + **Notable updates in this release** + - Fixed several issues when upgrading Teams clients + - Fixed issue where new/updated MDM configurations were not honored correctly + - Added support for Teams admins to control use of captive portal in their organization + - Enhanced in-app software update window behavior + - Support for detecting and opening captive portal login page when captive portal network is detected. + - Show Excluded IPs UI in Teams mode. + - Added new support for service token-based authentication for managed (MDM) devices + - No longer display "Your connection is no longer private" notifications when client is associated with a Team + - Fixed issue when going between LAN and/or Wi-Fi networks + - Improved accessibility support + - Clients registered with Teams can now view their local device posture status. + - Added new WARP proxy mode for advanced users. See Preferences->Advanced->Configure Proxy Mode for more info. + - Fixed reconnection issue when waking from sleep. + - Fixed issue where users would still be prompted for new updates when deployed via MDM solutions. + - Several other bug fixes and improvements. + + **Known issues** + - You are unable to subscribe to WARP+ via the Desktop apps. You must subscribe first on your mobile device and then copy/paste your license key into the Accounts page on desktop + - To opt-out of the beta please uninstall via the instructions here: https://developers.cloudflare.com/warp-client/warp-for-everyone/setting-up/windows#how-to-remove-application and install from from the link here: https://developers.cloudflare.com/warp-client/warp-for-everyone/setting-up/requirements#windows + + For a complete list of known issues please visit https://developers.cloudflare.com/warpclient/known-issues-and-faq +version: 1.5.147.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/1.5.147.0 +packageSize: 83566592 +releaseDate: 2021-06-04T23:52:20.350Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/1.5.206.0.yaml b/src/content/warp-releases/windows/ga/1.5.206.0.yaml new file mode 100644 index 000000000000000..8621ff0c7c66ecb --- /dev/null +++ b/src/content/warp-releases/windows/ga/1.5.206.0.yaml @@ -0,0 +1,22 @@ +releaseNotes: |- + This release contains several new features and improvements. + + **Notable updates in this release** + + - Significant improvements to DoH reliability and performance. + - Organization name in MDM file is no longer case sensitive. + - Fixed an issue where config changes in Teams Dashboard don't automatically propagate to the client. + - Fixed an issue where MDM file changes were not picked up correctly by client. + - Fixed issues with local domain fallback not working in all cases. + - Several other bug fixes and improvements. + + **Known issues** + - You are unable to subscribe to WARP+ via the Desktop apps. You must subscribe first on your mobile device and then copy/paste your license key into the Accounts page on desktop + - To opt-out of the beta please uninstall via the instructions here: https://developers.cloudflare.com/warp-client/warp-for-everyone/setting-up/windows#how-to-remove-application and install from from the link here: https://developers.cloudflare.com/warp-client/warp-for-everyone/setting-up/requirements#windows + + For a complete list of known issues please visit https://developers.cloudflare.com/warpclient/known-issues-and-faq +version: 1.5.206.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/1.5.206.0 +packageSize: 84258816 +releaseDate: 2021-06-16T17:40:09.578Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/1.5.295.0.yaml b/src/content/warp-releases/windows/ga/1.5.295.0.yaml new file mode 100644 index 000000000000000..459e8cd46d9b78c --- /dev/null +++ b/src/content/warp-releases/windows/ga/1.5.295.0.yaml @@ -0,0 +1,36 @@ +releaseNotes: >- + This release contains several new features and improvements. + + + **Notable updates in this release** + + + - Add ability for Teams admins to allow users to switch between DoH only and + WARP. + + - Improved stability of DoH resolver. + + - Fixed UI bug with admin override where disconnected message would persist + when it shouldn't. + + - Fixed exception when downloading updates. + + - Added ability to resize DNS logs window. + + - Fixed UI issues when in tablet mode. + + + **Known issues** + + - You are unable to subscribe to WARP+ via the Desktop apps. You must + subscribe first on your mobile device and then copy/paste your license key + into the Accounts page on desktop. + + + For a complete list of known issues please visit + https://developers.cloudflare.com/warpclient/known-issues-and-faq +version: 1.5.295.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/1.5.295.0 +packageSize: 84258816 +releaseDate: 2021-07-01T14:36:19.064Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/1.5.461.0.yaml b/src/content/warp-releases/windows/ga/1.5.461.0.yaml new file mode 100644 index 000000000000000..211d57fd7c70e37 --- /dev/null +++ b/src/content/warp-releases/windows/ga/1.5.461.0.yaml @@ -0,0 +1,35 @@ +releaseNotes: >- + This release contains several new features and improvements. + + + **Notable updates in this release** + + + - Added ability for Teams admins to split tunnel based on hostname + (example.com, sub.example or *.example.com). + + - New posture types for teams admins to check if Domain Joined, Firewall + Enabled or Disk Encrypted. + + - Now install WebView2 before WARP Service starts in case of connectivity + issues. + + - Improved reliability of device registration. + + - Fixed issue where Admin Override button wasn't always visible in client UI. + + + **Known issues** + + - You are unable to subscribe to WARP+ via the Desktop apps. You must + subscribe first on your mobile device and then copy/paste your license key + into the Accounts page on desktop. + + + For a complete list of known issues please visit + https://developers.cloudflare.com/warpclient/known-issues-and-faq +version: 1.5.461.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/1.5.461.0 +packageSize: 85233664 +releaseDate: 2021-07-22T20:03:55.946Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/1.6.28.0.yaml b/src/content/warp-releases/windows/ga/1.6.28.0.yaml new file mode 100644 index 000000000000000..dd89df60012fe78 --- /dev/null +++ b/src/content/warp-releases/windows/ga/1.6.28.0.yaml @@ -0,0 +1,50 @@ +releaseNotes: >- + This release contains new features and improvements from the last release. + + + **Notable updates** + + - Client now supports include only split tunnel rules while in Teams mode. + + - Improved overall reliability of DNS and general connectivity when in Teams + modes. + + - Improved logging and fixed bug where we got incomplete logs from warp-diag. + + - Fixed connectivity issues some users experienced when coming out of sleep. + + - Fixed occasional registration issues when trying to join Teams organization. + + - Fixed issue where clients shows consumer UI when in Teams mode. + + - Fixed issue when joining org with no posture rules. + + - Fixed issue where build over build upgrades could fail. + + - Fixed issue where certain posture checks failed with the default langugage + wasn't english. + + - Fixed issue where AAD/AD was no longer seamlessly authenticating. + + - Fixed issue with Teams enrollment when using JumpCloud (now rely on at least + version 1.0.902.49 of WebView2). + + - Fixed issue where device posture information would remain even after you + left Teams organization. + + - Fixed issues with localhost Proxy mode, is now more robust to network + changes and general bug fixes. + + - Fixed dialog boxes not being correctly modal when launched from Preferences. + + + **Known issues** + + - When auto_connect=0 and switch_locked=false in plist the client no longer + starts tunnel immediately, it must be manually toggled on. This is a bug and + will be fixed in a future release. +version: 1.6.28.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/1.6.28.0 +packageSize: 87371776 +releaseDate: 2021-10-04T20:12:51.028Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/2021.11.155.0.yaml b/src/content/warp-releases/windows/ga/2021.11.155.0.yaml new file mode 100644 index 000000000000000..46ca6aa7dc36cf5 --- /dev/null +++ b/src/content/warp-releases/windows/ga/2021.11.155.0.yaml @@ -0,0 +1,46 @@ +releaseNotes: >- + This release contains new features and improvements from the last release. + + + **Notable updates** + + - Starting with this release our version number scheme has now changed to + YYYY.M.build_number (ex. 2021.11.123). + + - Use timestamps in log file names stored by warp-diag. + + - Added traceroute information to warp-diag for Teams destinations to help + debug connectivity issues. + + - warp-diag now reports status when run from terminal so you can see it + working. + + - warp-diag now allows for --output flag so you can specify where diagnostics + data is stored. + + - Improved general reliability issues by moving DoH requests outside the + tunnel. + + - Improved overall reliability of daemon/service including how it connects to + the GUI (reduce instance of IPC errors). + + - Fixed localhost proxy mode which was broken in last release. + + - Fixed issue where posture checks were not running every 5 minutes like they + should. + + - Fixed issue where DNS sockets could sometimes fail to be released, resulting + in address in use errors. + + - Fixed issue where auto_connect mdm parameter wasn't working correctly when + switch_locked=false. + + - Fixed issue where invalid certificate on device would cause the client to + not connect. + + - Fixed issue where preferences window could be stuck behind other windows. +version: 2021.11.155.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2021.11.155.0 +packageSize: 87826432 +releaseDate: 2021-11-16T22:47:42.652Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/2021.11.276.0.yaml b/src/content/warp-releases/windows/ga/2021.11.276.0.yaml new file mode 100644 index 000000000000000..1f45cc275753967 --- /dev/null +++ b/src/content/warp-releases/windows/ga/2021.11.276.0.yaml @@ -0,0 +1,16 @@ +releaseNotes: >- + This release contains minor bug fixes from the last release. + + + **Notable updates** + + - Fixed issue where warp-diag logs were not included when you used Submit + Feedback through the app + + - Fixed issue in re-connection logic where we would not always try to + re-connect if there was a network change detected +version: 2021.11.276.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2021.11.276.0 +packageSize: 87826432 +releaseDate: 2021-11-29T21:30:45.443Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/2021.12.2.0.yaml b/src/content/warp-releases/windows/ga/2021.12.2.0.yaml new file mode 100644 index 000000000000000..1fef07e34fe8d7e --- /dev/null +++ b/src/content/warp-releases/windows/ga/2021.12.2.0.yaml @@ -0,0 +1,31 @@ +releaseNotes: >- + This release contains new features and improvements from the last release. + + + **Notable updates** + + - With this release you can now specify specific DNS servers to use for + domains in Local Domain fallback in the Teams Dashboard. + + - Added ability for warp-diag to be run from any location (it is now in the + default path). + + - Improved the connectivity check to more frequently and consistently check + for connectivity. + + - Improved reliability of connection between client gui and daemon. + + - Improved localization throughout product. + + - Fixed issue where Split Tunnel UI in Preferences->Advanced of the client did + not correctly show include only routes. + + - Fixed issue where you may not be able to open client UI if preferences was + already open and hidden below other windows. + + - Fixed reliability issues around waking from sleep. +version: 2021.12.2.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2021.12.2.0 +packageSize: 88457216 +releaseDate: 2021-12-10T22:55:24.676Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/2022.10.106.0.yaml b/src/content/warp-releases/windows/ga/2022.10.106.0.yaml new file mode 100644 index 000000000000000..4060b9858605723 --- /dev/null +++ b/src/content/warp-releases/windows/ga/2022.10.106.0.yaml @@ -0,0 +1,26 @@ +releaseNotes: |- + This release primarily contains bug fixes, no new features are included in this release + + **Notable updates** + - Modified installer behavior to now set the following registry key `HKLM\SOFTWARE\POLICIES\MICROSOFT\Windows\NetworkConnectivityStatusIndicator\UseGlobalDNS=1 (REG_DWORD)`. This resolves issues where Windows would think you didn't have a network connection even though you did. + - Modified behavior of warp-diag to now also include 24 hours of Windows system event logs (for Zero Trust customers only). + - Modified behavior of `warp-cli enable-dns-log` to automatically turn off after 7 days (this is the equivalent of manually running `warp-cli disable-dns-log`) + - Fixed HappyEyeballs search on IPv6 only devices + - Fixed UI in various states where we would show the wrong text when in various states (ex. Paused when really disabled via Admin Override, etc.) + - Fixed issue in consumer on mode where you could add a domain based split tunnel rule but you couldn't delete them + - Fixed issue where you could recieve Windows notifications when you weren't supposed to + - Fixed issue where DHCP packets may be blocked when switching from Ethernet to Wifi + - Fixed `System.AggregateException` that on some systems would cause the WARP UI to crash (note even if the UI is not running, the system service is still enforcing policy) + - Fixed issue where the installer would check for an updated version of the app upon install. The installer no longer does this so the client itself can download settings and determine if users should be allowed to self update. + - Fixed issue where GUI may still think user is registered after "warp-cli delete" is run + - Decreased warp-diag run times by not resolving traceroute domains + - Decreased warp-diag zip file sizes by 60-80% + + + **Known issues** + - No known issues +version: 2022.10.106.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2022.10.106.0 +packageSize: 105852928 +releaseDate: 2022-11-16T20:09:44.739Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/2022.12.476.0.yaml b/src/content/warp-releases/windows/ga/2022.12.476.0.yaml new file mode 100644 index 000000000000000..46f6151d2b95e48 --- /dev/null +++ b/src/content/warp-releases/windows/ga/2022.12.476.0.yaml @@ -0,0 +1,76 @@ +releaseNotes: >- + This release has support for new Zero Trust network location aware feature and + contains improvements to stability and bug fixes. + + + **Notable updates** + + - New `Connectivity` tab in the GUI bubbles up helpful information (Windows + only for now). Please let us know how this works for you. + + - Added support for new Zero Trust network location aware WARP feature. More + info to be released soon on how you can test. + + - Improved captive portal handling for some more captive portals. + + - Improved reconnect logic when a setting changes to no longer always do a + full disconnect->reconnect cycle (for instance when turning on DNS logging). + + - Modified initial connectivity check behavior to now validate both IPv4 and + IPv6 are working (previously we only checked IPv4). Test will pass if either + connects successfully. + + - Fixed issue where UI could appear hung. + + - Fixed issue where progress bar won't appear during update until update is + completed. + + - Fixed issue where client could be stuck on `Connecting` if certain DNS + checks failed once. + + - Fixed DNS issue where TXT records were not being correctly returned when at + the end of a CNAME chain. + + - Fixed issue where the client may not receive notifications of new settings, + re-auth events or posture from the service until reboot. + + - Fixed issue where users could be pointing at an old gateway_doh_subdomain if + you have `Allowed to Leave` set to true and they've manually joined their + client to your organization. + + - Fixed slow DNS timeout issue that could occur when IPv6 is enabled and an + NXDOMAIN record is returned. + + - Fixed issue with `Gateway with DoH` mode could say `Connected` when it + wasn't really connected as we could sometimes test the wrong endpoint. + + - Fixed issue where our local DNS proxy server could get unset with an overly + active DHCP renew time or by plugging in/out a tethered device. + + - Fixed issue where if `support_url` doesn't have a protocol definitely we now + automatically add `https`. + + - Fixed issue where the Cloudflare WARP system Service may crash if a long + running child process crashes (such as ipconfig, netsh, etc.). + + - Fixed issue where `warp-cli teams-enroll` wouldn't work when an mdm file was + present. + + - Fixed issue where our localhost dns endpoints (ex. 127.0.2.2) could appear + in the fallback configuration potentially causing DNS lookups to fail. + + - Fixed issue that could cause the Cloudflare WARP Service to crash (and then + potentially the GUI). + + - Fixed issue that could cause some DNS queries to take upto 15 seconds to + complete. + + + **Known issues** + + - No known issues +version: 2022.12.476.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2022.12.476.0 +packageSize: 105148416 +releaseDate: 2022-12-29T01:02:38.653Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/2022.12.582.0.yaml b/src/content/warp-releases/windows/ga/2022.12.582.0.yaml new file mode 100644 index 000000000000000..394e6ac6cd261d0 --- /dev/null +++ b/src/content/warp-releases/windows/ga/2022.12.582.0.yaml @@ -0,0 +1,16 @@ +releaseNotes: >- + This release contains only stability and bug fixes. + + **Hotfix Updates** + + - Fixed issue where clients would attempt to configure DNS even when in + posture-only, or proxy modes. + + **Known issues** + + - No known issues +version: 2022.12.582.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2022.12.582.0 +packageSize: 105140224 +releaseDate: 2023-01-12T20:01:50.058Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/2022.2.247.0.yaml b/src/content/warp-releases/windows/ga/2022.2.247.0.yaml new file mode 100644 index 000000000000000..7782fec3f1d4112 --- /dev/null +++ b/src/content/warp-releases/windows/ga/2022.2.247.0.yaml @@ -0,0 +1,16 @@ +releaseNotes: |- + This release is a minor hotfix over the previous release (2022.2.95.0). + + **Notable updates** + - Fixed an issue where the organization name became case sensitive and could cause a device to lose registration. + + + **Known issues** + No known issues + + For releated Cloudflare for Teams documentation please see: https://developers.cloudflare.com/cloudflare-one/connections/connect-devices/warp +version: 2022.2.247.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2022.2.247.0 +packageSize: 88379392 +releaseDate: 2022-02-23T20:48:31.623Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/2022.2.95.0.yaml b/src/content/warp-releases/windows/ga/2022.2.95.0.yaml new file mode 100644 index 000000000000000..b8ce4a0492fc740 --- /dev/null +++ b/src/content/warp-releases/windows/ga/2022.2.95.0.yaml @@ -0,0 +1,28 @@ +releaseNotes: |- + This release contains new features and improvements from the last release. In particular, we have made significant changes to how local settings (MDM) are processed. Additionally, we added the ability to configure all applicable parameters from the Zero Trust dashboard. This allows admins to more easily control client behavior without having to use a 3rd party tool. + + + + **Notable updates** + - Added support for Gateway session duration enforcement. This allows administrators to force re-authentication after a specified time. + - The "enabled" mdm.xml property has now been completely deprecated and is no longer respected. Please see https://developers.cloudflare.com/cloudflare-one/connections/connect-devices/warp/deployment/mdm-deployment/parameters#switch_locked for switch_locked mechanism that was announced in April 2021 + - Now that settings exist in the Zero Trust Dashboard, the Client UI should behave the same for clients manually joined to a Team and clients forced to by local mdm.xml policy + - Updated Teams logo in app to Zero Trust + - Modified GUI exit behavior for users who manually joined their device to a Team. Quitting the app will still keep the service running and enforcing policy for clients that were deployed via mdm/Intune/etc. + - Reworked some parts of the UI that are not relevant in Zero Trust Mode (consumer-only features in connection tab, quit button that doesn't really do anything, etc.) + - Improved overall stability of Windows installer + - Fixed an issue where the Last Seen value was not updated properly in the Zero Trust Dashboard while in Gateway with DoH mode + - Fixed an issue where the device name was not updated in the Zero Trust Dashboard if the computer name changed after initial registration + - Fixed various issues with split tunnel support in consumer mode + - Fixed an issue where the context menu would remain after quitting the GUI + - Fixed a wake from sleep issue where DNS requests could fail. + + + + **Known issues** + - The organization name is case sensitive, which could cause a device to lose registration. +version: 2022.2.95.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2022.2.95.0 +packageSize: 88379392 +releaseDate: 2022-02-15T17:10:56.241Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/2022.3.186.0.yaml b/src/content/warp-releases/windows/ga/2022.3.186.0.yaml new file mode 100644 index 000000000000000..2bf93fea6b8ff7f --- /dev/null +++ b/src/content/warp-releases/windows/ga/2022.3.186.0.yaml @@ -0,0 +1,15 @@ +releaseNotes: |- + This release contains bug fixes and connection stability improvement + + **Notable updates** + Bug fixes and connection stability improvement + + **Known issues** + No known issues + + For releated Cloudflare for Teams documentation please see: https://developers.cloudflare.com/cloudflare-one/connections/connect-devices/warp +version: 2022.3.186.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2022.3.186.0 +packageSize: 89055232 +releaseDate: 2022-03-24T23:29:02.611Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/2022.3.63.0.yaml b/src/content/warp-releases/windows/ga/2022.3.63.0.yaml new file mode 100644 index 000000000000000..ae051ac8162a389 --- /dev/null +++ b/src/content/warp-releases/windows/ga/2022.3.63.0.yaml @@ -0,0 +1,34 @@ +releaseNotes: >- + This release contains new features and improvements from the last release. + + + + **Notable updates** + + - Added support for Device Information only mode. This allows for posture to + be used for Access policies without Gateway being enabled. + + - Fixed issue where UI would not update immediately based on a dashboard + settings change + + - Fixed issue where the client could fail to check for updates + + - Fixed issue for Zero Trust accounts with Captive Portal disabled where they + client may not always reconnect when it should + + - Fixed issue where the UI would show disconnected when the client was instead + just temporarily paused + + - Fixed issue where serial numbers with spaces in the string were not + correctly reported + + + + **Known issues** + + - No known issues +version: 2022.3.63.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2022.3.63.0 +packageSize: 88788992 +releaseDate: 2022-03-09T21:04:33.453Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/2022.4.115.0.yaml b/src/content/warp-releases/windows/ga/2022.4.115.0.yaml new file mode 100644 index 000000000000000..3f8e02bdf1a7c7a --- /dev/null +++ b/src/content/warp-releases/windows/ga/2022.4.115.0.yaml @@ -0,0 +1,27 @@ +releaseNotes: |- + *PLEASE NOTE* If you are a Zero Trust customer and have strict firewall rules, you must visit https://developers.cloudflare.com/cloudflare-one/connections/connect-devices/warp/deployment/firewall/#client-orchestration-api and explicitly allow our new Client Orchestration API Endpoints. + + This release contains new features and improvements from the last release + + **Notable updates** + + - Added support for Cloudflare Tunnels users to route traffic to distinct Virtual Networks with overlapping IP ranges + - Added ability for users to manually refresh Zero Trust authentication via the Preferences->Account menu + - Modified Client Orchestration API Endpoint the client connects to in Zero Trust mode + - Modified warp-cli behavior of "connect" and "disconnect" to mimic "enable-always-on" and "disable-always-on" which themselves are copies of how the main toggle switch behaves in the UI + - Modified client behavior to no longer do periodic tunnel connectivity checks. These checks frequently caused more problems than they solved. + - Fixed issue where UI would not display correctly for users with multiple monitors or in VMWare [win] + - Fixed connectivity issues over devices with embedded 4G [win] + - Fix issue where Windows device could fail to renew IP address when coming out of sleep [win] + - Fixed issue where Zero Trust users would receive a notification to update the client even though upgrades were disabled in settings + - Fixed issue where the GUI would show disconnected when it should show Paused + - Fixed various issues with warp-diag and improve overall stability + + + **Known issues** + - UI incorrectly Shows Virtual Networks selector when there is only 1 default network. This UI should be hidden unless there are actually multiple networks to choose from. +version: 2022.4.115.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2022.4.115.0 +packageSize: 90537984 +releaseDate: 2022-04-07T22:42:47.370Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/2022.5.226.0.yaml b/src/content/warp-releases/windows/ga/2022.5.226.0.yaml new file mode 100644 index 000000000000000..7442895cddff061 --- /dev/null +++ b/src/content/warp-releases/windows/ga/2022.5.226.0.yaml @@ -0,0 +1,64 @@ +releaseNotes: >- + This release contains significant improvements to our DNS functionality. In + addition to overall improved DNS stability and performance, we now fully + support DNS requests over TCP. This also modifies our local DNS proxy to use + the internal IPs of 127.0.2.2, 127.0.2.3, fd01:db8:1111::2, and + fd01:db8:1111::3. + + **Notable updates** + + - Added support for DNS over TCP + + - Added support for teams-enroll in the warp-cli utility + + - Modified client font to be system default + + - Modified client behavior to no longer show massive upgrade notification when + a new build is released, instead you'll now see a change to our system tray + icon to indicate a new build is available + + - Fixed issue where the Virtual Network selector would appear for users with + only a single network + + - Fixed issue where the Virtual Network selector may not appear after a reboot + + - Fixed issue where the Logout from Zero trust button would remain locked + after an mdm.xml file was removed + + - Fixed issue where settings and/or UI may not properly clear when moving from + one Zero Trust org to another + + - Fixed issue where device posture checks (Application and File Check) were + case sensitive when they shouldn't have been + + - Fixed issue where updating the mdm.xml file would require the user to + re-register in cases where it shouldn't (registration would appear missing) + + - Fixed issue when coming out of sleep where it could take 60 seconds to + connect while we waited for Apples connectivity checks to finish (and we + didn't really need to) + + - Fixed issue where our service could crash and not properly restart + + - Fixed issue where updated posture checks might not take effect until restart + + - Fixed issue with warp-cli where enable/disable with wifi was allowed in Zero + Trust mode + + - Fixed issue where too many DNS requests could result in the following error + appearing in logs: WARN warp::dns: Shedding DNS load + + **Known issues** + + - Certain devices with embedded LTE adapters may need to disable IPv6 for the + client to work. + + - Certain devices will fail to load any domains listed as a fallback domain. + + - This version requires at least Windows 10.0.19042. If you are running a + prior version of Windows, please delay upgrading. +version: 2022.5.226.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2022.5.226.0 +packageSize: 91090944 +releaseDate: 2022-05-25T20:46:04.929Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/2022.5.309.0.yaml b/src/content/warp-releases/windows/ga/2022.5.309.0.yaml new file mode 100644 index 000000000000000..ab93785d2502a18 --- /dev/null +++ b/src/content/warp-releases/windows/ga/2022.5.309.0.yaml @@ -0,0 +1,24 @@ +releaseNotes: >- + This release is a hotfix for 2022.5.226.0. + + **Notable updates** + + - Fixed false positives when attempting to detect a captive portal + + - Fixed issue where OS version would not be updated in dash after OS update + + - Fixed issue when DNS would not resolve for fallback domains on certain + machines + + - Fixed installation failure when a newer version of WebView2 exists + + + **Known issues** + + - This version requires at least Windows 10.0.19042. If you are running a + prior version of Windows, please delay upgrading. +version: 2022.5.309.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2022.5.309.0 +packageSize: 91082752 +releaseDate: 2022-06-06T22:15:29.771Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/2022.7.174.0.yaml b/src/content/warp-releases/windows/ga/2022.7.174.0.yaml new file mode 100644 index 000000000000000..620fc82d230e788 --- /dev/null +++ b/src/content/warp-releases/windows/ga/2022.7.174.0.yaml @@ -0,0 +1,77 @@ +releaseNotes: >- + This release contains a security fix for IPv6 users introduced in a prior + release, major bug fixes and a significant change to the Zero Trust + authentication flow. + + + **NOTE** This release contains a bug that impacts Zero Trust users who deploy + with .msi command line parameters that will break clean installs. For clean + installs please move forward to 2022.7.421 + + **Notable updates** + + - Added C:\ProgramData\Cloudflare\cfwarp_daemon_dns.txt log file when DNS + logging is enabled + + - Added `do not fragment` bit to WARP tunnel traffic + + - Added ability for posture rules that support file paths to use environment + variables as part of the path + + - Modified Zero Trust authentication flow to no longer rely on WebView2 + embedded experience and use default browser instead + + - Modified output of `warp-cli account` and `warp-cli settings` to make + parsing information easier + + - Modified client UI during re-authentication flow to always appear as the top + most window so it is less likely users will miss it + + - Fixed major issue introduced with 2022.5.341 where IPv6 traffic was no + longer consistently routed through the tunnel + + - Fixed issue where warp-svc.exe may not start due to missing VCRUNTIME140.dll + on some systems + + - Fixed issue that could result in broken DNS for users running WiFi until an + admin manually reset DNS back to default + + - Fixed issue where the UI could appear stretched when using an external + monitor + + - Fixed issue where warp-cli could be used determine a valid admin override + code + + - Fixed issue where warp-cli could be used to enable/disable on wifi networks + when in Zero Trust mode + + - Fixed issue where the UI could get a barrage of notifications when coming + out of modern standby + + - Fixed issue where you would receive a notification immediately after install + that your internet was no longer private + + - Fixed issue with domain based split tunnels when a wildcard is used. + Anything after the `*` was included in the wildcard search so `*.example.com` + would include `badexample.com` + + - Fixed issue where client was sending improper ICMP responses when MTU needed + to change + + - Fixed UI issue when going between light/dark modes + + - Fixed issue where logs could grow too large + + **Known issues** + + - This version requires at least Windows 10.0.19042. If you are running a + prior version of Windows, please delay upgrading. + + - Zero Trust users who perform a clean install of the client utilizing msi + parameters will result in the GUI being in a broken state and not asking for + authentication. This is fixed in 2022.7.421 +version: 2022.7.174.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2022.7.174.0 +packageSize: 88604672 +releaseDate: 2022-07-14T18:48:26.264Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/2022.7.421.0.yaml b/src/content/warp-releases/windows/ga/2022.7.421.0.yaml new file mode 100644 index 000000000000000..195194bf461fcd0 --- /dev/null +++ b/src/content/warp-releases/windows/ga/2022.7.421.0.yaml @@ -0,0 +1,34 @@ +releaseNotes: >- + This release contains bug fixes and user experience change for customers using + Zero Trust `Enforce WARP session duration` Gateway policies + + **Notable updates** + + - Modified client behavior to no longer automatically open a new browser tab + when user needs to reauthenticate as this was causing some users to return to + their devices with 100s of tabs open. Instead the client will now use the + built in operating system notification framework to inform users of the need + to authenticate. + + - Fixed issue where deployments with .msi command line parameters would result + in a broken client state + + - Fixed issues with device registration after logging out/in of the client. + + - Fixed issue where file device posture checks wouldn't work correctly when + the file path was changed for an existing rule. + + **Known issues** + + - This version requires at least Windows 10.0.19042. If you are running a + prior version of Windows, please delay upgrading. This will be fixed in the + next release. + + - Some Zero Trust customers with Chromium browsers with certain browser + management profiles may experience issues completing initial device + registration. This will be fixed in the next release. +version: 2022.7.421.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2022.7.421.0 +packageSize: 103219200 +releaseDate: 2022-08-01T20:09:23.276Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/2022.8.857.0.yaml b/src/content/warp-releases/windows/ga/2022.8.857.0.yaml new file mode 100644 index 000000000000000..2c7a5d1ec0cabcf --- /dev/null +++ b/src/content/warp-releases/windows/ga/2022.8.857.0.yaml @@ -0,0 +1,37 @@ +releaseNotes: |- + This release primarily contains improvements to stability and bug fixes. Please + note that the issue preventing the client from working with Windows versions + older than 10.0.19042 is now fixed in this release. We also wanted to call out + that we've made server side changes to significantly reduce captcha issues for + users with IPv6 enabled (no client related change but wanted to call out the + work). + + **Notable updates** + + - Added ability for ZT Administrators to specify if they want embedded WebView2 browser to be used instead of the default system browser. See [Deployment documentation](https://developers.cloudflare.com/cloudflare-one/connections/connect-devices/warp/deployment/mdm-deployment/#install-warp-on-windows) for more information + - Modified GUI app to now be built on .Net 6.0 as .Net 5.0 is now end of life and upgraded the internal version of our upgrade engine (Sparkle). No user facing changes expected. + - Modified GUI when in Include Only split tunneling mode to correctly state that just the routes included in the split tunnel configuration are protected. This is just a string change. + - Fixed issue where `warp-cli set-custom-endpoint` could be used by users without local admin rights as a way to bypass Gateway policies. + - Fixed issue where `warp-cli add-trusted-ssid` worked in Zero Trust mode when it should not have. + - Fixed issue where `warp-cli teams-enroll` would run even if already joined to an organization and users were not allowed to disconnect or leave. + - Fixed issue that could result in connection issues coming out of certain sleep states (AddrInUse error or Multiple WARP Connections or NoCurrentSession). + - Fixed issue that could result in connection flickering between connected/disconnected. + - Fixed issue where connectivity test could report wrong status in logs when in Include Only split tunnel configuration. + - Fixed issue where warp-cli could hang if service was in a bad state. + - Fixed issue where sometimes Zero Trust device settings configured in the dash wouldn't take effect for machines in a disconnected state and asleep state. + - Fixed issue where our DNS proxy wasn't correctly handling EDNS0 requests. + - Fixed issue preventing the WARP Client from working with Windows versions prior to 10.0.19042 by no longer using SetInterfaceDnsSettings and instead set DNS server config by modifying the following registry key(s) directly for each interface. SYSTEM\CurrentControlSet\Services\{service}\Parameters\Interfaces\{guid}. + - Fixed issue where the DNS Answer for records at the end of a CNAME chain would appear in the ADDITIONAL response section instead of the ANSWER section. This broke certain connectivity checks for Microsoft and Android studio in particular (probably other things). We now put the IP address found in the ANSWER section. + - Fixed issue where multiple instances of the service could run at the same time. + - Fixed issue that could occur during registration if the user clicks on on the Launch Cloudflare WARP button after already registering. + - Fixed issue where the Zero Trust client was starting in connected mode when dash settings `Switched Locked` and `Auto Connect` were turned off/disabled. The client should only ever auto connect when these are enabled. + - Fixed issue where DNS functionality may be in a broken state when device wakes from sleep + - Improved performance of warp-diag to now collects logs in parallel and now collect additional routes to help with debugging. + + **Known issues** + - No known issues +version: 2022.8.857.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2022.8.857.0 +packageSize: 106332160 +releaseDate: 2022-09-12T17:54:58.402Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/2022.9.383.0.yaml b/src/content/warp-releases/windows/ga/2022.9.383.0.yaml new file mode 100644 index 000000000000000..016c21b4aff2b46 --- /dev/null +++ b/src/content/warp-releases/windows/ga/2022.9.383.0.yaml @@ -0,0 +1,42 @@ +releaseNotes: >- + This release primarily contains improvements to stability and bug fixes. + + **Notable updates** + + - Fixed issue where WARP DNS servers stay set after Windows update, causing no + network for user + + - Improved connection time on slow network connections + + - Fixed bug where initial teams registration could take awhile to show up on + client UI + + - Fixed bug that could cause Teams registration to fail (mostly server side + but mentioning here as well) and handoff from the success page in the browser + to the client + + - Fixed notification experience so you only recieve a single notification if + registration fails instead of hundreds + + - Fixed DNS fallback timeouts and related performance issues + + - Fixed issue where coming out of sleep on some systems could take an + unreasonably long time to connect + + - Fixed InvalidPacket error in logs that indicated the client needed to reset + its connection + + - Fixed issue where user experienced no network after boot + + - Fixed issue where warp-diag rotated daemon logs did not collect older logs + + + **Known issues** + + - Device posture check results stop sending after 24 hours (or possibly even + sooner) +version: 2022.9.383.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2022.9.383.0 +packageSize: 103960576 +releaseDate: 2022-09-30T18:27:45.527Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/2022.9.583.0.yaml b/src/content/warp-releases/windows/ga/2022.9.583.0.yaml new file mode 100644 index 000000000000000..efb6fad78e4ec8b --- /dev/null +++ b/src/content/warp-releases/windows/ga/2022.9.583.0.yaml @@ -0,0 +1,14 @@ +releaseNotes: |- + This release contains hotfixes for 2022.9.383.0. + + **Notable updates** + - Fix issue where device posture check results stopped sending after 24 hours + (or possibly even sooner) + + **Known issues** + - No known issues +version: 2022.9.583.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2022.9.583.0 +packageSize: 103960576 +releaseDate: 2022-10-11T23:54:48.472Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/2023.11.6.0.yaml b/src/content/warp-releases/windows/ga/2023.11.6.0.yaml new file mode 100644 index 000000000000000..b05ca56fb4d4a02 --- /dev/null +++ b/src/content/warp-releases/windows/ga/2023.11.6.0.yaml @@ -0,0 +1,27 @@ +releaseNotes: >- + This releases contains a fairly major refactor of the warp-cli interface. + While all existing commands are backwards compatible for at least the next 6 + months, please take a moment to look through the new warp-cli and let us know + what you think + + **Notable updates** + + - Added ability to run pcaps from warp-cli to make debugging easier + + - Modified warp-cli commands to be more consistent and readable + + - Fixed an issue where tunnel could become unresponsive a few minutes after + coming out of sleep or after changing networks + + - Fixed an issue where the Cloudflare WARP interface could not properly + initialize when coming out of sleep when running alongside some 3rd party + legacy VPNs + + **Known issues** + + - No known issues +version: 2023.11.6.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2023.11.6.0 +packageSize: 112979968 +releaseDate: 2023-11-09T22:13:23.283Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/2023.12.3.0.yaml b/src/content/warp-releases/windows/ga/2023.12.3.0.yaml new file mode 100644 index 000000000000000..0ec9db6f0f8ed1e --- /dev/null +++ b/src/content/warp-releases/windows/ga/2023.12.3.0.yaml @@ -0,0 +1,31 @@ +releaseNotes: >- + This releases contains bug fixes only, no new functionality has been + introduced + + **Notable updates** + + - Fixed an issue where multicast traffic was being sent down the tunnel when + it shouldn't be. Traffic to 224.0.0.0/4 is now always excluded from the tunnel + + - Fixed an issue where we would not properly restore DNS servers to the + current DHCP value but instead restoring to last DHCP value saved. This caused + issues going between multiple different networks (going from home to work or a + hotel with a completely different network) + + - Fixed an issue for users with domain based split tunnel rules that could + prevent access to certain sites due to Windows automatically adding/deleting + broadcast routes in related IP ranges. This error resulted in users not being + able to visit sites with IP addresses in the ranges impacted by the domain + based split tunnel rule + + - Fixed an issue where we were incorrectly setting the default local domain + fallback server value for entries without an explicit DNS server set + + **Known issues** + + - No known issues +version: 2023.12.3.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2023.12.3.0 +packageSize: 113594368 +releaseDate: 2023-12-01T20:30:48.266Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/2023.3.381.0.yaml b/src/content/warp-releases/windows/ga/2023.3.381.0.yaml new file mode 100644 index 000000000000000..cddf702c8e43836 --- /dev/null +++ b/src/content/warp-releases/windows/ga/2023.3.381.0.yaml @@ -0,0 +1,75 @@ +releaseNotes: >- + **Major change** + + WARP On Windows now uses a new tunnel architecture that more closely matches + our macOS and Linux implementations. WARP will now create a virtual interface + that is visible in your network connections and directly modify the routing + table to control where traffic flows. Please thoroughly test this release + before deploying in your organization. + + **Notable updates** + + - Added support for Windows Subsystem for Linux 2 (WSL2) + + - Added support for Zero Trust Digital Experience Monitoring + + - Added new log message to help customers and support identify when a users + local network IP space overlaps with a remote network configured to go through + the tunnel + + - Added support for Zero Trust customers to opt in to having the WARP Client + install the root CA for your organization if TLS Decryption is enabled. + + - Improve timeouts with broken CNAME records that could result in very long + load times for certain apps (Office 365 apps, etc.) + + - Improved compatibility with apps like Firefox and Zoom that use custom MTU + settings + + - Improved UI states for WARP client + + - Improved user validation logic during manual ZT login + + - Improved logging of application posture checks to understand rationale + behind statuses of application checks (file missing, process not found, etc.) + + - Modified behavior of Managed networks tests to always happen outside the + tunnel as per original intent + + - Fixed issue where systems with significantly out of sync system clocks could + fail registration + + - Fixed a number of GUI crash bugs that would cause the app to disappear from + the system tray + + - Fixed issue that could cause the application to be hidden behind the Windows + system tray expanded list UI + + - Fixed issue where warp-diag could run traceroutes longer than expected. + Traceroute tests will now timeout after 65 seconds. + + - Fixed issue where the WARP service can crash and lose connectivity + + - Fixed issue where manually logging into a ZT org could fail if certificate + authentication was used + + - Fixed issue where GUI could miss a status message from the WARP Service + resulting in the wrong state being reflected to users. An example is the GUI + could show `Connecting` even though device was `Connected` + + - Fix issue where IPv6 being disabled via the registered wasn't properly + detected + + - Fixed issue when running in local proxy mode where too many log entries were + written + + **Known issues** + + - Customers who have modified the default split tunnel configuration or use + managed networks may find some of the routes that should go through the tunnel + are unreachable. This is now fixed in a hotfix release. +version: 2023.3.381.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2023.3.381.0 +packageSize: 106668032 +releaseDate: 2023-04-04T23:03:24.520Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/2023.3.412.0.yaml b/src/content/warp-releases/windows/ga/2023.3.412.0.yaml new file mode 100644 index 000000000000000..104ee653e8d7a81 --- /dev/null +++ b/src/content/warp-releases/windows/ga/2023.3.412.0.yaml @@ -0,0 +1,16 @@ +releaseNotes: >- + This is a Windows only hotfix from the 2023.3.381.0 release + + **Notable updates** + + - Fixes an issue that would cause some routes to not work properly after + modifying split tunnel configuration or enabling managed network detection. + + **Known issues** + + No known issues +version: 2023.3.412.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2023.3.412.0 +packageSize: 106668032 +releaseDate: 2023-04-12T20:10:53.074Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/2023.3.450.0.yaml b/src/content/warp-releases/windows/ga/2023.3.450.0.yaml new file mode 100644 index 000000000000000..ae54b66b20f30ac --- /dev/null +++ b/src/content/warp-releases/windows/ga/2023.3.450.0.yaml @@ -0,0 +1,21 @@ +releaseNotes: >- + This is a Windows only hotfix from the 2023.3.412.0 release + + **Notable updates** + + - Fixed issue where certain split tunnel configurations with certain multicast + IPs not excluded couldn't connect. 224.0.0.0/4 and ff00::/8 are now always + excluded from the tunnel on Windows. + + - Fixed a connectivity issue that was more likely to happen for clients with + large host-based split tunnel rules + + + **Known issues** + + No known issues +version: 2023.3.450.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2023.3.450.0 +packageSize: 106725376 +releaseDate: 2023-04-27T23:02:29.285Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/2023.7.160.0.yaml b/src/content/warp-releases/windows/ga/2023.7.160.0.yaml new file mode 100644 index 000000000000000..e7ac49e62802117 --- /dev/null +++ b/src/content/warp-releases/windows/ga/2023.7.160.0.yaml @@ -0,0 +1,32 @@ +releaseNotes: >- + This is a critical hotfix for organizations that have long running deployment + cycles. The certificate used to sign and validate our installer will expire on + August 9th 2023 and may cause windows SmartScreen warnings on installation. + + This update is recommended for all customers and includes an important + reliability fix. + + **Notable updates** + + - Updated signing certificate + + - Fixed issue where client could take up to 1-2 minutes to recover + connectivity instead of 1-2 seconds in the event of a service issue + + **Known issues** + + - Customers may experience a DPC_WATCHDOG_VIOLATION Blue Screen when + connecting. This error was introduced with the 2023.3 GA release and happens + more frequently with larger split tunnel configurations, especially on more + resource constrained machines. We are actively working on a fix. Until then we + recommend staying on 2022.12 GA release OR reducing your split tunnel + configuration if possible. + + - Managed network detection on certain Windows machines doesn't consistently + apply the expected profile upon network changes. We will address this issue in + a future release. +version: 2023.7.160.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2023.7.160.0 +packageSize: 110792704 +releaseDate: 2023-07-21T01:11:04.325Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/2023.7.7.0.yaml b/src/content/warp-releases/windows/ga/2023.7.7.0.yaml new file mode 100644 index 000000000000000..2a930435a08b0e6 --- /dev/null +++ b/src/content/warp-releases/windows/ga/2023.7.7.0.yaml @@ -0,0 +1,74 @@ +releaseNotes: >- + This release contains new features, reliability improvements and bug fixes + from both the previous beta and the previous GA build. We strongly encourage + customers with domain based split tunneling rules to upgrade to this version. + + **Notable updates** + + - Added more status messages to the UI when the client is unable to connect + + - Added support for "SWG without DNS Filtering" mode. All DNS functionality + from the WARP client is disabled while in this service mode + + - Improved performance of the client when in the "Proxy Only" service mode + + - Improved performance of domain-based split tunneling when the IP was already + split tunneled (seen frequently with Zoom domains and IPs being used) + + - Modified `warp-cli settings` to show if the applied settings came from local + (mdm) or network (warp settings profile) policy to make debugging profile + issues easier + + - Fixed an issue that could result in increased latency when resolving queries + + - Fixed an issue where the GUI could indicate the incorrect service mode after + entering an admin override code + + - Fixed an issue with re-authentication policies that could result in the + browser loading a broken URL + + - Optimized the performance of DNS queries to prevent minor memory leaks + + - Fixed an issue when service token information was removed from an mdm.xml + file the client would not prompt for user authentication as expected + + - Fixed an issue where localhost DNS proxy could not be set properly in + certain VPN and VM configuration + + - Fixed localization issues in en-MX UI that caused longer strings to get + truncated + + - Fixed an issue with certain tools like nslookup that was introduced in + previous beta where DNS could appear broken + + - Fixed an issue where the WARP Client wouldn't properly detect if IPv6 was + disabled via + "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters" + + - Fixed an issue where onboarding being set to False would not work if the GUI + app started before the service + + - Fixed an issue where the client would attempt to connect even when the "AUTO + CONNECT" setting was Disabled in WARP Settings or not specified either in an + MDM file + + - Fixed an issue where the client would not correctly detect and apply + alternate network configuration between network changes + + **Known issues** + + - Customers may experience a DPC_WATCHDOG_VIOLATION Blue Screen when + connecting. This error was introduced with the 2023.3 GA release and happens + more frequently with larger split tunnel configurations, especially on more + resource constrained machines. We are actively working on a fix. Until then we + recommend staying on 2022.12 GA release OR reducing your split tunnel + configuration if possible. + + - Managed network detection on certain Windows machines doesn't consistently + apply the expected profile upon network changes. We will address this issue in + a future release. +version: 2023.7.7.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2023.7.7.0 +packageSize: 110821376 +releaseDate: 2023-07-07T18:46:21.316Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/2023.9.248.0.yaml b/src/content/warp-releases/windows/ga/2023.9.248.0.yaml new file mode 100644 index 000000000000000..e01aee8eded755f --- /dev/null +++ b/src/content/warp-releases/windows/ga/2023.9.248.0.yaml @@ -0,0 +1,31 @@ +releaseNotes: |- + This release contains significant improvements to reliability and a number of exciting new features. + + **Notable updates** + - Added connectivity error reasons to the UI. Examples of this UI and the types of errors your users will see can be found in the [client errors documentation](https://developers.cloudflare.com/cloudflare-one/connections/connect-devices/warp/troubleshooting/client-errors/) + - Added new posture type: [Client certificate](https://developers.cloudflare.com/cloudflare-one/identity/devices/warp-client-checks/client-certificate/) + - Added support for IPv6 DEX Traceroute tests (previously only IPv4 addresses could be used) + - Improved reliability and efficiency in configurating split tunnel rules. Most `error petting the dog` errors should now be gone and organizations with large split tunnel configuration should see reliability improvements. + - Fixed an issue where warp-svc.exe could crash under extreme load + - Fixed an issue where the Windows GUI could spam the Windows System Eventlog with unhelpful error messages + - Fixed an issue with DEX traceroutes tests where not all hops were correctly reported + - Fixed an issue where DEX tests would not properly run immediately after a device came out of sleep + - Fixed an issue where DEX tests would execute simultaneously causing performance issues for accounts with a large number of tests configured + - Fixed an issue where DNS status would flap between Connected / Disconnect in Connectivity panel + - Fixed an issue where DoH requests could take too long to timeout causes DNS reliability issues + - Fixed an issue that was causing Windows BSOD (DPC_WATCHDOG_VIOLATION) + - Fixed an issue where DNS could temporarily fail when DHCP updates were processed + - Fixed an issue on initial device registration that could sometimes cause it to fail and try again + - Fixed an issue where UI could appear in the wrong location when the app starts + - Fixed an issue where short DNS timeouts were causing issues with some captive portals (United in particular) + - Fixed an issue where managed network detection could fail when our firewall rules were not correctly removed under certain disconnect scenarios + - Fixed an issue with Managed Networks where if the managed endpoint overlapped with your exclude split tunnel configuration, the split tunnel would only be open for IP traffic destined to the same port as your managed TLS endpoint + - Fixed an issue where IPv6 traffic could be incorrectly sent down the tunnel in exclude mode + + **Known issues** + - No known issues +version: 2023.9.248.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2023.9.248.0 +packageSize: 112349184 +releaseDate: 2023-09-27T20:23:59.778Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/2024.1.159.0.yaml b/src/content/warp-releases/windows/ga/2024.1.159.0.yaml new file mode 100644 index 000000000000000..507db822825c0ce --- /dev/null +++ b/src/content/warp-releases/windows/ga/2024.1.159.0.yaml @@ -0,0 +1,45 @@ +releaseNotes: >- + This release contains a number of exciting new features and several + improvements and bug fixes. + + + **Notable updates** + + - Added the ability for the Client to display Gateway NETWORK and HTTP block + notifications to the user. + + - Added the ability for administrators to specify multiple configurations in + MDM files that users can toggle between. This allows users to more easily + switch between production and test environments or for China users to switch + between their override endpoints within the UI. + + - Added the ability for administrators to allow their end users to temporarily + obtain access to local network resources in the event their home IP space + overlaps with traffic normally routed through the WARP tunnel. + + - Improved existing re-auth notifications to be more visible and time + sensitive. + + - Improved the handling of DNS server addresses to avoid conflicts with + Windows OS setting of DHCP-sourced DNS server addresses. + + - Improved the retry mechanisms for DEX test results. + + - Improved the Device Posture Firewall check on Windows to ensure that all + policy stores are checked. + + - Fixed an issue where DEX tests would run before the client was fully + connected. + + + **Known issues** + + - When `Install CA to system certificate store` is enabled, the certificate is + not always properly left behind in + `%ProgramData%\Cloudflare\installed_cert.pem`. This issue will be fixed in a + future release. +version: 2024.1.159.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2024.1.159.0 +packageSize: 115130368 +releaseDate: 2024-01-24T18:44:43.138Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/2024.11.309.0.yaml b/src/content/warp-releases/windows/ga/2024.11.309.0.yaml new file mode 100644 index 000000000000000..52cccb26b510fe6 --- /dev/null +++ b/src/content/warp-releases/windows/ga/2024.11.309.0.yaml @@ -0,0 +1,23 @@ +releaseNotes: | + This release contains minor fixes and improvements. + + **Changes and improvements:** + - Fixed an issue where SSH sessions and other application connections over TCP or UDP could drop when a device that is using MASQUE changes its primary network interface. + - Fixed an issue to ensure the Cloudflare root certificate (or custom certificate) is installed in the trust store if not already there. + - Fixed an issue with the WARP client becoming unresponsive during startup. + - Extended diagnostics collection time in `warp-diag` to ensure logs are captured reliably. + - Fixed an issue that was preventing proper operation of DNS-over-TLS (DoT) for consumer users. + + **Known issues:** + - DNS resolution may be broken when the following conditions are all true: + - WARP is in Secure Web Gateway without DNS filtering (tunnel-only) mode. + - A custom DNS server address is configured on the primary network adapter. + - The custom DNS server address on the primary network adapter is changed while WARP is connected. + + To work around this issue, reconnect the WARP client by toggling off and back on. + +version: 2024.11.309.0 +releaseDate: 2024-11-18T21:57:58.477Z +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2024.11.309.0 +packageSize: 123125760 +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/2024.12.492.0.yaml b/src/content/warp-releases/windows/ga/2024.12.492.0.yaml new file mode 100644 index 000000000000000..4f1c457ccb4f401 --- /dev/null +++ b/src/content/warp-releases/windows/ga/2024.12.492.0.yaml @@ -0,0 +1,32 @@ +releaseNotes: | + This release contains minor fixes and improvements. + + **Changes and improvements:** + - Consumers can now set the tunnel protocol using `warp-cli tunnel protocol set `. + - Extended diagnostics collection time in `warp-diag` to ensure logs are captured reliably. + - Improved captive portal support by disabling the firewall during captive portal login flows. + - Improved captive portal detection on certain public networks. + - Improved reconnection speed when a Cloudflare server is in a degraded state. + - Fixed an issue where WARP may fail to remove certificates from the user store in Device Information Only mode. + - Ensured at most one Powershell instance is opened when fetching the device serial number for posture checks. + - Fixed an issue to prevent the daemon from following Windows junctions created by non-admin users that could be used to delete files as SYSTEM user and potentially gain SYSTEM user privileges. + - Improved reliability of connection establishment logic under degraded network conditions. + - Fixed an issue that caused high memory usage when viewing connection statistics for extended periods of time. + - Improved WARP connectivity in environments with virtual interfaces from VirtualBox, VMware, and similar tools. + - Reduced connectivity interruptions on WireGuard Split Tunnel Include mode configurations. + - Fixed connectivity issues switching between managed network profiles with different configured protocols. + - QLogs are now disabled by default and can be enabled with `warp-cli debug qlog enable`. The QLog setting from previous releases will no longer be respected. + + **Known issues:** + - DNS resolution may be broken when the following conditions are all true: + - WARP is in Secure Web Gateway without DNS filtering (tunnel-only) mode. + - A custom DNS server address is configured on the primary network adapter. + - The custom DNS server address on the primary network adapter is changed while WARP is connected. + + To work around this issue, reconnect the WARP client by toggling off and back on. + +version: 2024.12.492.0 +releaseDate: 2024-12-18T23:29:26.227Z +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2024.12.492.0 +packageSize: 125603840 +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/2024.12.554.0.yaml b/src/content/warp-releases/windows/ga/2024.12.554.0.yaml new file mode 100644 index 000000000000000..8bf052122cea395 --- /dev/null +++ b/src/content/warp-releases/windows/ga/2024.12.554.0.yaml @@ -0,0 +1,20 @@ +releaseNotes: | + This release contains improvements to support custom Gateway certificate installation in addition to the changes and improvements included in version 2024.12.492.0. + + **Changes and improvements:** + - Adds support for installing all available custom Gateway certificates from an account to the system store. + - Users can now get a list of installed certificates by running `warp-cli certs`. + + **Known issues:** + - DNS resolution may be broken when the following conditions are all true: + - WARP is in Secure Web Gateway without DNS filtering (tunnel-only) mode. + - A custom DNS server address is configured on the primary network adapter. + - The custom DNS server address on the primary network adapter is changed while WARP is connected. + + To work around this issue, reconnect the WARP client by toggling off and back on. + +version: 2024.12.554.0 +releaseDate: 2024-12-19T22:24:55.168Z +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2024.12.554.0 +packageSize: 126205952 +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/2024.12.760.0.yaml b/src/content/warp-releases/windows/ga/2024.12.760.0.yaml new file mode 100644 index 000000000000000..03e2c111546d37a --- /dev/null +++ b/src/content/warp-releases/windows/ga/2024.12.760.0.yaml @@ -0,0 +1,19 @@ +releaseNotes: | + This release contains only a hotfix from the 2024.12.554.0 release. + + **Changes and improvements:** + - Fixed an issue that could prevent clients with certain split tunnel configurations from connecting. + + **Known issues:** + - DNS resolution may be broken when the following conditions are all true: + - WARP is in Secure Web Gateway without DNS filtering (tunnel-only) mode. + - A custom DNS server address is configured on the primary network adapter. + - The custom DNS server address on the primary network adapter is changed while WARP is connected. + + To work around this issue, reconnect the WARP client by toggling off and back on. + +version: 2024.12.760.0 +releaseDate: 2025-01-09T16:09:25.966Z +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2024.12.760.0 +packageSize: 126201856 +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/2024.2.187.0.yaml b/src/content/warp-releases/windows/ga/2024.2.187.0.yaml new file mode 100644 index 000000000000000..3551d5b8ee2b4ab --- /dev/null +++ b/src/content/warp-releases/windows/ga/2024.2.187.0.yaml @@ -0,0 +1,22 @@ +releaseNotes: >- + This release contains no new features and is focused exclusively on + improvements. + + + **Notable updates** + + - Improved error handling to avoid causing an unnecessary reconnection when + the Windows networking subsystem is under load. + + + **Known issues** + + - When `Install CA to system certificate store` is enabled, the certificate is + not always properly left behind in + `%ProgramData%\Cloudflare\installed_cert.pem`. This issue will be fixed in a + future release. +version: 2024.2.187.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2024.2.187.0 +packageSize: 114958336 +releaseDate: 2024-02-29T21:03:04.019Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/2024.2.69.0.yaml b/src/content/warp-releases/windows/ga/2024.2.69.0.yaml new file mode 100644 index 000000000000000..873ccb652126f18 --- /dev/null +++ b/src/content/warp-releases/windows/ga/2024.2.69.0.yaml @@ -0,0 +1,24 @@ +releaseNotes: >- + This release contains no new features and is focused exclusively on squashing + a few bugs. + + + **Notable updates** + + - Fixed an issue that resulted in high memory usage of the UI application. + + - Fixed an issue where the Windows version was missing on the Dashboard for + devices using various non-English localizations. + + + **Known issues** + + - When `Install CA to system certificate store` is enabled, the certificate is + not always properly left behind in + `%ProgramData%\Cloudflare\installed_cert.pem`. This issue will be fixed in a + future release. +version: 2024.2.69.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2024.2.69.0 +packageSize: 115097600 +releaseDate: 2024-02-14T21:44:43.598Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/2024.3.409.0.yaml b/src/content/warp-releases/windows/ga/2024.3.409.0.yaml new file mode 100644 index 000000000000000..390f6520602818a --- /dev/null +++ b/src/content/warp-releases/windows/ga/2024.3.409.0.yaml @@ -0,0 +1,37 @@ +releaseNotes: >- + This release contains no new features and is focused exclusively on + improvements. + + + **Notable updates** + + - Windows client downloads will now contain version numbers in the file name + to allow easy identification. + + - Enabled re-authentication and other notifications to always be shown + (without sound) regardless of Windows Focus Assist settings. + + - Suppressed the GUI certificate error message "Limited connectivity: A + certificate missing; please contact your administrator" for a scenario where + it was not needed. + + - Improved the re-connection logic to minimize impact to existing tunneled TCP + sessions. + + - Corrected an issue where the DNS server information was being improperly + persisted across network changes. + + - Increased the data collected by warp-diag to improve debugging capabilities. + + + **Known issues** + + - When `Install CA to system certificate store` is enabled, the certificate is + not always properly left behind in + `%ProgramData%\Cloudflare\installed_cert.pem`. This issue will be fixed in a + future release. +version: 2024.3.409.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2024.3.409.0 +packageSize: 116297728 +releaseDate: 2024-03-29T22:35:59.309Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/2024.6.415.0.yaml b/src/content/warp-releases/windows/ga/2024.6.415.0.yaml new file mode 100644 index 000000000000000..a020da9da60d0a3 --- /dev/null +++ b/src/content/warp-releases/windows/ga/2024.6.415.0.yaml @@ -0,0 +1,30 @@ +releaseNotes: |- + This release includes some exciting new features. It also includes additional fixes and minor improvements. + + **New features** + - Admins can now elect to have ZT WARP clients connect using the MASQUE protocol; this setting is in Device Profiles. Note: before MASQUE can be used, the global setting for Override local interface IP must be enabled. For more detail, see https://developers.cloudflare.com/cloudflare-one/connections/connect-devices/warp/configure-warp/warp-settings/#device-tunnel-protocol. This feature will be rolled out to customers in stages over approximately the next month. + - The ZT WARP client on Windows devices can now connect before the user completes their Windows login. This Windows pre-login capability allows for connecting to on-premise Active Directory and/or similar resources necessary to complete the Windows login. + - The Device Posture client certificate check has been substantially enhanced. The primary enhancement is the ability to check for client certificates that have unique common names, made unique by the inclusion of the device serial number or host name (for example, CN = 123456.mycompany, where 123456 is the device serial number). Additional details can be found here: https://developers.cloudflare.com/cloudflare-one/identity/devices/warp-client-checks/client-certificate/ + + **Additional changes and improvements** + - Added a new message explaining why WARP was unable to connect, to help with troubleshooting. + - The upgrade window now uses international date formats. + - Made a change to ensure DEX tests are not running when the tunnel is not up due to the device going to or waking from sleep. This is specific to devices using the S3 power model. + - Fixed a known issue where the certificate was not always properly left behind in `%ProgramData%\Cloudflare\installed_cert.pem`. + - Fixed an issue where ICMPv6 Neighbor Solicitation messages were being incorrectly sent on the WARP tunnel. + - Fixed an issue where a silent upgrade was causing certain files to be deleted if the target upgrade version is the same as the current version. + + **Warning** + - This is the last GA release that will be supporting older, deprecated warp-cli commands. There are two methods to identify these commands. One, when used in this release, the command will work but will also return a deprecation warning. And two, the deprecated commands do not appear in the output of `warp-cli -h`. + + **Known issues** + - If a user has an MDM file configured to support multiple profiles (for the switch configurations feature), and then changes to an MDM file configured for a single profile, the WARP client may not connect. The workaround is to use the `warp-cli registration delete` command to clear the registration, and then re-register the client. + - There are certain known limitations preventing the use of the MASQUE tunnel protocol in certain scenarios. Do not use the MASQUE tunnel protocol if: + - A Magic WAN integration is on the account and is not yet migrated to the warp_unified_flow. Please check migration status with your account team. + - Your account has Regional Services enabled. + - Managed network detection will fail for TLS 1.2 endpoints with EMS (Extended Master Secret) disabled +version: 2024.6.415.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2024.6.415.0 +packageSize: 119230464 +releaseDate: 2024-06-28T17:01:04.112Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/2024.6.473.0.yaml b/src/content/warp-releases/windows/ga/2024.6.473.0.yaml new file mode 100644 index 000000000000000..d833073b3307dc2 --- /dev/null +++ b/src/content/warp-releases/windows/ga/2024.6.473.0.yaml @@ -0,0 +1,28 @@ +releaseNotes: >- + This release only contains a hotfix from the 2024.6.415.0 release. + + **Notable updates** + + - Fixed an issue which could cause alternate network detections to fail for + hosts using TLS 1.2 which do not support TLS Extended Master Secret (EMS). + + - Improved the stability of device profile switching based on alternate + network detection. + + **Known issues** + + - If a user has an MDM file configured to support multiple profiles (for the + switch configurations feature), and then changes to an MDM file configured for + a single profile, the WARP client may not connect. The workaround is to use + the `warp-cli registration delete` command to clear the registration, and then + re-register the client. + + - There are certain known limitations preventing the use of the MASQUE tunnel + protocol in certain scenarios. Do not use the MASQUE tunnel protocol if: + - A Magic WAN integration is on the account and is not yet migrated to the warp_unified_flow. Please check migration status with your account team. + - Your account has Regional Services enabled. +version: 2024.6.473.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2024.6.473.0 +packageSize: 119627776 +releaseDate: 2024-07-30T19:55:38.791Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/2024.8.458.0.yaml b/src/content/warp-releases/windows/ga/2024.8.458.0.yaml new file mode 100644 index 000000000000000..3f09395b21bb5de --- /dev/null +++ b/src/content/warp-releases/windows/ga/2024.8.458.0.yaml @@ -0,0 +1,48 @@ +releaseNotes: >- + This release contains minor fixes and improvements. + + + **Notable updates** + + - Added the ability to customize PCAP options in the warp-cli. + + - Added a list of installed applications in warp-diag. + + - Added a summary of warp-dex traceroute results in its JSON output. + + - Improved the performance of firewall operations when enforcing split tunnel + configuration. + + - Reduced the time it takes for a WARP client update to complete. + + - Fixed an issue where clients using service tokens failed to retry the + initial connection when there is no network connectivity on startup. + + - Fixed issues where incorrect DNS server addresses were being applied + following reboots and network changes. Any incorrect static entries set by + previous WARP versions must be manually reverted. + + - Fixed a known issue which required users to re-register when an older single + configuration MDM file was deployed after deploying the newer, multiple + configuration format. + + - Deprecated warp-cli commands have been removed. If you have any workflows + that use the deprecated commands, please update to the new commands where + necessary. + + + **Known issues** + + - Using MASQUE as the tunnel protocol may be incompatible if your organization + has Regional Services enabled. + + - DNS resolution may be broken when the following condition are all true: + - WARP is in Secure Web Gateway without DNS filtering (tunnel-only) mode. + - A custom DNS server address is configured on the primary network adapter. + - The custom DNS server address on the primary network adapter is changed while WARP is connected. + To work around this issue, please reconnect the WARP client by toggling off and back on. +version: 2024.8.458.0 +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2024.8.458.0 +packageSize: 120889344 +releaseDate: 2024-09-26T18:15:24.165Z +platformName: Windows diff --git a/src/content/warp-releases/windows/ga/2024.9.346.0.yaml b/src/content/warp-releases/windows/ga/2024.9.346.0.yaml new file mode 100644 index 000000000000000..ac719b43e857dfd --- /dev/null +++ b/src/content/warp-releases/windows/ga/2024.9.346.0.yaml @@ -0,0 +1,22 @@ +releaseNotes: | + This release contains minor fixes and improvements. + + **Changes and improvements:** + - Added `target list` to the `warp-cli` to enhance the user experience with the [Access for Infrastructure SSH](/cloudflare-one/connections/connect-networks/use-cases/ssh/ssh-infrastructure-access/) solution. + - Added [pre-login](/cloudflare-one/connections/connect-devices/warp/deployment/mdm-deployment/windows-prelogin/) configuration details to the `warp-diag` output. + - Added a `tunnel reset mtu` subcommand to the `warp-cli`. + - Added a JSON output option to the `warp-cli`. + - Added the ability for `warp-cli` to use the team name provided in the MDM file for initial registration. + - Added the ability to execute a PCAP on multiple interfaces with `warp-cli` and `warp-dex`. + - Improved `warp-dex` default interface selection for PCAPs and changed `warp-dex` CLI output to JSON. + - Fixed an issue where the client, when switching between WireGuard and MASQUE protocols, sometimes required a manual tunnel key reset. + - Added MASQUE tunnel protocol support for the consumer version of WARP ([1.1.1.1 w/ WARP](/warp-client/)). + + **Known issues:** + - Using MASQUE as the tunnel protocol may be incompatible if your organization has Regional Services enabled. + +version: 2024.9.346.0 +releaseDate: 2024-10-03T22:25:25.836Z +packageURL: https://downloads.cloudflareclient.com/v1/download/windows/version/2024.9.346.0 +packageSize: 121704448 +platformName: Windows diff --git a/src/schemas/index.ts b/src/schemas/index.ts index 4e98236563bcb05..1e47fcdc05af01b 100644 --- a/src/schemas/index.ts +++ b/src/schemas/index.ts @@ -11,4 +11,5 @@ export * from "./pages-build-environment"; export * from "./pages-framework-presets"; export * from "./partials"; export * from "./videos"; +export * from "./warp-releases"; export * from "./workers-ai-models"; diff --git a/src/schemas/warp-releases.ts b/src/schemas/warp-releases.ts new file mode 100644 index 000000000000000..93299873f09d71a --- /dev/null +++ b/src/schemas/warp-releases.ts @@ -0,0 +1,21 @@ +import { z } from "astro:schema"; + +export const warpReleasesSchema = z + .object({ + version: z.string(), + releaseDate: z.coerce.date(), + releaseNotes: z.string(), + packageSize: z.number().optional(), + packageURL: z.string(), + platformName: z.enum(["Windows", "macOS", "Linux"]), + }) + .refine( + (val) => { + if (val.platformName !== "Linux" && !val.packageSize) return false; + + return true; + }, + { + message: "Non-Linux platforms require the 'packageSize' property.", + }, + );