Prepare Fleet v4.73.3 (#33527) (#33575)

This commit is contained in:
Luke Heath 2025-09-29 12:23:36 -05:00 committed by GitHub
parent efc64389b1
commit 437a1f563c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 13 additions and 8 deletions

View file

@ -1,3 +1,10 @@
## Fleet 4.73.3 (Sep 26, 2025)
### Bug fixes
- Improved software ingestion DB lock times by pre-inserting software/titles in smaller batches when hosts check in.
- Re-added and optimized fix for macos software ingestion to prevent duplicate software due to end user renaming software on host.
## Fleet 4.73.2 (Sep 23, 2025)
### Bug fixes

View file

@ -1 +0,0 @@
* Re-added and optimized fix for macos software ingestion to prevent duplicate software due to end user renaming software on host.

View file

@ -1 +0,0 @@
* Improved software ingestion DB lock times by pre-inserting software/titles in smaller batches when hosts check in.

View file

@ -4,11 +4,11 @@ name: fleet
keywords:
- fleet
- osquery
version: v6.6.16
version: v6.6.17
home: https://github.com/fleetdm/fleet
sources:
- https://github.com/fleetdm/fleet.git
appVersion: v4.73.2
appVersion: v4.73.3
dependencies:
- name: mysql
condition: mysql.enabled

View file

@ -3,7 +3,7 @@
hostName: fleet.localhost
replicas: 3 # The number of Fleet instances to deploy
imageRepository: fleetdm/fleet
imageTag: v4.73.2 # Version of Fleet to deploy
imageTag: v4.73.3 # Version of Fleet to deploy
# imagePullSecrets is optional.
# imagePullSecrets:
# - name: docker

View file

@ -56,7 +56,7 @@ variable "database_name" {
variable "fleet_image" {
description = "the name of the container image to run"
default = "fleetdm/fleet:v4.73.2"
default = "fleetdm/fleet:v4.73.3"
}
variable "software_inventory" {

View file

@ -68,7 +68,7 @@ variable "redis_mem" {
}
variable "image" {
default = "fleetdm/fleet:v4.73.2"
default = "fleetdm/fleet:v4.73.3"
variable "software_installers_bucket_name" {
default = "fleet-software-installers"

View file

@ -1,6 +1,6 @@
{
"name": "fleetctl",
"version": "v4.73.2",
"version": "v4.73.3",
"description": "Installer for the fleetctl CLI tool",
"bin": {
"fleetctl": "./run.js"