From b7451fcdae3fc47914342db66bf7b4d28b0d3cba Mon Sep 17 00:00:00 2001 From: Thomas Eizinger Date: Wed, 14 May 2025 16:39:03 +1000 Subject: [PATCH] chore: release Gateway 1.4.9 (#9132) --- .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/bump-versions.sh | 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 ba276e64f..47cc3c178 100644 --- a/.github/workflows/_build_artifacts.yml +++ b/.github/workflows/_build_artifacts.yml @@ -236,9 +236,9 @@ jobs: artifact: firezone-gateway image_name: gateway # mark:next-gateway-version - release_name: gateway-1.4.9 + release_name: gateway-1.4.10 # mark:next-gateway-version - version: 1.4.9 + version: 1.4.10 - package: http-test-server artifact: http-test-server image_name: http-test-server @@ -410,7 +410,7 @@ jobs: - name: relay - name: gateway # mark:next-gateway-version - version: 1.4.9 + version: 1.4.10 - name: client # mark:next-client-version version: 1.0.6 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 74bb3eec5..159a4b38a 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.9 + - release_name: gateway-1.4.10 config_name: release-drafter-gateway.yml # mark:next-headless-version - release_name: headless-client-1.4.9 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 011db3486..cd2280d57 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.9" + VERSION="1.4.10" elif [[ "${{ github.event.release.name }}" =~ headless* ]]; then ARTIFACT=client # mark:next-headless-version diff --git a/rust/Cargo.lock b/rust/Cargo.lock index c1f3a2a63..b7eee43f8 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -2139,7 +2139,7 @@ dependencies = [ [[package]] name = "firezone-gateway" -version = "1.4.9" +version = "1.4.10" dependencies = [ "anyhow", "async-trait", diff --git a/rust/gateway/Cargo.toml b/rust/gateway/Cargo.toml index 9cc355b39..2cfcb64f0 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.9" +version = "1.4.10" 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/bump-versions.sh b/scripts/bump-versions.sh index c4f903a78..1f8748a22 100755 --- a/scripts/bump-versions.sh +++ b/scripts/bump-versions.sh @@ -177,8 +177,8 @@ function headless() { # 3. Run `scripts/bump-versions.sh gateway` to update the versions in the codebase. # 4. Commit the changes and open a PR. function gateway() { - current_gateway_version="1.4.8" - next_gateway_version="1.4.9" + current_gateway_version="1.4.9" + next_gateway_version="1.4.10" update_changelog "website/src/components/Changelog/Gateway.tsx" "$current_gateway_version" find website -type f -name "redirects.js" -exec sed "${SEDARG[@]}" -e '/mark:current-gateway-version/{n;s/[0-9]\{1,\}\.[0-9]\{1,\}\.[0-9]\{1,\}/'"${current_gateway_version}"'/g;}' {} \; diff --git a/website/redirects.js b/website/redirects.js index 6b7538123..cdb729465 100644 --- a/website/redirects.js +++ b/website/redirects.js @@ -105,21 +105,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.8/firezone-gateway_1.4.8_x86_64", + "https://www.github.com/firezone/firezone/releases/download/gateway-1.4.9/firezone-gateway_1.4.9_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.8/firezone-gateway_1.4.8_aarch64", + "https://www.github.com/firezone/firezone/releases/download/gateway-1.4.9/firezone-gateway_1.4.9_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.8/firezone-gateway_1.4.8_armv7", + "https://www.github.com/firezone/firezone/releases/download/gateway-1.4.9/firezone-gateway_1.4.9_armv7", permanent: false, }, /* diff --git a/website/src/app/api/releases/route.ts b/website/src/app/api/releases/route.ts index 30c09edb1..67fdcc366 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.4.8", // mark:current-gateway-version - gateway: "1.4.8", + gateway: "1.4.9", }; return NextResponse.json(versions, { diff --git a/website/src/components/Changelog/Gateway.tsx b/website/src/components/Changelog/Gateway.tsx index d7cee5b3b..f66cb0adb 100644 --- a/website/src/components/Changelog/Gateway.tsx +++ b/website/src/components/Changelog/Gateway.tsx @@ -22,7 +22,8 @@ export default function Gateway() { return ( - + + Fixes an issue where ICMP unreachable errors for large packets would not be sent. @@ -35,7 +36,7 @@ export default function Gateway() { Fixes an issue where large batches of packets to the same Client got dropped under high load. - + Fixes an issue where ECN bits got erroneously cleared without updating