chore(android): Release Android 1.4.2 (#8145)

This commit is contained in:
Jamil
2025-02-16 12:59:12 -08:00
committed by GitHub
parent 311988c5a2
commit d38ec466b9
8 changed files with 12 additions and 15 deletions

View File

@@ -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"

View File

@@ -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"

2
rust/Cargo.lock generated
View File

@@ -1037,7 +1037,7 @@ checksum = "baf0a07a401f374238ab8e2f11a104d2851bf9ce711ec69804834de8af45c7af"
[[package]]
name = "connlib-client-android"
version = "1.4.2"
version = "1.4.3"
dependencies = [
"android_log-sys",
"anyhow",

View File

@@ -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 }

View File

@@ -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;}' {} \;

View File

@@ -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,
},
/*

View File

@@ -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

View File

@@ -19,15 +19,12 @@ export default function Android() {
return (
<Entries downloadLinks={downloadLinks} 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. */}
<Unreleased>
<ChangeItem pull="8110">
Fixes a minor memory leak that could occur after being disconnected
unexpectedly.
</ChangeItem>
<Unreleased></Unreleased>
<Entry version="1.4.2" date={new Date("2025-02-16")}>
<ChangeItem pull="8117">
Fixes an upload speed performance regression.
</ChangeItem>
</Unreleased>
</Entry>
<Entry version="1.4.1" date={new Date("2025-01-28")}>
<ChangeItem pull="7891">
Substantially reduces memory usage when sending large amounts of data.