chore(headless-client): publish version 1.3.7 (#7348)

This commit is contained in:
Thomas Eizinger
2024-11-15 05:39:39 +00:00
committed by GitHub
parent 4e423dc51c
commit 4fc7e62ba8
9 changed files with 15 additions and 14 deletions

View File

@@ -154,9 +154,9 @@ jobs:
artifact: firezone-client-headless-linux
image_name: client
# mark:next-headless-version
release_name: headless-client-1.3.7
release_name: headless-client-1.3.8
# mark:next-headless-version
version: 1.3.7
version: 1.3.8
- package: firezone-relay
artifact: firezone-relay
image_name: relay

View File

@@ -50,7 +50,7 @@ jobs:
- release_name: gateway-1.4.1
config_name: release-drafter-gateway.yml
# mark:next-headless-version
- release_name: headless-client-1.3.7
- release_name: headless-client-1.3.8
config_name: release-drafter-headless-client.yml
# mark:next-gui-version
- release_name: gui-client-1.3.13

View File

@@ -42,7 +42,7 @@ jobs:
elif [[ "${{ github.event.release.name }}" =~ headless* ]]; then
ARTIFACT=client
# mark:next-headless-version
VERSION="1.3.7"
VERSION="1.3.8"
else
echo "Shouldn't have gotten here. Exiting."
exit 1

2
rust/Cargo.lock generated
View File

@@ -2077,7 +2077,7 @@ dependencies = [
[[package]]
name = "firezone-headless-client"
version = "1.3.7"
version = "1.3.8"
dependencies = [
"anyhow",
"atomicwrites",

View File

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

View File

@@ -22,14 +22,14 @@ current-apple-version = 1.3.9
current-android-version = 1.3.7
current-gateway-version = 1.4.0
current-gui-version = 1.3.12
current-headless-version = 1.3.6
current-headless-version = 1.3.7
# Tracks the next version to release for each platform
next-apple-version = 1.3.10
next-android-version = 1.3.8
next-gateway-version = 1.4.1
next-gui-version = 1.3.13
next-headless-version = 1.3.7
next-headless-version = 1.3.8
# macOS uses a slightly different sed syntax
ifeq ($(shell uname),Darwin)

View File

@@ -36,21 +36,21 @@ module.exports = [
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.6/firezone-client-headless-linux_1.3.6_x86_64",
"https://www.github.com/firezone/firezone/releases/download/headless-client-1.3.7/firezone-client-headless-linux_1.3.7_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.6/firezone-client-headless-linux_1.3.6_aarch64",
"https://www.github.com/firezone/firezone/releases/download/headless-client-1.3.7/firezone-client-headless-linux_1.3.7_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.6/firezone-client-headless-linux_1.3.6_armv7",
"https://www.github.com/firezone/firezone/releases/download/headless-client-1.3.7/firezone-client-headless-linux_1.3.7_armv7",
permanent: false,
},
/*

View File

@@ -17,7 +17,7 @@ export async function GET(_req: NextRequest) {
// mark:current-gui-version
gui: "1.3.12",
// mark:current-headless-version
headless: "1.3.6",
headless: "1.3.7",
// mark:current-gateway-version
gateway: "1.4.0",
};

View File

@@ -11,12 +11,13 @@ 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.7" date={new Date("2024-11-15")}>
<ChangeItem pull="7334">
Fixes an issue where symmetric NATs would generate unnecessary
candidate for hole-punching.
</ChangeItem>
</Unreleased>
</Entry>
<Entry version="1.3.6" date={new Date("2024-11-08")}>
<ChangeItem pull="7263">
Mitigates a crash in case the maximum packet size is not respected.