From 6b26b3502ddc23c151f4bee6a59a0cdb566617ab Mon Sep 17 00:00:00 2001 From: Tony Giorgio Date: Fri, 12 Sep 2025 13:33:00 -0500 Subject: [PATCH 1/2] Bump maple proxy to 0.1.2 --- frontend/src-tauri/Cargo.lock | 8 ++++---- frontend/src-tauri/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/src-tauri/Cargo.lock b/frontend/src-tauri/Cargo.lock index 420871a7..ab08195d 100644 --- a/frontend/src-tauri/Cargo.lock +++ b/frontend/src-tauri/Cargo.lock @@ -2731,9 +2731,9 @@ dependencies = [ [[package]] name = "maple-proxy" -version = "0.1.1" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d0730b3b84047f8cfbe04ccf0f8aef4f8124c847926871f147f121c80add6041" +checksum = "d52331aa7d2c5f020606845736546a9019578a708325372591c142e5a1207c95" dependencies = [ "anyhow", "async-stream", @@ -3292,9 +3292,9 @@ dependencies = [ [[package]] name = "opensecret" -version = "0.2.0" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "907713724b6c28098a88c7bbc2e88d01e9b95de3b1e3aec59c8479562fae89ed" +checksum = "8cab60da21f06cccb63bec26affb60d0da0d1324c4a822a4fb1b99406fbcbf45" dependencies = [ "anyhow", "async-trait", diff --git a/frontend/src-tauri/Cargo.toml b/frontend/src-tauri/Cargo.toml index e249388a..7d22049a 100644 --- a/frontend/src-tauri/Cargo.toml +++ b/frontend/src-tauri/Cargo.toml @@ -32,7 +32,7 @@ tauri-plugin-os = "2" tauri-plugin-sign-in-with-apple = "1.0.2" tokio = { version = "1.0", features = ["net", "sync", "rt-multi-thread", "macros", "time"] } once_cell = "1.18.0" -maple-proxy = "0.1.1" +maple-proxy = "0.1.2" tauri-plugin-fs = "2" anyhow = "1.0" axum = "0.8" From e6de45f36cc82af7452e56c1d4b6b4df5d19db52 Mon Sep 17 00:00:00 2001 From: Tony Giorgio Date: Fri, 12 Sep 2025 13:55:46 -0500 Subject: [PATCH 2/2] fix: pin Xcode version to 16.4 in mobile CI workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes iOS build failures caused by GitHub Actions using Xcode 26 RC instead of a stable version when using 'latest-stable' tag 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .github/workflows/mobile-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/mobile-build.yml b/.github/workflows/mobile-build.yml index 0c81d3cc..9c705475 100644 --- a/.github/workflows/mobile-build.yml +++ b/.github/workflows/mobile-build.yml @@ -39,7 +39,7 @@ jobs: - name: Setup Xcode uses: maxim-lobanov/setup-xcode@v1 with: - xcode-version: latest-stable + xcode-version: '16.4' - name: Install Tauri CLI run: cargo install tauri-cli