Adding changes for Fleet v4.76.1 (#35760)

This commit is contained in:
George Karr
2025-11-18 14:35:31 -06:00
committed by GitHub
parent af0c479ac6
commit ca5d02d471
8 changed files with 21 additions and 8 deletions
+13
View File
@@ -1,3 +1,9 @@
## Fleet 4.76.1 (Nov 14, 2025)
### Bug fixes
* Added an endpoint to allow updating the macOS setup experience script in-place, and modified gitops to utilize it
## Fleet 4.76.0 (Nov 7, 2025)
### Security Engineers
@@ -226,6 +232,13 @@
- Fixed an alignment issue on the My device page.
- Fix deadlocks when updating automations for 10+ policies at one time.
## Fleet 4.73.4 (Sep 30, 2025)
### Bug fixes
- Added logic to detect and fix migration issues caused by improperly published Fleet v4.73.2 Linux binary
- Removing the software renaming fix introduced in 4.73.3 due to MySQL DB performance issues.
## Fleet 4.73.3 (Sep 26, 2025)
### Bug fixes
+2 -2
View File
@@ -4,11 +4,11 @@ name: fleet
keywords:
- fleet
- osquery
version: v6.7.1
version: v6.7.2
home: https://github.com/fleetdm/fleet
sources:
- https://github.com/fleetdm/fleet.git
appVersion: v4.76.0
appVersion: v4.76.1
dependencies:
- name: mysql
condition: mysql.enabled
+1 -1
View File
@@ -3,7 +3,7 @@
hostName: fleet.localhost
replicas: 3 # The number of Fleet instances to deploy
imageRepository: fleetdm/fleet
imageTag: v4.76.0 # Version of Fleet to deploy
imageTag: v4.76.1 # Version of Fleet to deploy
# imagePullSecrets is optional.
# imagePullSecrets:
# - name: docker
@@ -56,7 +56,7 @@ variable "database_name" {
variable "fleet_image" {
description = "the name of the container image to run"
default = "fleetdm/fleet:v4.76.0"
default = "fleetdm/fleet:v4.76.1"
}
variable "software_inventory" {
@@ -68,7 +68,7 @@ variable "redis_mem" {
}
variable "image" {
default = "fleetdm/fleet:v4.76.0"
default = "fleetdm/fleet:v4.76.1"
variable "software_installers_bucket_name" {
default = "fleet-software-installers"
@@ -200,7 +200,7 @@ terraform workspace delete <workspace_name>
| <a name="input_fleet_task_memory"></a> [fleet\_task\_memory](#input\_fleet\_task\_memory) | The memory configuration for Fleet containers | `number` | `4096` | no |
| <a name="input_redis_instance_count"></a> [redis\_instance\_count](#input\_redis\_instance\_count) | The number of Elasticache nodes | `number` | `3` | no |
| <a name="input_redis_instance_size"></a> [redis\_instance\_size](#input\_redis\_instance\_size) | The instance size for Elasticache nodes | `string` | `"cache.t4g.micro"` | no |
| <a name="input_tag"></a> [tag](#input\_tag) | The tag to deploy. This would be the same as the branch name | `string` | `"v4.76.0"` | no |
| <a name="input_tag"></a> [tag](#input\_tag) | The tag to deploy. This would be the same as the branch name | `string` | `"v4.76.1"` | no |
## Outputs
@@ -1,6 +1,6 @@
variable "tag" {
description = "The tag to deploy. This would be the same as the branch name"
default = "v4.76.0"
default = "v4.76.1"
}
variable "fleet_task_count" {
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "fleetctl",
"version": "v4.76.0",
"version": "v4.76.1",
"description": "Installer for the fleetctl CLI tool",
"bin": {
"fleetctl": "./run.js"