docs: add changelog entries for #7551 (#7562)

This DNS fix is worth mentioning in the changelog.
This commit is contained in:
Thomas Eizinger
2024-12-22 13:04:33 +01:00
committed by GitHub
parent 9fe9314040
commit d19f31ab85
4 changed files with 16 additions and 2 deletions

View File

@@ -27,6 +27,9 @@ export default function Android() {
<ChangeItem pull="7477">
Improves connection setup latency by buffering initial packets.
</ChangeItem>
<ChangeItem pull="7551">
Fixes an issue where large DNS responses were incorrectly discarded.
</ChangeItem>
</Unreleased>
<Entry version="1.4.7" date={new Date("2024-11-08")}>
<ChangeItem pull="7263">

View File

@@ -27,6 +27,9 @@ export default function Apple() {
<ChangeItem pull="7477">
Improves connection setup latency by buffering initial packets.
</ChangeItem>
<ChangeItem pull="7551">
Fixes an issue where large DNS responses were incorrectly discarded.
</ChangeItem>
</Unreleased>
<Entry version="1.3.9" date={new Date("2024-11-08")}>
<ChangeItem pull="7288">

View File

@@ -14,7 +14,11 @@ export default function GUI({ title }: { title: string }) {
return (
<Entries href={href} arches={arches} title={title}>
{/* 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. */}
<Unreleased></Unreleased>
<Unreleased>
<ChangeItem pull="7551">
Fixes an issue where large DNS responses were incorrectly discarded.
</ChangeItem>
</Unreleased>
<Entry version="1.4.0" date={new Date("2024-12-13")}>
<ChangeItem pull="7210">
Adds support for GSO (Generic Segmentation Offload), delivering

View File

@@ -11,7 +11,11 @@ export default function Headless() {
return (
<Entries href={href} arches={arches} title="Linux headless">
{/* 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. */}
<Unreleased></Unreleased>
<Unreleased>
<ChangeItem pull="7551">
Fixes an issue where large DNS responses were incorrectly discarded.
</ChangeItem>
</Unreleased>
<Entry version="1.4.0" date={new Date("2024-12-13")}>
<ChangeItem pull="7350">
Allows disabling telemetry by setting `FIREZONE_NO_TELEMETRY=true`.