diff --git a/rust/Cargo.lock b/rust/Cargo.lock
index 295c3b94a..ea7bae8ce 100644
--- a/rust/Cargo.lock
+++ b/rust/Cargo.lock
@@ -1074,7 +1074,7 @@ dependencies = [
[[package]]
name = "connlib-client-apple"
-version = "1.3.8"
+version = "1.3.9"
dependencies = [
"anyhow",
"backoff",
diff --git a/rust/connlib/clients/apple/Cargo.toml b/rust/connlib/clients/apple/Cargo.toml
index f502ea664..b0c410e41 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.8"
+version = "1.3.9"
edition = "2021"
[build-dependencies]
diff --git a/scripts/Makefile b/scripts/Makefile
index 8089ebe49..e5484fdd2 100644
--- a/scripts/Makefile
+++ b/scripts/Makefile
@@ -18,14 +18,14 @@
# 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.7
+current-apple-version = 1.3.8
current-android-version = 1.3.6
current-gateway-version = 1.4.0
current-gui-version = 1.3.11
current-headless-version = 1.3.5
# Tracks the next version to release for each platform
-next-apple-version = 1.3.8
+next-apple-version = 1.3.9
next-android-version = 1.3.7
next-gateway-version = 1.4.1
next-gui-version = 1.3.12
diff --git a/swift/apple/Firezone.xcodeproj/project.pbxproj b/swift/apple/Firezone.xcodeproj/project.pbxproj
index 419483fc3..54f5814d0 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.8;
+ MARKETING_VERSION = 1.3.9;
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.8;
+ MARKETING_VERSION = 1.3.9;
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.8;
+ MARKETING_VERSION = 1.3.9;
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.8;
+ MARKETING_VERSION = 1.3.9;
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.8;
+ MARKETING_VERSION = 1.3.9;
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.8;
+ MARKETING_VERSION = 1.3.9;
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 8f8e9ed03..c46343b13 100644
--- a/website/src/app/api/releases/route.ts
+++ b/website/src/app/api/releases/route.ts
@@ -11,7 +11,7 @@ export async function GET(_req: NextRequest) {
const versions = {
portal: await get("deployed_sha"),
// mark:current-apple-version
- apple: "1.3.7",
+ apple: "1.3.8",
// mark:current-android-version
android: "1.3.6",
// mark:current-gui-version
diff --git a/website/src/components/Changelog/Apple.tsx b/website/src/components/Changelog/Apple.tsx
index 7b3474664..41836cc61 100644
--- a/website/src/components/Changelog/Apple.tsx
+++ b/website/src/components/Changelog/Apple.tsx
@@ -11,14 +11,15 @@ 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. */}
-
+
+
- Mitigates a crash in case the maximum packet size is not respected.
-
-
- Prevents re-connections to the portal from hanging for longer than 5s.
-
-
+ Mitigates a crash in case the maximum packet size is not respected.
+
+
+ Prevents re-connections to the portal from hanging for longer than 5s.
+
+
Handles DNS queries over TCP correctly.