chore: Bump Apple to 1.3.2 (#6750)

Adds update notifications and fixes resource menu bug.
This commit is contained in:
Jamil
2024-09-18 18:40:38 -07:00
committed by GitHub
parent d09335b31f
commit 7c806f7602
6 changed files with 25 additions and 22 deletions

2
rust/Cargo.lock generated
View File

@@ -1035,7 +1035,7 @@ dependencies = [
[[package]]
name = "connlib-client-apple"
version = "1.3.2"
version = "1.3.3"
dependencies = [
"anyhow",
"backoff",

View File

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

View File

@@ -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.1
current-apple-version = 1.3.2
current-android-version = 1.3.2
current-gateway-version = 1.3.1
current-gui-version = 1.3.3
current-headless-version = 1.3.1
# Tracks the next version to release for each platform
next-apple-version = 1.3.2
next-apple-version = 1.3.3
next-android-version = 1.3.3
next-gateway-version = 1.3.2
next-gui-version = 1.3.4

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.2;
MARKETING_VERSION = 1.3.3;
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.2;
MARKETING_VERSION = 1.3.3;
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.2;
MARKETING_VERSION = 1.3.3;
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.2;
MARKETING_VERSION = 1.3.3;
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.2;
MARKETING_VERSION = 1.3.3;
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.2;
MARKETING_VERSION = 1.3.3;
PRODUCT_BUNDLE_IDENTIFIER = "$(inherited)";
PRODUCT_MODULE_NAME = "$(PRODUCT_NAME:c99extidentifier)";
PRODUCT_NAME = "$(TARGET_NAME)";

View File

@@ -5,7 +5,7 @@ export async function GET(_req: NextRequest) {
const versions = {
portal: await get("deployed_sha"),
// mark:current-apple-version
apple: "1.3.1",
apple: "1.3.2",
// mark:current-android-version
android: "1.3.2",
// mark:current-gui-version

View File

@@ -10,24 +10,27 @@ export default function Apple() {
title="macOS / iOS"
>
{/*
<Entry version="1.3.2" date={new Date(todo)}>
<Entry version="1.3.3" date={new Date(todo)}>
<ul className="list-disc space-y-2 pl-4 mb-4">
<ChangeItem pull="6632">
Fixes a bug where the addressDescription wasn't fully displayed in the macOS
menu bar if it exceeded a certain length.
</ChangeItem>
<ChangeItem pull="6722">
Fixes a routing bug when one of several overlapping CIDR resources gets disabled / removed.
</ChangeItem>
<ChangeItem pull="6679">
Displays a notification when a new version is available.
</ChangeItem>
<ChangeItem pull="6765">
Fixes a bug where DNS PTR queries by the system did not get answered.
<ChangeItem pull="6722">
Fixes a routing bug when one of several overlapping CIDR resources gets disabled / removed.
</ChangeItem>
</ul>
</Entry>
*/}
<Entry version="1.3.2" date={new Date("2024-09-18")}>
<ul className="list-disc space-y-2 pl-4 mb-4">
<ChangeItem pull="6632">
(macOS) Fixes a bug where the addressDescription wasn't fully
displayed in the macOS menu bar if it exceeded a certain length.
</ChangeItem>
<ChangeItem pull="6679">
(macOS) Displays a notification when a new version is available.
</ChangeItem>
</ul>
</Entry>
<Entry version="1.3.1" date={new Date("2024-09-05")}>
<ul className="list-disc space-y-2 pl-4 mb-4">
<ChangeItem pull="6521">