ci: Bump all clients and gateway (#6923)

Main fix: idle connection timing. These have already been released.

---------

Signed-off-by: Jamil <jamilbk@users.noreply.github.com>
This commit is contained in:
Jamil
2024-10-03 07:12:52 -07:00
committed by GitHub
parent a95a2a2760
commit 613127d298
21 changed files with 79 additions and 74 deletions

View File

@@ -155,9 +155,9 @@ jobs:
artifact: firezone-client-headless-linux
image_name: client
# mark:next-headless-version
release_name: headless-client-1.3.4
release_name: headless-client-1.3.5
# mark:next-headless-version
version: 1.3.4
version: 1.3.5
- package: firezone-relay
artifact: firezone-relay
image_name: relay
@@ -165,9 +165,9 @@ jobs:
artifact: firezone-gateway
image_name: gateway
# mark:next-gateway-version
release_name: gateway-1.3.2
release_name: gateway-1.3.3
# mark:next-gateway-version
version: 1.3.2
version: 1.3.3
- package: http-test-server
artifact: http-test-server
image_name: http-test-server
@@ -348,7 +348,7 @@ jobs:
- name: relay
- name: gateway
# mark:next-gateway-version
version: 1.3.2
version: 1.3.3
- name: client
# mark:next-client-version
version: 1.0.6

View File

@@ -31,31 +31,31 @@ jobs:
include:
- runs-on: ubuntu-20.04
# mark:next-gui-version
binary-dest-path: firezone-client-gui-linux_1.3.7_x86_64
binary-dest-path: firezone-client-gui-linux_1.3.8_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.3.7_x86_64.dwp
syms-artifact: rust/gui-client/firezone-client-gui-linux_1.3.8_x86_64.dwp
# mark:next-gui-version
pkg-artifact: rust/gui-client/firezone-client-gui-linux_1.3.7_x86_64.deb
pkg-artifact: rust/gui-client/firezone-client-gui-linux_1.3.8_x86_64.deb
- runs-on: ubuntu-22.04-arm
# mark:next-gui-version
binary-dest-path: firezone-client-gui-linux_1.3.7_aarch64
binary-dest-path: firezone-client-gui-linux_1.3.8_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.3.7_aarch64.dwp
syms-artifact: rust/gui-client/firezone-client-gui-linux_1.3.8_aarch64.dwp
# mark:next-gui-version
pkg-artifact: rust/gui-client/firezone-client-gui-linux_1.3.7_aarch64.deb
pkg-artifact: rust/gui-client/firezone-client-gui-linux_1.3.8_aarch64.deb
- runs-on: windows-2019
# mark:next-gui-version
binary-dest-path: firezone-client-gui-windows_1.3.7_x86_64
binary-dest-path: firezone-client-gui-windows_1.3.8_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.3.7_x86_64.pdb
syms-artifact: rust/gui-client/firezone-client-gui-windows_1.3.8_x86_64.pdb
# mark:next-gui-version
pkg-artifact: rust/gui-client/firezone-client-gui-windows_1.3.7_x86_64.msi
pkg-artifact: rust/gui-client/firezone-client-gui-windows_1.3.8_x86_64.msi
env:
BINARY_DEST_PATH: ${{ matrix.binary-dest-path }}
AZURE_KEY_VAULT_URI: ${{ secrets.AZURE_KEY_VAULT_URI }}
@@ -103,7 +103,7 @@ jobs:
if: ${{ runner.os == 'Windows' }}
shell: bash
# mark:next-gui-version
run: ../../scripts/build/sign.sh ../target/release/bundle/msi/Firezone_1.3.7_x64_en-US.msi
run: ../../scripts/build/sign.sh ../target/release/bundle/msi/Firezone_1.3.8_x64_en-US.msi
- name: Rename artifacts and compute SHA256
shell: bash
run: ${{ matrix.rename-script }}
@@ -128,6 +128,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPOSITORY: ${{ github.repository }}
# mark:next-gui-version
TAG_NAME: gui-client-1.3.7
TAG_NAME: gui-client-1.3.8
shell: bash
run: ${{ matrix.upload-script }}

View File

@@ -47,13 +47,13 @@ jobs:
matrix:
include:
# mark:next-gateway-version
- release_name: gateway-1.3.2
- release_name: gateway-1.3.3
config_name: release-drafter-gateway.yml
# mark:next-headless-version
- release_name: headless-client-1.3.4
- release_name: headless-client-1.3.5
config_name: release-drafter-headless-client.yml
# mark:next-gui-version
- release_name: gui-client-1.3.7
- release_name: gui-client-1.3.8
config_name: release-drafter-gui-client.yml
steps:
- uses: release-drafter/release-drafter@v6

View File

@@ -38,11 +38,11 @@ jobs:
if [[ "${{ github.event.release.name }}" =~ gateway* ]]; then
ARTIFACT=gateway
# mark:next-gateway-version
VERSION="1.3.2"
VERSION="1.3.3"
elif [[ "${{ github.event.release.name }}" =~ headless* ]]; then
ARTIFACT=client
# mark:next-headless-version
VERSION="1.3.4"
VERSION="1.3.5"
else
echo "Shouldn't have gotten here. Exiting."
exit 1

View File

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

12
rust/Cargo.lock generated
View File

@@ -1227,7 +1227,7 @@ checksum = "baf0a07a401f374238ab8e2f11a104d2851bf9ce711ec69804834de8af45c7af"
[[package]]
name = "connlib-client-android"
version = "1.3.5"
version = "1.3.6"
dependencies = [
"android_log-sys",
"backoff",
@@ -1254,7 +1254,7 @@ dependencies = [
[[package]]
name = "connlib-client-apple"
version = "1.3.6"
version = "1.3.7"
dependencies = [
"anyhow",
"backoff",
@@ -2227,7 +2227,7 @@ dependencies = [
[[package]]
name = "firezone-gateway"
version = "1.3.2"
version = "1.3.3"
dependencies = [
"anyhow",
"async-trait",
@@ -2264,7 +2264,7 @@ dependencies = [
[[package]]
name = "firezone-gui-client"
version = "1.3.7"
version = "1.3.8"
dependencies = [
"anyhow",
"atomicwrites",
@@ -2304,7 +2304,7 @@ dependencies = [
[[package]]
name = "firezone-gui-client-common"
version = "1.3.7"
version = "1.3.8"
dependencies = [
"anyhow",
"arboard",
@@ -2343,7 +2343,7 @@ dependencies = [
[[package]]
name = "firezone-headless-client"
version = "1.3.4"
version = "1.3.5"
dependencies = [
"anyhow",
"atomicwrites",

View File

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

View File

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

View File

@@ -1,7 +1,7 @@
[package]
name = "firezone-gateway"
# mark:next-gateway-version
version = "1.3.2"
version = "1.3.3"
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-common"
# mark:next-gui-version
version = "1.3.7"
version = "1.3.8"
edition = "2021"
[dependencies]

View File

@@ -1,7 +1,7 @@
[package]
name = "firezone-gui-client"
# mark:next-gui-version
version = "1.3.7"
version = "1.3.8"
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.3.4"
version = "1.3.5"
edition = "2021"
authors = ["Firezone, Inc."]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@@ -18,18 +18,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.3.5
current-android-version = 1.3.4
current-gateway-version = 1.3.1
current-gui-version = 1.3.6
current-headless-version = 1.3.3
current-apple-version = 1.3.6
current-android-version = 1.3.5
current-gateway-version = 1.3.2
current-gui-version = 1.3.7
current-headless-version = 1.3.4
# Tracks the next version to release for each platform
next-apple-version = 1.3.6
next-android-version = 1.3.5
next-gateway-version = 1.3.2
next-gui-version = 1.3.7
next-headless-version = 1.3.4
next-apple-version = 1.3.7
next-android-version = 1.3.6
next-gateway-version = 1.3.3
next-gui-version = 1.3.8
next-headless-version = 1.3.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.3.6;
MARKETING_VERSION = 1.3.7;
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.3.6;
MARKETING_VERSION = 1.3.7;
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.3.6;
MARKETING_VERSION = 1.3.7;
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.3.6;
MARKETING_VERSION = 1.3.7;
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.3.6;
MARKETING_VERSION = 1.3.7;
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.3.6;
MARKETING_VERSION = 1.3.7;
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.3.6/firezone-client-gui-windows_1.3.6_x86_64.msi",
"https://www.github.com/firezone/firezone/releases/download/gui-client-1.3.7/firezone-client-gui-windows_1.3.7_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.3.6/firezone-client-gui-linux_1.3.6_x86_64.deb",
"https://www.github.com/firezone/firezone/releases/download/gui-client-1.3.7/firezone-client-gui-linux_1.3.7_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.3.6/firezone-client-gui-linux_1.3.6_aarch64.deb",
"https://www.github.com/firezone/firezone/releases/download/gui-client-1.3.7/firezone-client-gui-linux_1.3.7_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.3.3/firezone-client-headless-linux_1.3.3_x86_64",
"https://www.github.com/firezone/firezone/releases/download/headless-client-1.3.4/firezone-client-headless-linux_1.3.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.3.3/firezone-client-headless-linux_1.3.3_aarch64",
"https://www.github.com/firezone/firezone/releases/download/headless-client-1.3.4/firezone-client-headless-linux_1.3.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.3.3/firezone-client-headless-linux_1.3.3_armv7",
"https://www.github.com/firezone/firezone/releases/download/headless-client-1.3.4/firezone-client-headless-linux_1.3.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.3.1/firezone-gateway_1.3.1_x86_64",
"https://www.github.com/firezone/firezone/releases/download/gateway-1.3.2/firezone-gateway_1.3.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.3.1/firezone-gateway_1.3.1_aarch64",
"https://www.github.com/firezone/firezone/releases/download/gateway-1.3.2/firezone-gateway_1.3.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.3.1/firezone-gateway_1.3.1_armv7",
"https://www.github.com/firezone/firezone/releases/download/gateway-1.3.2/firezone-gateway_1.3.2_armv7",
permanent: false,
},
/*

View File

@@ -5,15 +5,15 @@ export async function GET(_req: NextRequest) {
const versions = {
portal: await get("deployed_sha"),
// mark:current-apple-version
apple: "1.3.5",
apple: "1.3.6",
// mark:current-android-version
android: "1.3.4",
android: "1.3.5",
// mark:current-gui-version
gui: "1.3.6",
gui: "1.3.7",
// mark:current-headless-version
headless: "1.3.3",
headless: "1.3.4",
// mark:current-gateway-version
gateway: "1.3.1",
gateway: "1.3.2",
};
return NextResponse.json(versions);

View File

@@ -11,7 +11,8 @@ export default function Android() {
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>
<Entry version="1.3.5" date={new Date("2024-10-03")}>
<ChangeItem pull="6831">
Ensures Firefox doesn't attempt to use DNS over HTTPS when Firezone is
active.
@@ -23,7 +24,7 @@ export default function Android() {
<ChangeItem pull="6857">
Sends the Firebase Installation ID for device verification.
</ChangeItem>
</Unreleased>
</Entry>
<Entry version="1.3.4" date={new Date("2024-09-26")}>
<ChangeItem pull="6809">
Fixes a bug where non-wildcard DNS resources were not prioritised over

View File

@@ -11,7 +11,8 @@ export default function Apple() {
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>
<Entry version="1.3.6" date={new Date("2024-10-02")}>
<ChangeItem pull="6831">
Ensures Firefox doesn't attempt to use DNS over HTTPS when Firezone is
active.
@@ -26,7 +27,7 @@ export default function Apple() {
<ChangeItem pull="6857">
iOS: sends Id for vendor for device verification.
</ChangeItem>
</Unreleased>
</Entry>
<Entry version="1.3.5" date={new Date("2024-09-26")}>
<ChangeItem pull="6809">
Fixes a bug where non-wildcard DNS resources were not prioritised over

View File

@@ -14,7 +14,8 @@ export default function GUI({ title }: { title: string }) {
return (
<Entries href={href} arches={arches} title={title}>
{/* 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>
<Entry version="1.3.7" date={new Date("2024-10-02")}>
<ChangeItem pull="6831">
Ensures Firefox doesn't attempt to use DNS over HTTPS when Firezone is
active.
@@ -32,7 +33,7 @@ export default function GUI({ title }: { title: string }) {
<ChangeItem pull="6857">
Tries to send motherboard's hardware ID for device verification.
</ChangeItem>
</Unreleased>
</Entry>
<Entry version="1.3.6" date={new Date("2024-09-25")}>
<ChangeItem pull="6809">
Fixes a bug where non-wildcard DNS resources were not prioritised over

View File

@@ -10,7 +10,8 @@ export default function Gateway() {
return (
<Entries href={href} arches={arches} title="Gateway">
<Unreleased>
<Unreleased></Unreleased>
<Entry version="1.3.2" date={new Date("2024-10-02")}>
<ChangeItem pull="6733">
Reduces log level of the "Couldn't find connection by IP" message so
that it doesn't log each time a client disconnects.
@@ -19,7 +20,7 @@ export default function Gateway() {
Fixes connectivity issues on idle connections by entering an
always-on, low-power mode instead of closing them.
</ChangeItem>
</Unreleased>
</Entry>
<Entry version="1.3.1" date={new Date("2024-09-05")}>
<ChangeItem pull="6563">
Removes unnecessary packet buffers for a minor performance increase.

View File

@@ -11,7 +11,8 @@ export default function Headless() {
return (
<Entries href={href} arches={arches} title="Linux headless">
{/* 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>
<Entry version="1.3.4" date={new Date("2024-10-02")}>
<ChangeItem pull="6831">
Ensures Firefox doesn't attempt to use DNS over HTTPS when Firezone is
active.
@@ -26,7 +27,7 @@ export default function Headless() {
<ChangeItem pull="6857">
Sends the motherboard's hardware ID for device verification.
</ChangeItem>
</Unreleased>
</Entry>
<Entry version="1.3.3" date={new Date("2024-09-25")}>
<ChangeItem pull="6809">
Fixes a bug where non-wildcard DNS resources were not prioritised over