Release fleetd 1.25.0 (#19203)
This commit is contained in:
@@ -24,7 +24,7 @@ defaults:
|
||||
shell: bash
|
||||
|
||||
env:
|
||||
FLEET_DESKTOP_VERSION: 1.24.0
|
||||
FLEET_DESKTOP_VERSION: 1.25.0
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
+13
-1
@@ -1,8 +1,20 @@
|
||||
## Orbit 1.25.0 (May 22, 2024)
|
||||
|
||||
* Added code to detect value of `DISPLAY` variable of user instead of defaulting to `:0` (to support Ubuntu 24.04 with Xorg).
|
||||
|
||||
* Close idle connections every 55 minutes to prevent load balancers (like AWS ELB) from forcefully terminating long lived connections.
|
||||
|
||||
* Add support for executing zsh scripts on macOS and Linux hosts
|
||||
|
||||
* Windows orbit.exe and fleet-desktop.exe are now signed.
|
||||
|
||||
* Added ability to install software when requested by the Fleet server. Note that this is disabled unless the package was built with the `--enable-scripts` flag.
|
||||
|
||||
## Orbit 1.24.0 (Apr 17, 2024)
|
||||
|
||||
* Fixed script execution exit codes on windows by casting to signed integers to match windows interpreter.
|
||||
|
||||
* In orbit_info table, added desktop_version and scripts_enabled fields.
|
||||
* In `orbit_info` table, added `desktop_version` and `scripts_enabled` fields.
|
||||
|
||||
## Orbit 1.23.0 (Apr 08, 2024)
|
||||
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
Windows orbit.exe and fleet-desktop.exe are now signed.
|
||||
@@ -1 +0,0 @@
|
||||
* Add support for executing zsh scripts on macOS and Linux hosts
|
||||
@@ -1 +0,0 @@
|
||||
* Close idle connections every 10 minutes to prevent load balancers (like AWS ELB) from forcefully terminating long lived connections.
|
||||
@@ -1 +0,0 @@
|
||||
* Added ability to install software when requested by the Fleet server. Note that this is disabled unless the package was built with the `--enable-scripts` flag.
|
||||
@@ -1 +0,0 @@
|
||||
* Added code to detect value of `DISPLAY` variable of user instead of defaulting to `:0` (to support Ubuntu 24.04 with Xorg).
|
||||
@@ -297,7 +297,7 @@ func downloadComponents(workflowName string, headBranch string, artifactNames ma
|
||||
} else if *artifact.Name == artifactNames["windows"] {
|
||||
urls["windows"] = *artifact.ArchiveDownloadURL
|
||||
} else {
|
||||
return fmt.Errorf("unknown artifact name: %s", *artifact.Name)
|
||||
fmt.Printf("skipping artifact name: %q\n", *artifact.Name)
|
||||
}
|
||||
}
|
||||
if len(urls) == 3 || !retry {
|
||||
|
||||
Reference in New Issue
Block a user