ci: bump android to 1.4.3 (#8416)

This commit is contained in:
Jamil
2025-03-10 22:52:26 -07:00
committed by GitHub
parent df5bbdd240
commit f3e36a2253
8 changed files with 12 additions and 11 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.3
RELEASE_NAME: android-client-1.4.4
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.3
RELEASE_NAME: android-client-1.4.4
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.3"
versionName = "1.4.4"
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.3"
version = "1.4.4"
dependencies = [
"android_log-sys",
"anyhow",

View File

@@ -1,7 +1,7 @@
[package]
name = "connlib-client-android"
# mark:next-android-version
version = "1.4.3"
version = "1.4.4"
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.2"
next_android_version="1.4.3"
current_android_version="1.4.3"
next_android_version="1.4.4"
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.2/firezone-android-client-1.4.2.apk",
"https://www.github.com/firezone/firezone/releases/download/android-client-1.4.3/firezone-android-client-1.4.3.apk",
permanent: false,
},
/*

View File

@@ -7,7 +7,7 @@ export async function GET(_req: NextRequest) {
// mark:current-apple-version
apple: "1.4.5",
// mark:current-android-version
android: "1.4.2",
android: "1.4.3",
// mark:current-gui-version
gui: "1.4.8",
// mark:current-headless-version

View File

@@ -19,7 +19,8 @@ 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.3" date={new Date("2025-03-10")}>
<ChangeItem pull="8376">
Fixes a bug where UI controls could overlap with system controls on
some devices.
@@ -28,7 +29,7 @@ export default function Android() {
Fixes a bug that prevented certain Resource fields from being updated
when they were updated in the admin portal.
</ChangeItem>
</Unreleased>
</Entry>
<Entry version="1.4.2" date={new Date("2025-02-16")}>
<ChangeItem pull="8117">
Fixes an upload speed performance regression.