From 7309428cae595f795b08042f8b2f5c9cd80be119 Mon Sep 17 00:00:00 2001 From: Thomas Eizinger Date: Fri, 13 Dec 2024 16:49:19 +1100 Subject: [PATCH] chore(gateway): release version 1.4.2 (#7494) Gateway 1.4.2 has been released (https://github.com/firezone/firezone/releases/tag/gateway-1.4.2). This PR updates the changelog and version numbers accordingly. --- .github/workflows/_build_artifacts.yml | 6 +++--- .github/workflows/ci.yml | 2 +- .github/workflows/publish.yml | 2 +- rust/Cargo.lock | 2 +- rust/gateway/Cargo.toml | 2 +- scripts/Makefile | 4 ++-- website/redirects.js | 6 +++--- website/src/app/api/releases/route.ts | 2 +- website/src/components/Changelog/Gateway.tsx | 5 +++-- 9 files changed, 16 insertions(+), 15 deletions(-) diff --git a/.github/workflows/_build_artifacts.yml b/.github/workflows/_build_artifacts.yml index 30631396b..3323de6ae 100644 --- a/.github/workflows/_build_artifacts.yml +++ b/.github/workflows/_build_artifacts.yml @@ -164,9 +164,9 @@ jobs: artifact: firezone-gateway image_name: gateway # mark:next-gateway-version - release_name: gateway-1.4.2 + release_name: gateway-1.4.3 # mark:next-gateway-version - version: 1.4.2 + version: 1.4.3 - package: http-test-server artifact: http-test-server image_name: http-test-server @@ -346,7 +346,7 @@ jobs: - name: relay - name: gateway # mark:next-gateway-version - version: 1.4.2 + version: 1.4.3 - name: client # mark:next-client-version version: 1.0.6 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cad8fcb93..525d03f46 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,7 +47,7 @@ jobs: matrix: include: # mark:next-gateway-version - - release_name: gateway-1.4.2 + - release_name: gateway-1.4.3 config_name: release-drafter-gateway.yml # mark:next-headless-version - release_name: headless-client-1.4.0 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 4f1d1a585..650f9d88d 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -38,7 +38,7 @@ jobs: if [[ "${{ github.event.release.name }}" =~ gateway* ]]; then ARTIFACT=gateway # mark:next-gateway-version - VERSION="1.4.2" + VERSION="1.4.3" elif [[ "${{ github.event.release.name }}" =~ headless* ]]; then ARTIFACT=client # mark:next-headless-version diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 0e5448d33..17cc1b2dc 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -1946,7 +1946,7 @@ dependencies = [ [[package]] name = "firezone-gateway" -version = "1.4.2" +version = "1.4.3" dependencies = [ "anyhow", "async-trait", diff --git a/rust/gateway/Cargo.toml b/rust/gateway/Cargo.toml index 7c4f168d1..6118ab79c 100644 --- a/rust/gateway/Cargo.toml +++ b/rust/gateway/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "firezone-gateway" # mark:next-gateway-version -version = "1.4.2" +version = "1.4.3" edition = { workspace = true } license = { workspace = true } # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/scripts/Makefile b/scripts/Makefile index 612b3af4e..898a962ff 100644 --- a/scripts/Makefile +++ b/scripts/Makefile @@ -20,14 +20,14 @@ # Tracks the current version to use for generating download links and changelogs current-apple-version = 1.3.9 current-android-version = 1.3.7 -current-gateway-version = 1.4.1 +current-gateway-version = 1.4.2 current-gui-version = 1.4.0 current-headless-version = 1.3.7 # Tracks the next version to release for each platform next-apple-version = 1.4.0 next-android-version = 1.4.0 -next-gateway-version = 1.4.2 +next-gateway-version = 1.4.3 next-gui-version = 1.4.1 next-headless-version = 1.4.0 diff --git a/website/redirects.js b/website/redirects.js index 4d02d7308..ed504bdc4 100644 --- a/website/redirects.js +++ b/website/redirects.js @@ -62,21 +62,21 @@ module.exports = [ source: "/dl/firezone-gateway/latest/x86_64", destination: // mark:current-gateway-version - "https://www.github.com/firezone/firezone/releases/download/gateway-1.4.1/firezone-gateway_1.4.1_x86_64", + "https://www.github.com/firezone/firezone/releases/download/gateway-1.4.2/firezone-gateway_1.4.2_x86_64", permanent: false, }, { source: "/dl/firezone-gateway/latest/aarch64", destination: // mark:current-gateway-version - "https://www.github.com/firezone/firezone/releases/download/gateway-1.4.1/firezone-gateway_1.4.1_aarch64", + "https://www.github.com/firezone/firezone/releases/download/gateway-1.4.2/firezone-gateway_1.4.2_aarch64", permanent: false, }, { source: "/dl/firezone-gateway/latest/armv7", destination: // mark:current-gateway-version - "https://www.github.com/firezone/firezone/releases/download/gateway-1.4.1/firezone-gateway_1.4.1_armv7", + "https://www.github.com/firezone/firezone/releases/download/gateway-1.4.2/firezone-gateway_1.4.2_armv7", permanent: false, }, /* diff --git a/website/src/app/api/releases/route.ts b/website/src/app/api/releases/route.ts index aeecb7174..5b9dcb512 100644 --- a/website/src/app/api/releases/route.ts +++ b/website/src/app/api/releases/route.ts @@ -13,7 +13,7 @@ export async function GET(_req: NextRequest) { // mark:current-headless-version headless: "1.3.7", // mark:current-gateway-version - gateway: "1.4.1", + gateway: "1.4.2", }; return NextResponse.json(versions, { diff --git a/website/src/components/Changelog/Gateway.tsx b/website/src/components/Changelog/Gateway.tsx index 7e6ec9ac7..1a7c1e11a 100644 --- a/website/src/components/Changelog/Gateway.tsx +++ b/website/src/components/Changelog/Gateway.tsx @@ -10,7 +10,8 @@ export default function Gateway() { return ( - + + Adds support for GSO (Generic Segmentation Offload), delivering throughput improvements of up to 60%. @@ -28,7 +29,7 @@ export default function Gateway() { Fixes an issue where SSH connections involving NAT64 failed to establish. - + Mitigates a crash in case the maximum packet size is not respected.