From d38ec466b9fb46b86c7974100743bbd283f0b582 Mon Sep 17 00:00:00 2001 From: Jamil Date: Sun, 16 Feb 2025 12:59:12 -0800 Subject: [PATCH] chore(android): Release Android 1.4.2 (#8145) --- .github/workflows/_kotlin.yml | 4 ++-- kotlin/android/app/build.gradle.kts | 2 +- rust/Cargo.lock | 2 +- rust/connlib/clients/android/Cargo.toml | 2 +- scripts/bump-versions.sh | 4 ++-- website/redirects.js | 2 +- website/src/app/api/releases/route.ts | 2 +- website/src/components/Changelog/Android.tsx | 9 +++------ 8 files changed, 12 insertions(+), 15 deletions(-) diff --git a/.github/workflows/_kotlin.yml b/.github/workflows/_kotlin.yml index 2abe5aa43..4ac07a780 100644 --- a/.github/workflows/_kotlin.yml +++ b/.github/workflows/_kotlin.yml @@ -28,7 +28,7 @@ jobs: contents: write # for updating the release draft env: # mark:next-android-version - RELEASE_NAME: android-client-1.4.2 + RELEASE_NAME: android-client-1.4.3 steps: - uses: release-drafter/release-drafter@b1476f6e6eb133afa41ed8589daba6dc69b4d3f5 # v6.1.0 if: "${{ github.event_name == 'workflow_dispatch' && github.ref_name == 'main' }}" @@ -99,7 +99,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # mark:next-android-version - RELEASE_NAME: android-client-1.4.2 + RELEASE_NAME: android-client-1.4.3 run: | export ARTIFACT_PATH="$RUNNER_TEMP/firezone-${RELEASE_NAME}.${{ matrix.package-type }}" cp "${{ matrix.output-path }}" "$ARTIFACT_PATH" diff --git a/kotlin/android/app/build.gradle.kts b/kotlin/android/app/build.gradle.kts index 9bf9e2508..5be082b64 100644 --- a/kotlin/android/app/build.gradle.kts +++ b/kotlin/android/app/build.gradle.kts @@ -53,7 +53,7 @@ android { targetSdk = 35 versionCode = (System.currentTimeMillis() / 1000 / 10).toInt() // mark:next-android-version - versionName = "1.4.2" + versionName = "1.4.3" multiDexEnabled = true testInstrumentationRunner = "dev.firezone.android.core.HiltTestRunner" diff --git a/rust/Cargo.lock b/rust/Cargo.lock index fe1f5c07c..a509dbdb9 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -1037,7 +1037,7 @@ checksum = "baf0a07a401f374238ab8e2f11a104d2851bf9ce711ec69804834de8af45c7af" [[package]] name = "connlib-client-android" -version = "1.4.2" +version = "1.4.3" dependencies = [ "android_log-sys", "anyhow", diff --git a/rust/connlib/clients/android/Cargo.toml b/rust/connlib/clients/android/Cargo.toml index ebd38e304..d3ee7d7b8 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.4.2" +version = "1.4.3" edition = { workspace = true } license = { workspace = true } diff --git a/scripts/bump-versions.sh b/scripts/bump-versions.sh index 1bd4cfe1c..0fc44c06a 100755 --- a/scripts/bump-versions.sh +++ b/scripts/bump-versions.sh @@ -82,8 +82,8 @@ function apple() { # 7. Commit the changes and open a PR. Ensure the Changelog is correctly # updated with the changes. function android() { - current_android_version="1.4.1" - next_android_version="1.4.2" + current_android_version="1.4.2" + next_android_version="1.4.3" find website -type f -name "redirects.js" -exec sed "${SEDARG[@]}" -e '/mark:current-android-version/{n;s/[0-9]\{1,\}\.[0-9]\{1,\}\.[0-9]\{1,\}/'"${current_android_version}"'/g;}' {} \; find website -type f -name "route.ts" -exec sed "${SEDARG[@]}" -e '/mark:current-android-version/{n;s/[0-9]\{1,\}\.[0-9]\{1,\}\.[0-9]\{1,\}/'"${current_android_version}"'/g;}' {} \; diff --git a/website/redirects.js b/website/redirects.js index b92cd2036..f1d8a8e5a 100644 --- a/website/redirects.js +++ b/website/redirects.js @@ -22,7 +22,7 @@ module.exports = [ source: "/dl/firezone-client-android/latest", destination: // mark:current-android-version - "https://www.github.com/firezone/firezone/releases/download/android-client-1.4.1/firezone-android-client-1.4.1.apk", + "https://www.github.com/firezone/firezone/releases/download/android-client-1.4.2/firezone-android-client-1.4.2.apk", permanent: false, }, /* diff --git a/website/src/app/api/releases/route.ts b/website/src/app/api/releases/route.ts index c1f515964..5c560b767 100644 --- a/website/src/app/api/releases/route.ts +++ b/website/src/app/api/releases/route.ts @@ -7,7 +7,7 @@ export async function GET(_req: NextRequest) { // mark:current-apple-version apple: "1.4.2", // mark:current-android-version - android: "1.4.1", + android: "1.4.2", // mark:current-gui-version gui: "1.4.5", // mark:current-headless-version diff --git a/website/src/components/Changelog/Android.tsx b/website/src/components/Changelog/Android.tsx index c37de52de..1ae5b1391 100644 --- a/website/src/components/Changelog/Android.tsx +++ b/website/src/components/Changelog/Android.tsx @@ -19,15 +19,12 @@ export default function Android() { return ( {/* 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 minor memory leak that could occur after being disconnected - unexpectedly. - + + Fixes an upload speed performance regression. - + Substantially reduces memory usage when sending large amounts of data.