Update version and CHANGELOG for fleetd-android-v1.4.0 (#43466)

fleetd-android-v1.4.0 release

<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->
## Summary by CodeRabbit

* **Chores**
  * App version updated to 1.4.0.

* **Documentation**
* Cleaned up internal change notes related to certificate handling and
UI details; no user-facing behavior changes included in this update.
<!-- end of auto-generated comment: release notes by coderabbit.ai -->

---------

Co-authored-by: Sharon Katz <121527325+sharon-fdm@users.noreply.github.com>
This commit is contained in:
Victor Lyuboslavsky
2026-04-13 12:06:43 -05:00
committed by GitHub
co-authored by Sharon Katz
parent 98e08ad4f3
commit e1dac524a8
5 changed files with 14 additions and 11 deletions
+12
View File
@@ -1,3 +1,15 @@
## Android agent 1.4.0 (Apr 07, 2026)
* Made the certificate list scrollable
* Fixed background DNS resolution failures.
* Stopped polling certificates when the server reported them as permanently failed.
* Marked non-retryable SCEP failures (e.g. server rejection) as failed immediately instead of retrying 3 times.
* Fixed duplicate FAILED status reports.
* Made the agent treat HTTP 404 responses on certificate status updates as a signal that the template had been deleted server-side.
* Made enrollment failure messages include SCEP failInfo details instead of a generic error.
* Made certificate enrollment wait for CERT_INSTALL delegation to be available, preventing permanent failures after fresh MDM enrollment.
* Improved certificate installation failure messages to include delegation status and certificate alias.
## Android agent 1.3.0 (Feb 27, 2026)
* Improved debug screen, including adding last error message and logs.
+2 -2
View File
@@ -24,8 +24,8 @@ android {
applicationId = "com.fleetdm.agent"
minSdk = 33
targetSdk = 36
versionCode = 8
versionName = "1.3.0"
versionCode = 11
versionName = "1.4.0"
buildConfigField("String", "INFO_URL", "\"https://fleetdm.com/better\"")
@@ -1 +0,0 @@
- Make certificate list scrollable
@@ -1,6 +0,0 @@
- Fixed background DNS resolution failures.
- Stop polling certificates when the server reports them as permanently failed.
- Non-retryable SCEP failures (e.g. server rejection) now immediately mark the certificate as failed instead of retrying 3 times.
- Fixed duplicate FAILED status reports.
- Treat HTTP 404 on certificate status updates as success when the template has been deleted server-side.
- Include SCEP `failInfo` details in enrollment failure messages instead of a generic error.
@@ -1,2 +0,0 @@
- Wait for CERT_INSTALL delegation to be available before attempting certificate enrollment, preventing permanent failures after fresh MDM enrollment.
- Improved certificate installation failure messages to include delegation status and certificate alias.