docs: add changelog entries for several issues (#9113)

As part of going through the changes since the last Client and Gateway
relies, I noticed that for several of the things we fixed, it might be
worth adding changelog entries.
This commit is contained in:
Thomas Eizinger
2025-05-13 23:35:02 +10:00
committed by GitHub
parent 45924eb90b
commit 407a67cb40
5 changed files with 57 additions and 2 deletions

View File

@@ -19,7 +19,20 @@ export default function Android() {
return (
<Entries downloadLinks={downloadLinks} title="Android">
{/* 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="9014">
Fixes an issue where idle connections would be slow (~60s) in
detecting changes to network connectivity.
</ChangeItem>
<ChangeItem pull="9018">
Further improves performance of relayed connections on IPv4-only
systems.
</ChangeItem>
<ChangeItem pull="9093">
Fixes a rare panic when the DNS servers on the system would change
while Firezone is connected.
</ChangeItem>
</Unreleased>
<Entry version="1.4.8" date={new Date("2025-04-30")}>
<ChangeItem pull="8920">
Improves connection reliability by maintaining the order of IP packets

View File

@@ -23,7 +23,20 @@ export default function Apple() {
return (
<Entries downloadLinks={downloadLinks} title="macOS / iOS">
{/* 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="9014">
Fixes an issue where idle connections would be slow (~60s) in
detecting changes to network connectivity.
</ChangeItem>
<ChangeItem pull="9018">
Further improves performance of relayed connections on IPv4-only
systems.
</ChangeItem>
<ChangeItem pull="9093">
Fixes a rare panic when the DNS servers on the system would change
while Firezone is connected.
</ChangeItem>
</Unreleased>
<Entry version="1.4.14" date={new Date("2025-05-02")}>
<ChangeItem pull="9005">
Fixes an issue where the IP checksum was not updated when ECN bits were set.

View File

@@ -9,6 +9,14 @@ export default function GUI({ os }: { os: OS }) {
<Entries downloadLinks={downloadLinks(os)} title={title(os)}>
{/* 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>
<ChangeItem pull="9014">
Fixes an issue where idle connections would be slow (~60s) in
detecting changes to network connectivity.
</ChangeItem>
<ChangeItem pull="9018">
Further improves performance of relayed connections on IPv4-only
systems.
</ChangeItem>
{os === OS.Windows && (
<ChangeItem pull="9021">
Optimizes network change detection.
@@ -20,6 +28,15 @@ export default function GUI({ os }: { os: OS }) {
initialised.
</ChangeItem>
)}
<ChangeItem pull="9093">
Fixes a rare panic when the DNS servers on the system would change
while Firezone is connected.
</ChangeItem>
{os === OS.Windows && (
<ChangeItem pull="9112">
Fixes a crash when the tray menu cannot be initialised.
</ChangeItem>
)}
</Unreleased>
<Entry version="1.4.12" date={new Date("2025-04-30")}>
{os === OS.Linux && (

View File

@@ -31,6 +31,10 @@ export default function Gateway() {
Fixes an issue where service discovery for DNS resources would fail
in case the Gateway's started up with no network connectivity.
</ChangeItem>
<ChangeItem pull="9088">
Fixes an issue where large batches of packets to the same Client got
dropped under high load.
</ChangeItem>
</Unreleased>
<Entry version="1.4.8" date={new Date("2025-05-02")}>
<ChangeItem pull="9009">

View File

@@ -10,6 +10,14 @@ export default function Headless({ os }: { os: OS }) {
<Entries downloadLinks={downloadLinks(os)} title={title(os)}>
{/* 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>
<ChangeItem pull="9014">
Fixes an issue where idle connections would be slow (~60s) in
detecting changes to network connectivity.
</ChangeItem>
<ChangeItem pull="9018">
Further improves performance of relayed connections on IPv4-only
systems.
</ChangeItem>
{os === OS.Windows && (
<ChangeItem pull="9021">
Optimizes network change detection.