mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
Update changelog for fleetd 1.53.0 release (#40882)
This commit is contained in:
parent
169bfd55ad
commit
d8ff866b9c
9 changed files with 23 additions and 12 deletions
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -1 +0,0 @@
|
|||
* Improved GUI user detection in orbit to use the correct active GUI session when starting Fleet Desktop.
|
||||
|
|
@ -1 +0,0 @@
|
|||
* Improved detection of `DISPLAY` variable in X11 sessions.
|
||||
|
|
@ -1 +0,0 @@
|
|||
* When querying the "app_sso_platform" table, return empty result set if Kerberos status is not available.
|
||||
|
|
@ -1 +0,0 @@
|
|||
* Fixed icon size on KDE environments.
|
||||
|
|
@ -1 +0,0 @@
|
|||
* Added a system tray title to Fleet Desktop to make sure that the system tray ID is static, not dynamic.
|
||||
|
|
@ -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.
|
||||
|
|
@ -1 +0,0 @@
|
|||
* Fixed old escrow method on macOS to use environment variables on the TCL script.
|
||||
|
|
@ -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 \
|
||||
|
|
|
|||
Loading…
Reference in a new issue