Update changelog for fleetd 1.53.0 release (#40882)

This commit is contained in:
Lucas Manuel Rodriguez 2026-03-05 12:07:04 -03:00 committed by GitHub
parent 169bfd55ad
commit d8ff866b9c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 23 additions and 12 deletions

View file

@ -1,3 +1,19 @@
## Orbit 1.53.0 (Mar 03, 2026)
* Improved GUI user detection in orbit to use the correct active GUI session when starting Fleet Desktop.
* Fixed a COM deadlock on Windows that could cause orbit to become unresponsive during BitLocker encryption enforcement. BitLocker operations now run on a dedicated COM thread instead of sharing the global comshim singleton with other subsystems.
* Fixed the "app_sso_platform" table to return empty result set if Kerberos status is not available.
* Fixed icon size on KDE environments.
* Fixed old escrow method on macOS to use environment variables on the TCL script.
* Improved detection of `DISPLAY` variable in X11 sessions.
* Added a system tray title to Fleet Desktop to make sure that the system tray ID is static, not dynamic.
## Orbit 1.52.1 (Feb 20, 2026)
* Fixed panic in `orbit` when auto-updates are disabled.

View file

@ -1 +0,0 @@
* Improved GUI user detection in orbit to use the correct active GUI session when starting Fleet Desktop.

View file

@ -1 +0,0 @@
* Improved detection of `DISPLAY` variable in X11 sessions.

View file

@ -1 +0,0 @@
* When querying the "app_sso_platform" table, return empty result set if Kerberos status is not available.

View file

@ -1 +0,0 @@
* Fixed icon size on KDE environments.

View file

@ -1 +0,0 @@
* Added a system tray title to Fleet Desktop to make sure that the system tray ID is static, not dynamic.

View file

@ -1 +0,0 @@
* Fixed a COM deadlock on Windows that could cause orbit to become unresponsive during BitLocker encryption enforcement. BitLocker operations now run on a dedicated COM thread instead of sharing the global comshim singleton with other subsystems.

View file

@ -1 +0,0 @@
* Fixed old escrow method on macOS to use environment variables on the TCL script.

View file

@ -172,11 +172,13 @@ promote_edge_to_stable () {
release_fleetd_to_edge () {
echo "Releasing fleetd to edge..."
ORBIT_TAG="orbit-v$VERSION"
prompt "A tag will be pushed to trigger a Github Action to build desktop and orbit."
pushd "$GIT_REPOSITORY_DIRECTORY"
git tag "$ORBIT_TAG"
git push origin "$ORBIT_TAG"
popd
if [[ "$SKIP_PR_AND_TAG_PUSH" != "1" ]]; then
prompt "A tag will be pushed to trigger a Github Action to build desktop and orbit."
pushd "$GIT_REPOSITORY_DIRECTORY"
git tag "$ORBIT_TAG"
git push origin "$ORBIT_TAG"
popd
fi
DESKTOP_ARTIFACT_DOWNLOAD_DIRECTORY="$ARTIFACTS_DOWNLOAD_DIRECTORY/desktop"
mkdir -p "$DESKTOP_ARTIFACT_DOWNLOAD_DIRECTORY"
"$GO_TOOLS_DIRECTORY/download-artifacts" desktop \