diff --git a/.github/workflows/_build_artifacts.yml b/.github/workflows/_build_artifacts.yml
index b93af2c28..497473553 100644
--- a/.github/workflows/_build_artifacts.yml
+++ b/.github/workflows/_build_artifacts.yml
@@ -155,9 +155,9 @@ jobs:
artifact: firezone-client-headless-linux
image_name: client
# mark:next-headless-version
- release_name: headless-client-1.3.2
+ release_name: headless-client-1.3.3
# mark:next-headless-version
- version: 1.3.2
+ version: 1.3.3
- package: firezone-relay
artifact: firezone-relay
image_name: relay
diff --git a/.github/workflows/_tauri.yml b/.github/workflows/_tauri.yml
index 66d5867ec..bc9c72dd0 100644
--- a/.github/workflows/_tauri.yml
+++ b/.github/workflows/_tauri.yml
@@ -31,31 +31,31 @@ jobs:
include:
- runs-on: ubuntu-20.04
# mark:next-gui-version
- binary-dest-path: firezone-client-gui-linux_1.3.5_x86_64
+ binary-dest-path: firezone-client-gui-linux_1.3.6_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.5_x86_64.dwp
+ syms-artifact: rust/gui-client/firezone-client-gui-linux_1.3.6_x86_64.dwp
# mark:next-gui-version
- pkg-artifact: rust/gui-client/firezone-client-gui-linux_1.3.5_x86_64.deb
+ pkg-artifact: rust/gui-client/firezone-client-gui-linux_1.3.6_x86_64.deb
- runs-on: ubuntu-22.04-arm
# mark:next-gui-version
- binary-dest-path: firezone-client-gui-linux_1.3.5_aarch64
+ binary-dest-path: firezone-client-gui-linux_1.3.6_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.5_aarch64.dwp
+ syms-artifact: rust/gui-client/firezone-client-gui-linux_1.3.6_aarch64.dwp
# mark:next-gui-version
- pkg-artifact: rust/gui-client/firezone-client-gui-linux_1.3.5_aarch64.deb
+ pkg-artifact: rust/gui-client/firezone-client-gui-linux_1.3.6_aarch64.deb
- runs-on: windows-2019
# mark:next-gui-version
- binary-dest-path: firezone-client-gui-windows_1.3.5_x86_64
+ binary-dest-path: firezone-client-gui-windows_1.3.6_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.5_x86_64.pdb
+ syms-artifact: rust/gui-client/firezone-client-gui-windows_1.3.6_x86_64.pdb
# mark:next-gui-version
- pkg-artifact: rust/gui-client/firezone-client-gui-windows_1.3.5_x86_64.msi
+ pkg-artifact: rust/gui-client/firezone-client-gui-windows_1.3.6_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.5_x64_en-US.msi
+ run: ../../scripts/build/sign.sh ../target/release/bundle/msi/Firezone_1.3.6_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.5
+ TAG_NAME: gui-client-1.3.6
shell: bash
run: ${{ matrix.upload-script }}
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index bca09162a..a881465e9 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -50,10 +50,10 @@ jobs:
- release_name: gateway-1.3.2
config_name: release-drafter-gateway.yml
# mark:next-headless-version
- - release_name: headless-client-1.3.2
+ - release_name: headless-client-1.3.3
config_name: release-drafter-headless-client.yml
# mark:next-gui-version
- - release_name: gui-client-1.3.5
+ - release_name: gui-client-1.3.6
config_name: release-drafter-gui-client.yml
steps:
- uses: release-drafter/release-drafter@v6
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
index b32f0a305..013530aa7 100644
--- a/.github/workflows/publish.yml
+++ b/.github/workflows/publish.yml
@@ -42,7 +42,7 @@ jobs:
elif [[ "${{ github.event.release.name }}" =~ headless* ]]; then
ARTIFACT=client
# mark:next-headless-version
- VERSION="1.3.2"
+ VERSION="1.3.3"
else
echo "Shouldn't have gotten here. Exiting."
exit 1
diff --git a/kotlin/android/app/build.gradle.kts b/kotlin/android/app/build.gradle.kts
index 4f0c7b2df..b38f3dd4b 100644
--- a/kotlin/android/app/build.gradle.kts
+++ b/kotlin/android/app/build.gradle.kts
@@ -56,7 +56,7 @@ android {
targetSdk = 35
versionCode = (System.currentTimeMillis() / 1000 / 10).toInt()
// mark:next-android-version
- versionName = "1.3.3"
+ versionName = "1.3.4"
multiDexEnabled = true
testInstrumentationRunner = "dev.firezone.android.core.HiltTestRunner"
diff --git a/rust/Cargo.lock b/rust/Cargo.lock
index cdfa977a0..8cff35fbc 100644
--- a/rust/Cargo.lock
+++ b/rust/Cargo.lock
@@ -1256,7 +1256,7 @@ checksum = "baf0a07a401f374238ab8e2f11a104d2851bf9ce711ec69804834de8af45c7af"
[[package]]
name = "connlib-client-android"
-version = "1.3.3"
+version = "1.3.4"
dependencies = [
"android_log-sys",
"backoff",
@@ -1283,7 +1283,7 @@ dependencies = [
[[package]]
name = "connlib-client-apple"
-version = "1.3.4"
+version = "1.3.5"
dependencies = [
"anyhow",
"backoff",
@@ -2287,7 +2287,7 @@ dependencies = [
[[package]]
name = "firezone-gui-client"
-version = "1.3.5"
+version = "1.3.6"
dependencies = [
"anyhow",
"atomicwrites",
@@ -2327,7 +2327,7 @@ dependencies = [
[[package]]
name = "firezone-gui-client-common"
-version = "1.3.5"
+version = "1.3.6"
dependencies = [
"anyhow",
"arboard",
@@ -2367,7 +2367,7 @@ dependencies = [
[[package]]
name = "firezone-headless-client"
-version = "1.3.2"
+version = "1.3.3"
dependencies = [
"anyhow",
"atomicwrites",
diff --git a/rust/connlib/clients/android/Cargo.toml b/rust/connlib/clients/android/Cargo.toml
index d5c55bde3..8aa05ea03 100644
--- a/rust/connlib/clients/android/Cargo.toml
+++ b/rust/connlib/clients/android/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "connlib-client-android"
# mark:next-android-version
-version = "1.3.3"
+version = "1.3.4"
edition = "2021"
[lib]
diff --git a/rust/connlib/clients/apple/Cargo.toml b/rust/connlib/clients/apple/Cargo.toml
index 81db685a8..5b83c08ef 100644
--- a/rust/connlib/clients/apple/Cargo.toml
+++ b/rust/connlib/clients/apple/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "connlib-client-apple"
# mark:next-apple-version
-version = "1.3.4"
+version = "1.3.5"
edition = "2021"
[features]
diff --git a/rust/gui-client/src-common/Cargo.toml b/rust/gui-client/src-common/Cargo.toml
index cebcc549d..8a71490a5 100644
--- a/rust/gui-client/src-common/Cargo.toml
+++ b/rust/gui-client/src-common/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "firezone-gui-client-common"
# mark:next-gui-version
-version = "1.3.5"
+version = "1.3.6"
edition = "2021"
[dependencies]
diff --git a/rust/gui-client/src-tauri/Cargo.toml b/rust/gui-client/src-tauri/Cargo.toml
index a3dcdfcc0..7580594b6 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.3.5"
+version = "1.3.6"
description = "Firezone"
edition = "2021"
default-run = "firezone-gui-client"
diff --git a/rust/headless-client/Cargo.toml b/rust/headless-client/Cargo.toml
index 65c490eec..b4bda3f30 100644
--- a/rust/headless-client/Cargo.toml
+++ b/rust/headless-client/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "firezone-headless-client"
# mark:next-headless-version
-version = "1.3.2"
+version = "1.3.3"
edition = "2021"
authors = ["Firezone, Inc."]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
diff --git a/scripts/Makefile b/scripts/Makefile
index dcdce6a7c..f1bc402a6 100644
--- a/scripts/Makefile
+++ b/scripts/Makefile
@@ -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.3
-current-android-version = 1.3.2
+current-apple-version = 1.3.4
+current-android-version = 1.3.3
current-gateway-version = 1.3.1
-current-gui-version = 1.3.4
-current-headless-version = 1.3.1
+current-gui-version = 1.3.5
+current-headless-version = 1.3.2
# Tracks the next version to release for each platform
-next-apple-version = 1.3.4
-next-android-version = 1.3.3
+next-apple-version = 1.3.5
+next-android-version = 1.3.4
next-gateway-version = 1.3.2
-next-gui-version = 1.3.5
-next-headless-version = 1.3.2
+next-gui-version = 1.3.6
+next-headless-version = 1.3.3
# macOS uses a slightly different sed syntax
ifeq ($(shell uname),Darwin)
diff --git a/swift/apple/Firezone.xcodeproj/project.pbxproj b/swift/apple/Firezone.xcodeproj/project.pbxproj
index 7a7001bd3..de051a48a 100644
--- a/swift/apple/Firezone.xcodeproj/project.pbxproj
+++ b/swift/apple/Firezone.xcodeproj/project.pbxproj
@@ -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.4;
+ MARKETING_VERSION = 1.3.5;
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.4;
+ MARKETING_VERSION = 1.3.5;
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.4;
+ MARKETING_VERSION = 1.3.5;
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.4;
+ MARKETING_VERSION = 1.3.5;
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.4;
+ MARKETING_VERSION = 1.3.5;
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.4;
+ MARKETING_VERSION = 1.3.5;
PRODUCT_BUNDLE_IDENTIFIER = "$(inherited)";
PRODUCT_MODULE_NAME = "$(PRODUCT_NAME:c99extidentifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
diff --git a/website/src/app/api/releases/route.ts b/website/src/app/api/releases/route.ts
index 59888d7e1..4f3793996 100644
--- a/website/src/app/api/releases/route.ts
+++ b/website/src/app/api/releases/route.ts
@@ -5,13 +5,13 @@ export async function GET(_req: NextRequest) {
const versions = {
portal: await get("deployed_sha"),
// mark:current-apple-version
- apple: "1.3.3",
+ apple: "1.3.4",
// mark:current-android-version
- android: "1.3.2",
+ android: "1.3.3",
// mark:current-gui-version
- gui: "1.3.4",
+ gui: "1.3.5",
// mark:current-headless-version
- headless: "1.3.1",
+ headless: "1.3.2",
// mark:current-gateway-version
gateway: "1.3.1",
};
diff --git a/website/src/app/kb/client-apps/linux-client/readme.mdx b/website/src/app/kb/client-apps/linux-client/readme.mdx
index e2f9e2ccf..aaa0694bf 100644
--- a/website/src/app/kb/client-apps/linux-client/readme.mdx
+++ b/website/src/app/kb/client-apps/linux-client/readme.mdx
@@ -267,7 +267,6 @@ sudo mv /etc/resolv.conf.before-firezone /etc/resolv.conf
## Known issues
-- The Linux Headless Client may throw an error on ZFS when generating its device
- ID [#6704](https://github.com/firezone/firezone/issues/6704)
+None at this time
diff --git a/website/src/app/kb/client-apps/linux-gui-client/readme.mdx b/website/src/app/kb/client-apps/linux-gui-client/readme.mdx
index c2b942b62..b550061fd 100644
--- a/website/src/app/kb/client-apps/linux-gui-client/readme.mdx
+++ b/website/src/app/kb/client-apps/linux-gui-client/readme.mdx
@@ -213,7 +213,5 @@ the tunnel, and a GUI which allows the user to control Firezone.
[#4883](https://github.com/firezone/firezone/issues/4883)
- If you update Firezone while the GUI is running, you must manually restart the
GUI [#5790](https://github.com/firezone/firezone/issues/5952)
-- The Linux GUI Client does not work on ZFS yet
- [#6704](https://github.com/firezone/firezone/issues/6704)
diff --git a/website/src/components/Changelog/Android.tsx b/website/src/components/Changelog/Android.tsx
index bf2686bfd..f3180f4f6 100644
--- a/website/src/components/Changelog/Android.tsx
+++ b/website/src/components/Changelog/Android.tsx
@@ -9,24 +9,33 @@ export default function Android() {
href="https://play.google.com/store/apps/details?id=dev.firezone.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. */}
{/*
-
+
-
- Resetting the settings now resets the list of favorited Resources, too.
-
-
- Fixes a bug where DNS PTR queries by the system did not get answered.
-
-
-
-
-
- Fixes a routing bug when one of several overlapping CIDR resources gets disabled / removed.
-
*/}
+
+
+
+ Resetting the settings now resets the list of favorited Resources,
+ too.
+
+
+ Fixes a bug where DNS PTR queries by the system did not get
+ answered.
+
+
+ Fixes a routing bug when one of several overlapping CIDR resources
+ gets disabled / removed.
+
+
+ Fixes an issue where some browsers may fail to route DNS Resources
+ correctly.
+
+
+
diff --git a/website/src/components/Changelog/Apple.tsx b/website/src/components/Changelog/Apple.tsx
index 205cc0bfa..8604d527c 100644
--- a/website/src/components/Changelog/Apple.tsx
+++ b/website/src/components/Changelog/Apple.tsx
@@ -9,16 +9,21 @@ export default function Apple() {
href="https://apps.apple.com/us/app/firezone/id6443661826"
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. */}
{/*
-
+
-
- Fixes a bug where HTTPs queries for resources where forwarded without intercepting,
- causing in iOS an issue where browsers would use the real IP instead of our proxy IP.
-
*/}
+
+
+
+ Fixes an issue where some browsers may fail to route DNS Resources
+ correctly.
+
+
+
diff --git a/website/src/components/Changelog/GUI.tsx b/website/src/components/Changelog/GUI.tsx
index f89d75f42..732761b5f 100644
--- a/website/src/components/Changelog/GUI.tsx
+++ b/website/src/components/Changelog/GUI.tsx
@@ -14,17 +14,26 @@ export default function GUI({ title }: { title: string }) {
{/* 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. */}
{/*
-
+
+
+ */}
+
+
+
+ Fixes an issue where some browsers may fail to route DNS Resources
+ correctly.
+
- Fixes a bug where the Linux Clients didn't work on ZFS filesystems
+ Fixes a bug where the Linux Clients didn't work on ZFS filesystems.
- Fixes a bug where auto-sign-in with an expired token would cause a "Couldn't send Disconnect" error message.
+ Fixes a bug where auto-sign-in with an expired token would cause a
+ "Couldn't send Disconnect" error message.
-
diff --git a/website/src/components/Changelog/Headless.tsx b/website/src/components/Changelog/Headless.tsx
index 3e3ae1a18..d3310e4f1 100644
--- a/website/src/components/Changelog/Headless.tsx
+++ b/website/src/components/Changelog/Headless.tsx
@@ -11,20 +11,30 @@ export default function 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. */}
{/*
-
+
-
- Fixes a bug where DNS PTR queries by the system did not get answered.
-
-
- Fixes a routing bug when one of several overlapping CIDR resources gets disabled / removed.
-
-
- Fixes a bug where the Linux Clients didn't work on ZFS filesystems
-
*/}
+
+
+
+ Fixes a bug where DNS PTR queries by the system did not get
+ answered.
+
+
+ Fixes a routing bug when one of several overlapping CIDR resources
+ gets disabled / removed.
+
+
+ Fixes a bug where the Linux Clients didn't work on ZFS filesystems.
+
+
+ Fixes an issue where some browsers may fail to route DNS Resources
+ correctly.
+
+
+