diff --git a/website/src/components/Changelog/Android.tsx b/website/src/components/Changelog/Android.tsx index 04671cd59..fc8bf0abd 100644 --- a/website/src/components/Changelog/Android.tsx +++ b/website/src/components/Changelog/Android.tsx @@ -27,6 +27,9 @@ export default function Android() { Improves connection setup latency by buffering initial packets. + + Fixes an issue where large DNS responses were incorrectly discarded. + diff --git a/website/src/components/Changelog/Apple.tsx b/website/src/components/Changelog/Apple.tsx index b0fd07e5f..caef3da3e 100644 --- a/website/src/components/Changelog/Apple.tsx +++ b/website/src/components/Changelog/Apple.tsx @@ -27,6 +27,9 @@ export default function Apple() { Improves connection setup latency by buffering initial packets. + + Fixes an issue where large DNS responses were incorrectly discarded. + diff --git a/website/src/components/Changelog/GUI.tsx b/website/src/components/Changelog/GUI.tsx index 6283a35e6..e50edc225 100644 --- a/website/src/components/Changelog/GUI.tsx +++ b/website/src/components/Changelog/GUI.tsx @@ -14,7 +14,11 @@ export default function GUI({ title }: { title: string }) { return ( {/* When you cut a release, remove any solved issues from the "known issues" lists over in `client-apps`. This must not be done when the issue's PR merges. */} - + + + Fixes an issue where large DNS responses were incorrectly discarded. + + Adds support for GSO (Generic Segmentation Offload), delivering diff --git a/website/src/components/Changelog/Headless.tsx b/website/src/components/Changelog/Headless.tsx index 8e78688cc..7d6dd429f 100644 --- a/website/src/components/Changelog/Headless.tsx +++ b/website/src/components/Changelog/Headless.tsx @@ -11,7 +11,11 @@ export default function Headless() { return ( {/* When you cut a release, remove any solved issues from the "known issues" lists over in `client-apps`. This must not be done when the issue's PR merges. */} - + + + Fixes an issue where large DNS responses were incorrectly discarded. + + Allows disabling telemetry by setting `FIREZONE_NO_TELEMETRY=true`.