From 23161ec840a92376825c43771261b944e13a818f Mon Sep 17 00:00:00 2001 From: Reactor Scram Date: Thu, 1 Aug 2024 16:58:18 -0500 Subject: [PATCH] chore(gui-client): release 1.1.8 (#6136) Signed-off-by: Reactor Scram --- .github/workflows/_tauri.yml | 22 +++++++++++----------- .github/workflows/ci.yml | 2 +- docs/MAINTAINERS.md | 5 ++++- rust/Cargo.lock | 2 +- rust/gui-client/src-tauri/Cargo.toml | 2 +- scripts/Makefile | 4 ++-- website/redirects.js | 6 +++--- website/src/components/Changelog/GUI.tsx | 22 +++++++++++++++++++--- 8 files changed, 42 insertions(+), 23 deletions(-) diff --git a/.github/workflows/_tauri.yml b/.github/workflows/_tauri.yml index 625e5e863..b53bf7437 100644 --- a/.github/workflows/_tauri.yml +++ b/.github/workflows/_tauri.yml @@ -26,31 +26,31 @@ jobs: include: - runs-on: ubuntu-20.04 # mark:next-gui-version - binary-dest-path: firezone-client-gui-linux_1.1.8_x86_64 + binary-dest-path: firezone-client-gui-linux_1.1.9_x86_64 rename-script: ../../scripts/build/tauri-rename-ubuntu.sh upload-script: ../../scripts/build/tauri-upload-ubuntu.sh # mark:next-gui-version - syms-artifact: rust/gui-client/firezone-client-gui-linux_1.1.8_x86_64.dwp + syms-artifact: rust/gui-client/firezone-client-gui-linux_1.1.9_x86_64.dwp # mark:next-gui-version - pkg-artifact: rust/gui-client/firezone-client-gui-linux_1.1.8_x86_64.deb + pkg-artifact: rust/gui-client/firezone-client-gui-linux_1.1.9_x86_64.deb - runs-on: ubuntu-20.04-arm # mark:next-gui-version - binary-dest-path: firezone-client-gui-linux_1.1.8_aarch64 + binary-dest-path: firezone-client-gui-linux_1.1.9_aarch64 rename-script: ../../scripts/build/tauri-rename-ubuntu.sh upload-script: ../../scripts/build/tauri-upload-ubuntu.sh # mark:next-gui-version - syms-artifact: rust/gui-client/firezone-client-gui-linux_1.1.8_aarch64.dwp + syms-artifact: rust/gui-client/firezone-client-gui-linux_1.1.9_aarch64.dwp # mark:next-gui-version - pkg-artifact: rust/gui-client/firezone-client-gui-linux_1.1.8_aarch64.deb + pkg-artifact: rust/gui-client/firezone-client-gui-linux_1.1.9_aarch64.deb - runs-on: windows-2019 # mark:next-gui-version - binary-dest-path: firezone-client-gui-windows_1.1.8_x86_64 + binary-dest-path: firezone-client-gui-windows_1.1.9_x86_64 rename-script: ../../scripts/build/tauri-rename-windows.sh upload-script: ../../scripts/build/tauri-upload-windows.sh # mark:next-gui-version - syms-artifact: rust/gui-client/firezone-client-gui-windows_1.1.8_x86_64.pdb + syms-artifact: rust/gui-client/firezone-client-gui-windows_1.1.9_x86_64.pdb # mark:next-gui-version - pkg-artifact: rust/gui-client/firezone-client-gui-windows_1.1.8_x86_64.msi + pkg-artifact: rust/gui-client/firezone-client-gui-windows_1.1.9_x86_64.msi env: BINARY_DEST_PATH: ${{ matrix.binary-dest-path }} AZURE_KEY_VAULT_URI: ${{ secrets.AZURE_KEY_VAULT_URI }} @@ -96,7 +96,7 @@ jobs: if: ${{ runner.os == 'Windows' }} shell: bash # mark:next-gui-version - run: ../../scripts/build/sign.sh ../target/release/bundle/msi/Firezone_1.1.8_x64_en-US.msi + run: ../../scripts/build/sign.sh ../target/release/bundle/msi/Firezone_1.1.9_x64_en-US.msi - name: Rename artifacts and compute SHA256 shell: bash run: ${{ matrix.rename-script }} @@ -121,6 +121,6 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} REPOSITORY: ${{ github.repository }} # mark:next-gui-version - TAG_NAME: gui-client-1.1.8 + TAG_NAME: gui-client-1.1.9 shell: bash run: ${{ matrix.upload-script }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eb6677c51..3a347e7bb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -52,7 +52,7 @@ jobs: - release_name: headless-client-1.1.4 config_name: release-drafter-headless-client.yml # mark:next-gui-version - - release_name: gui-client-1.1.8 + - release_name: gui-client-1.1.9 config_name: release-drafter-gui-client.yml steps: - uses: release-drafter/release-drafter@v6 diff --git a/docs/MAINTAINERS.md b/docs/MAINTAINERS.md index 262304911..bbcc683eb 100644 --- a/docs/MAINTAINERS.md +++ b/docs/MAINTAINERS.md @@ -32,7 +32,10 @@ Given that `main` is tested: 1. Publish the release. Tags and release name should be auto generated. This will trigger pushing Docker images to `ghcr.io`. 1. Open a PR and make the following changes: 1. Update [scripts/Makefile](../scripts/Makefile) with the new version number(s). Run `make -f scripts/Makefile version` to propagate the versions in the Makefile to all components. -1. Update the Changelog (e.g. `../website/src/components/Changelog/GUI.tsx`) with the new version number(s) and release notes. +1. Update the Changelog (e.g. `../website/src/components/Changelog/GUI.tsx`) with: + 1. New version numbers + 1. Release notes + 1. Release date 1. Update the known issues in `website/src/app/kb/client-apps/*` 1. When the PR merges, the website will now redirect to the new version(s). diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 2f55d64d0..327efdc29 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -1848,7 +1848,7 @@ dependencies = [ [[package]] name = "firezone-gui-client" -version = "1.1.8" +version = "1.1.9" dependencies = [ "anyhow", "arboard", diff --git a/rust/gui-client/src-tauri/Cargo.toml b/rust/gui-client/src-tauri/Cargo.toml index f86ee5543..afc3cb40f 100644 --- a/rust/gui-client/src-tauri/Cargo.toml +++ b/rust/gui-client/src-tauri/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "firezone-gui-client" # mark:next-gui-version -version = "1.1.8" +version = "1.1.9" description = "Firezone" edition = "2021" default-run = "firezone-gui-client" diff --git a/scripts/Makefile b/scripts/Makefile index 21ec15c94..f961ddd84 100644 --- a/scripts/Makefile +++ b/scripts/Makefile @@ -16,14 +16,14 @@ current-apple-version = 1.1.2 current-android-version = 1.1.3 current-gateway-version = 1.1.2 -current-gui-version = 1.1.7 +current-gui-version = 1.1.8 current-headless-version = 1.1.3 # Tracks the next version to release for each platform next-apple-version = 1.1.3 next-android-version = 1.1.4 next-gateway-version = 1.1.3 -next-gui-version = 1.1.8 +next-gui-version = 1.1.9 next-headless-version = 1.1.4 # macOS uses a slightly different sed syntax diff --git a/website/redirects.js b/website/redirects.js index 1af558798..50747ed4b 100644 --- a/website/redirects.js +++ b/website/redirects.js @@ -10,7 +10,7 @@ module.exports = [ source: "/dl/firezone-client-gui-windows/latest/x86_64", destination: // mark:current-gui-version - "https://www.github.com/firezone/firezone/releases/download/gui-client-1.1.7/firezone-client-gui-windows_1.1.7_x86_64.msi", + "https://www.github.com/firezone/firezone/releases/download/gui-client-1.1.8/firezone-client-gui-windows_1.1.8_x86_64.msi", permanent: false, }, /* @@ -22,14 +22,14 @@ module.exports = [ source: "/dl/firezone-client-gui-linux/latest/x86_64", destination: // mark:current-gui-version - "https://www.github.com/firezone/firezone/releases/download/gui-client-1.1.7/firezone-client-gui-linux_1.1.7_x86_64.deb", + "https://www.github.com/firezone/firezone/releases/download/gui-client-1.1.8/firezone-client-gui-linux_1.1.8_x86_64.deb", permanent: false, }, { source: "/dl/firezone-client-gui-linux/latest/aarch64", destination: // mark:current-gui-version - "https://www.github.com/firezone/firezone/releases/download/gui-client-1.1.7/firezone-client-gui-linux_1.1.7_aarch64.deb", + "https://www.github.com/firezone/firezone/releases/download/gui-client-1.1.8/firezone-client-gui-linux_1.1.8_aarch64.deb", permanent: false, }, { diff --git a/website/src/components/Changelog/GUI.tsx b/website/src/components/Changelog/GUI.tsx index 4e418bfdd..efb9872a2 100644 --- a/website/src/components/Changelog/GUI.tsx +++ b/website/src/components/Changelog/GUI.tsx @@ -12,16 +12,32 @@ export default function GUI({ title }: { title: string }) { return ( - {/* + {/*
    - - Adds network roaming support. + + This is a maintenance release with no user-facing changes. This is a maintenance release with no user-facing changes.
*/} + +
    + + Adds network roaming support. + + + Fixes "Element not found" error when setting routes. + + + Removes keyboard accelerators, which were not working. + + + Puts angle brackets around hyperlinks in the menu. + +
+