chore: Bump all clients and gateway versions (#6149)

Includes major fixes https://github.com/firezone/firezone/pull/6143 and
https://github.com/firezone/firezone/pull/6117
This commit is contained in:
Jamil
2024-08-02 01:12:49 -07:00
committed by GitHub
parent 63de0efb73
commit 51e0b61c9c
19 changed files with 119 additions and 67 deletions

View File

@@ -153,9 +153,9 @@ jobs:
artifact: firezone-client-headless-linux
image_name: client
# mark:next-headless-version
release_name: headless-client-1.1.4
release_name: headless-client-1.1.5
# mark:next-headless-version
version: 1.1.4
version: 1.1.5
- package: firezone-relay
artifact: firezone-relay
image_name: relay
@@ -163,9 +163,9 @@ jobs:
artifact: firezone-gateway
image_name: gateway
# mark:next-gateway-version
release_name: gateway-1.1.3
release_name: gateway-1.1.4
# mark:next-gateway-version
version: 1.1.3
version: 1.1.4
- package: snownet-tests
artifact: snownet-tests
image_name: snownet-tests
@@ -348,7 +348,7 @@ jobs:
- name: relay
- name: gateway
# mark:next-gateway-version
version: 1.1.3
version: 1.1.4
- name: client
# mark:next-client-version
version: 1.0.6

View File

@@ -26,31 +26,31 @@ jobs:
include:
- runs-on: ubuntu-20.04
# mark:next-gui-version
binary-dest-path: firezone-client-gui-linux_1.1.9_x86_64
binary-dest-path: firezone-client-gui-linux_1.1.10_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.9_x86_64.dwp
syms-artifact: rust/gui-client/firezone-client-gui-linux_1.1.10_x86_64.dwp
# mark:next-gui-version
pkg-artifact: rust/gui-client/firezone-client-gui-linux_1.1.9_x86_64.deb
pkg-artifact: rust/gui-client/firezone-client-gui-linux_1.1.10_x86_64.deb
- runs-on: ubuntu-20.04-arm
# mark:next-gui-version
binary-dest-path: firezone-client-gui-linux_1.1.9_aarch64
binary-dest-path: firezone-client-gui-linux_1.1.10_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.9_aarch64.dwp
syms-artifact: rust/gui-client/firezone-client-gui-linux_1.1.10_aarch64.dwp
# mark:next-gui-version
pkg-artifact: rust/gui-client/firezone-client-gui-linux_1.1.9_aarch64.deb
pkg-artifact: rust/gui-client/firezone-client-gui-linux_1.1.10_aarch64.deb
- runs-on: windows-2019
# mark:next-gui-version
binary-dest-path: firezone-client-gui-windows_1.1.9_x86_64
binary-dest-path: firezone-client-gui-windows_1.1.10_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.9_x86_64.pdb
syms-artifact: rust/gui-client/firezone-client-gui-windows_1.1.10_x86_64.pdb
# mark:next-gui-version
pkg-artifact: rust/gui-client/firezone-client-gui-windows_1.1.9_x86_64.msi
pkg-artifact: rust/gui-client/firezone-client-gui-windows_1.1.10_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.9_x64_en-US.msi
run: ../../scripts/build/sign.sh ../target/release/bundle/msi/Firezone_1.1.10_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.9
TAG_NAME: gui-client-1.1.10
shell: bash
run: ${{ matrix.upload-script }}

View File

@@ -46,13 +46,13 @@ jobs:
matrix:
include:
# mark:next-gateway-version
- release_name: gateway-1.1.3
- release_name: gateway-1.1.4
config_name: release-drafter-gateway.yml
# mark:next-headless-version
- release_name: headless-client-1.1.4
- release_name: headless-client-1.1.5
config_name: release-drafter-headless-client.yml
# mark:next-gui-version
- release_name: gui-client-1.1.9
- release_name: gui-client-1.1.10
config_name: release-drafter-gui-client.yml
steps:
- uses: release-drafter/release-drafter@v6

View File

@@ -40,11 +40,11 @@ jobs:
if [[ "${{ github.event.release.name }}" =~ gateway* ]]; then
ARTIFACT=gateway
# mark:next-gateway-version
VERSION="1.1.3"
VERSION="1.1.4"
elif [[ "${{ github.event.release.name }}" =~ headless* ]]; then
ARTIFACT=client
# mark:next-headless-version
VERSION="1.1.4"
VERSION="1.1.5"
else
echo "Release doesn't require publishing Docker images"
exit 0

View File

@@ -56,7 +56,7 @@ android {
targetSdk = 35
versionCode = (System.currentTimeMillis() / 1000 / 10).toInt()
// mark:next-android-version
versionName = "1.1.4"
versionName = "1.1.5"
multiDexEnabled = true
testInstrumentationRunner = "dev.firezone.android.core.HiltTestRunner"
}

10
rust/Cargo.lock generated
View File

@@ -990,7 +990,7 @@ dependencies = [
[[package]]
name = "connlib-client-android"
version = "1.1.4"
version = "1.1.5"
dependencies = [
"android_log-sys",
"backoff",
@@ -1015,7 +1015,7 @@ dependencies = [
[[package]]
name = "connlib-client-apple"
version = "1.1.3"
version = "1.1.4"
dependencies = [
"anyhow",
"backoff",
@@ -1812,7 +1812,7 @@ dependencies = [
[[package]]
name = "firezone-gateway"
version = "1.1.3"
version = "1.1.4"
dependencies = [
"anyhow",
"async-trait",
@@ -1848,7 +1848,7 @@ dependencies = [
[[package]]
name = "firezone-gui-client"
version = "1.1.9"
version = "1.1.10"
dependencies = [
"anyhow",
"arboard",
@@ -1899,7 +1899,7 @@ dependencies = [
[[package]]
name = "firezone-headless-client"
version = "1.1.4"
version = "1.1.5"
dependencies = [
"anyhow",
"atomicwrites",

View File

@@ -1,7 +1,7 @@
[package]
name = "connlib-client-android"
# mark:next-android-version
version = "1.1.4"
version = "1.1.5"
edition = "2021"
[lib]

View File

@@ -1,7 +1,7 @@
[package]
name = "connlib-client-apple"
# mark:next-apple-version
version = "1.1.3"
version = "1.1.4"
edition = "2021"
[features]

View File

@@ -1,7 +1,7 @@
[package]
name = "firezone-gateway"
# mark:next-gateway-version
version = "1.1.3"
version = "1.1.4"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@@ -1,7 +1,7 @@
[package]
name = "firezone-gui-client"
# mark:next-gui-version
version = "1.1.9"
version = "1.1.10"
description = "Firezone"
edition = "2021"
default-run = "firezone-gui-client"

View File

@@ -1,7 +1,7 @@
[package]
name = "firezone-headless-client"
# mark:next-headless-version
version = "1.1.4"
version = "1.1.5"
edition = "2021"
authors = ["Firezone, Inc."]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@@ -13,18 +13,18 @@
# the relevant versions in order to push to a newly drafted release.
# Tracks the current version to use for generating download links and changelogs
current-apple-version = 1.1.2
current-android-version = 1.1.3
current-gateway-version = 1.1.2
current-gui-version = 1.1.8
current-headless-version = 1.1.3
current-apple-version = 1.1.3
current-android-version = 1.1.4
current-gateway-version = 1.1.3
current-gui-version = 1.1.9
current-headless-version = 1.1.4
# 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.9
next-headless-version = 1.1.4
next-apple-version = 1.1.4
next-android-version = 1.1.5
next-gateway-version = 1.1.4
next-gui-version = 1.1.10
next-headless-version = 1.1.5
# macOS uses a slightly different sed syntax
ifeq ($(shell uname),Darwin)

View File

@@ -585,7 +585,7 @@
);
"LIBRARY_SEARCH_PATHS[sdk=iphoneos*]" = "$(CONNLIB_TARGET_DIR)/aarch64-apple-ios/debug";
MACOSX_DEPLOYMENT_TARGET = "$(RECOMMENDED_MACOSX_DEPLOYMENT_TARGET)";
MARKETING_VERSION = 1.1.3;
MARKETING_VERSION = 1.1.4;
ONLY_ACTIVE_ARCH = YES;
OTHER_LDFLAGS = "-lconnlib";
PRODUCT_BUNDLE_IDENTIFIER = "$(inherited).debug.network-extension";
@@ -627,7 +627,7 @@
);
"LIBRARY_SEARCH_PATHS[sdk=iphoneos*]" = "$(CONNLIB_TARGET_DIR)/aarch64-apple-ios/release";
MACOSX_DEPLOYMENT_TARGET = "$(RECOMMENDED_MACOSX_DEPLOYMENT_TARGET)";
MARKETING_VERSION = 1.1.3;
MARKETING_VERSION = 1.1.4;
OTHER_LDFLAGS = "-lconnlib";
PRODUCT_BUNDLE_IDENTIFIER = "$(inherited).network-extension";
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -671,7 +671,7 @@
"LIBRARY_SEARCH_PATHS[arch=arm64]" = "$(CONNLIB_TARGET_DIR)/aarch64-apple-darwin/debug";
"LIBRARY_SEARCH_PATHS[arch=arm64e]" = "$(CONNLIB_TARGET_DIR)/aarch64-apple-darwin/debug";
"LIBRARY_SEARCH_PATHS[arch=x86_64]" = "$(CONNLIB_TARGET_DIR)/x86_64-apple-darwin/debug";
MARKETING_VERSION = 1.1.3;
MARKETING_VERSION = 1.1.4;
OTHER_LDFLAGS = "-lconnlib";
PRODUCT_BUNDLE_IDENTIFIER = "$(inherited).debug.network-extension";
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -714,7 +714,7 @@
"LIBRARY_SEARCH_PATHS[arch=arm64]" = "$(CONNLIB_TARGET_DIR)/aarch64-apple-darwin/release";
"LIBRARY_SEARCH_PATHS[arch=arm64e]" = "$(CONNLIB_TARGET_DIR)/aarch64-apple-darwin/release";
"LIBRARY_SEARCH_PATHS[arch=x86_64]" = "$(CONNLIB_TARGET_DIR)/x86_64-apple-darwin/release";
MARKETING_VERSION = 1.1.3;
MARKETING_VERSION = 1.1.4;
OTHER_LDFLAGS = "-lconnlib";
PRODUCT_BUNDLE_IDENTIFIER = "$(inherited).network-extension";
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -908,7 +908,7 @@
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks";
"LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "@executable_path/../Frameworks";
MARKETING_VERSION = 1.1.3;
MARKETING_VERSION = 1.1.4;
OTHER_LDFLAGS = "";
PRODUCT_BUNDLE_IDENTIFIER = "$(inherited)";
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -959,7 +959,7 @@
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks";
"LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "@executable_path/../Frameworks";
MARKETING_VERSION = 1.1.3;
MARKETING_VERSION = 1.1.4;
PRODUCT_BUNDLE_IDENTIFIER = "$(inherited)";
PRODUCT_MODULE_NAME = "$(PRODUCT_NAME:c99extidentifier)";
PRODUCT_NAME = "$(TARGET_NAME)";

View File

@@ -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.8/firezone-client-gui-windows_1.1.8_x86_64.msi",
"https://www.github.com/firezone/firezone/releases/download/gui-client-1.1.9/firezone-client-gui-windows_1.1.9_x86_64.msi",
permanent: false,
},
/*
@@ -22,35 +22,35 @@ 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.8/firezone-client-gui-linux_1.1.8_x86_64.deb",
"https://www.github.com/firezone/firezone/releases/download/gui-client-1.1.9/firezone-client-gui-linux_1.1.9_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.8/firezone-client-gui-linux_1.1.8_aarch64.deb",
"https://www.github.com/firezone/firezone/releases/download/gui-client-1.1.9/firezone-client-gui-linux_1.1.9_aarch64.deb",
permanent: false,
},
{
source: "/dl/firezone-client-headless-linux/latest/x86_64",
destination:
// mark:current-headless-version
"https://www.github.com/firezone/firezone/releases/download/headless-client-1.1.3/firezone-client-headless-linux_1.1.3_x86_64",
"https://www.github.com/firezone/firezone/releases/download/headless-client-1.1.4/firezone-client-headless-linux_1.1.4_x86_64",
permanent: false,
},
{
source: "/dl/firezone-client-headless-linux/latest/aarch64",
destination:
// mark:current-headless-version
"https://www.github.com/firezone/firezone/releases/download/headless-client-1.1.3/firezone-client-headless-linux_1.1.3_aarch64",
"https://www.github.com/firezone/firezone/releases/download/headless-client-1.1.4/firezone-client-headless-linux_1.1.4_aarch64",
permanent: false,
},
{
source: "/dl/firezone-client-headless-linux/latest/armv7",
destination:
// mark:current-headless-version
"https://www.github.com/firezone/firezone/releases/download/headless-client-1.1.3/firezone-client-headless-linux_1.1.3_armv7",
"https://www.github.com/firezone/firezone/releases/download/headless-client-1.1.4/firezone-client-headless-linux_1.1.4_armv7",
permanent: false,
},
/*
@@ -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.1.2/firezone-gateway_1.1.2_x86_64",
"https://www.github.com/firezone/firezone/releases/download/gateway-1.1.3/firezone-gateway_1.1.3_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.1.2/firezone-gateway_1.1.2_aarch64",
"https://www.github.com/firezone/firezone/releases/download/gateway-1.1.3/firezone-gateway_1.1.3_aarch64",
permanent: false,
},
{
source: "/dl/firezone-gateway/latest/armv7",
destination:
// mark:current-gateway-version
"https://www.github.com/firezone/firezone/releases/download/gateway-1.1.2/firezone-gateway_1.1.2_armv7",
"https://www.github.com/firezone/firezone/releases/download/gateway-1.1.3/firezone-gateway_1.1.3_armv7",
permanent: false,
},
/*

View File

@@ -8,6 +8,20 @@ export default function Android() {
href="https://play.google.com/store/apps/details?id=dev.firezone.android"
title="Android"
>
<Entry version="1.1.4" date={new Date("2024-08-02")}>
<ul className="list-disc space-y-2 pl-4 mb-4">
<li className="pl-2">
Fixes{" "}
<Link
href="https://github.com/firezone/firezone/pull/6143"
className="text-accent-500 underline hover:no-underline"
>
an issue
</Link>{" "}
where DNS queries could time out on some networks.
</li>
</ul>
</Entry>
<Entry version="1.1.3" date={new Date("2024-07-06")}>
<ul className="list-disc space-y-2 pl-4 mb-4">
<li className="pl-2">

View File

@@ -1,3 +1,4 @@
import Link from "next/link";
import Entry from "./Entry";
import Entries from "./Entries";
@@ -7,6 +8,20 @@ export default function Apple() {
href="https://apps.apple.com/us/app/firezone/id6443661826"
title="macOS / iOS"
>
<Entry version="1.1.3" date={new Date("2024-08-02")}>
<ul className="list-disc space-y-2 pl-4 mb-4">
<li className="pl-2">
Fixes{" "}
<Link
href="https://github.com/firezone/firezone/pull/6143"
className="text-accent-500 underline hover:no-underline"
>
an issue
</Link>{" "}
where DNS queries could time out on some networks.
</li>
</ul>
</Entry>
<Entry version="1.1.2" date={new Date("2024-07-03")}>
<ul className="list-disc space-y-2 pl-4 mb-4">
<li className="pl-2">

View File

@@ -12,16 +12,13 @@ export default function GUI({ title }: { title: string }) {
return (
<Entries href={href} arches={arches} title={title}>
{/*<Entry version="1.1.9" date={new Date("2024-07-17")}>
<Entry version="1.1.9" date={new Date("2024-08-02")}>
<ul className="list-disc space-y-2 pl-4 mb-4">
<ChangeItem enable={title === "Linux GUI"}>
This is a maintenance release with no user-facing changes.
</ChangeItem>
<ChangeItem enable={title === "Windows"}>
This is a maintenance release with no user-facing changes.
<ChangeItem enable pull="6143">
Fixes an issue where DNS queries could time out on some networks.
</ChangeItem>
</ul>
</Entry>*/}
</Entry>
<Entry version="1.1.8" date={new Date("2024-08-01")}>
<ul className="list-disc space-y-2 pl-4 mb-4">
<ChangeItem enable={title === "Linux GUI"} pull="5978">
@@ -41,7 +38,8 @@ export default function GUI({ title }: { title: string }) {
<Entry version="1.1.7" date={new Date("2024-07-17")}>
<ul className="list-disc space-y-2 pl-4 mb-4">
<ChangeItem enable={title === "Linux GUI"} pull="5848">
Stops the GUI and prompts you to re-launch it if you update Firezone while the GUI is running.
Stops the GUI and prompts you to re-launch it if you update Firezone
while the GUI is running.
</ChangeItem>
<ChangeItem enable={title === "Windows"} pull="5375">
Improves sign-in speed and fixes a DNS leak
@@ -51,13 +49,15 @@ export default function GUI({ title }: { title: string }) {
<Entry version="1.1.6" date={new Date("2024-07-12")}>
<ul className="list-disc space-y-2 pl-4 mb-4">
<ChangeItem pull="5795">
Unexpected IPC service stops are now reported as "IPC connection closed".
Unexpected IPC service stops are now reported as "IPC connection
closed".
</ChangeItem>
<ChangeItem enable={title === "Windows"} pull="5827">
Fixes a bug where DNS could stop working when you sign out.
</ChangeItem>
<ChangeItem pull="5817">
Shows different tray icons when signed out, signing in, and signed in.
Shows different tray icons when signed out, signing in, and signed
in.
</ChangeItem>
</ul>
</Entry>

View File

@@ -8,6 +8,21 @@ export default function Gateway() {
return (
<Entries href={href} arches={arches} title="Gateway">
<Entry version="1.1.3" date={new Date("2024-08-02")}>
<ul className="list-disc space-y-2 pl-4 mb-4">
<li className="pl-2">
Fixes{" "}
<Link
className="text-accent-500 underline hover:no-underline"
href="https://github.com/firezone/firezone/pull/6117"
>
an issue
</Link>{" "}
where Gateways could become unresponsive after new versions of the
Firezone infrastructure was deployed.
</li>
</ul>
</Entry>
<Entry version="1.1.2" date={new Date("2024-06-29")}>
<ul className="list-disc space-y-2 pl-4 mb-4">
<li className="pl-2">Reduces log noise for the default log level.</li>

View File

@@ -1,6 +1,7 @@
import Link from "next/link";
import Entry from "./Entry";
import Entries from "./Entries";
import ChangeItem from "./ChangeItem";
export default function Headless() {
const href = "/dl/firezone-client-headless-linux/:version/:arch";
@@ -8,6 +9,13 @@ export default function Headless() {
return (
<Entries href={href} arches={arches} title="Linux headless">
<Entry version="1.1.4" date={new Date("2024-08-02")}>
<ul className="list-disc space-y-2 pl-4 mb-4">
<ChangeItem enable pull="6143">
Fixes an issue where DNS queries could time out on some networks.
</ChangeItem>
</ul>
</Entry>
<Entry version="1.1.3" date={new Date("2024-07-05")}>
<ul className="list-disc space-y-2 pl-4 mb-4">
<li className="pl-2">