diff --git a/CHANGELOG.md b/CHANGELOG.md index 7dea529cef..bc5b9ea467 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/changes/29053-sw-names-on-ingest b/changes/29053-sw-names-on-ingest deleted file mode 100644 index a459ca9485..0000000000 --- a/changes/29053-sw-names-on-ingest +++ /dev/null @@ -1 +0,0 @@ -* Re-added and optimized fix for macos software ingestion to prevent duplicate software due to end user renaming software on host. diff --git a/changes/33298-software-ingestion b/changes/33298-software-ingestion deleted file mode 100644 index b7fcb5d73c..0000000000 --- a/changes/33298-software-ingestion +++ /dev/null @@ -1 +0,0 @@ -* Improved software ingestion DB lock times by pre-inserting software/titles in smaller batches when hosts check in. diff --git a/charts/fleet/Chart.yaml b/charts/fleet/Chart.yaml index 0fcefc8c86..76c6327e9c 100644 --- a/charts/fleet/Chart.yaml +++ b/charts/fleet/Chart.yaml @@ -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 diff --git a/charts/fleet/values.yaml b/charts/fleet/values.yaml index 0810603ad3..46c30a17a6 100644 --- a/charts/fleet/values.yaml +++ b/charts/fleet/values.yaml @@ -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 diff --git a/infrastructure/dogfood/terraform/aws/variables.tf b/infrastructure/dogfood/terraform/aws/variables.tf index 0fd0d1dfe5..43d6330a39 100644 --- a/infrastructure/dogfood/terraform/aws/variables.tf +++ b/infrastructure/dogfood/terraform/aws/variables.tf @@ -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" { diff --git a/infrastructure/dogfood/terraform/gcp/variables.tf b/infrastructure/dogfood/terraform/gcp/variables.tf index bdf35ffd1d..eb6341e9fd 100644 --- a/infrastructure/dogfood/terraform/gcp/variables.tf +++ b/infrastructure/dogfood/terraform/gcp/variables.tf @@ -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" diff --git a/tools/fleetctl-npm/package.json b/tools/fleetctl-npm/package.json index dae69cc849..1c14fd7645 100644 --- a/tools/fleetctl-npm/package.json +++ b/tools/fleetctl-npm/package.json @@ -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"