ci: Release Android 1.4.7 (#8878)

App is live on Play store.
This commit is contained in:
Jamil
2025-04-21 14:12:27 -07:00
committed by GitHub
parent 3dc0bbeabb
commit 368ace2c6e
8 changed files with 14 additions and 12 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.7
RELEASE_NAME: android-client-1.4.8
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.7
RELEASE_NAME: android-client-1.4.8
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.7"
versionName = "1.4.8"
multiDexEnabled = true
testInstrumentationRunner = "dev.firezone.android.core.HiltTestRunner"

2
rust/Cargo.lock generated
View File

@@ -1189,7 +1189,7 @@ checksum = "baf0a07a401f374238ab8e2f11a104d2851bf9ce711ec69804834de8af45c7af"
[[package]]
name = "connlib-client-android"
version = "1.4.7"
version = "1.4.8"
dependencies = [
"android_log-sys",
"anyhow",

View File

@@ -1,7 +1,7 @@
[package]
name = "connlib-client-android"
# mark:next-android-version
version = "1.4.7"
version = "1.4.8"
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.6"
next_android_version="1.4.7"
current_android_version="1.4.7"
next_android_version="1.4.8"
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

@@ -29,7 +29,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.6/firezone-android-client-1.4.6.apk",
"https://www.github.com/firezone/firezone/releases/download/android-client-1.4.7/firezone-android-client-1.4.7.apk",
permanent: false,
},
/*

View File

@@ -7,7 +7,7 @@ export async function GET(_req: NextRequest) {
// mark:current-apple-version
apple: "1.4.11",
// mark:current-android-version
android: "1.4.6",
android: "1.4.7",
// mark:current-gui-version
gui: "1.4.10",
// mark:current-headless-version

View File

@@ -19,11 +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>
<Unreleased></Unreleased>
<Entry version="1.4.7" date={new Date("2025-04-21")}>
<ChangeItem pull="8798">
Improves performance of relayed connections on IPv4-only systems.
</ChangeItem>
</Unreleased>
</Entry>
<Entry version="1.4.6" date={new Date("2025-04-15")}>
<ChangeItem pull="8754">
Fixes a performance regression that could lead to packet drops under
@@ -35,7 +36,8 @@ export default function Android() {
</Entry>
<Entry version="1.4.5" date={new Date("2025-03-15")}>
<ChangeItem pull="8445">
Fixes a bug where search domains changes weren't applied if already signed in.
Fixes a bug where search domains changes weren't applied if already
signed in.
</ChangeItem>
</Entry>
<Entry version="1.4.4" date={new Date("2025-03-14")}>