Update Versions for 4.44.1 (#16722)

This commit is contained in:
George Karr 2024-02-12 17:20:07 -05:00 committed by GitHub
parent 21e0515f78
commit aac971145f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
13 changed files with 32 additions and 12 deletions

View File

@ -1,3 +1,23 @@
## Fleet 4.44.1 (Feb 12, 2024)
### Bug fixes
* Fixed a bug where long enroll secrets would overlap with the action buttons on top of them.
* Fixed a bug that caused OS Settings to never get verified if the MySQL config of Fleet's database had `only_full_group_by` mode enabled (enabled by default).
* Fixed visual display of chevron right icons on Chrome.
* Renamed the `mdm_windows_configuration_profiles` and `mdm_apple_configuration_profiles` `updated_at` field to `uploaded_at` and removed the automatic setting of the value, set explicitly instead.
* Fixed a small alignment bug in the setup flow.
* Improved the validation of Windows profiles to prevent errors when the profiles were delivered to the hosts. If you needed to embed a nested XML structure (for example, for Wi-Fi profiles), you could either:
- Escaped the XML.
- Used a wrapping `<![CDATA[ ... ]]>` element.
* Fixed an issue where an inaccurate message was returned after running an async (queued) script.
* Fixed URL query params to reset when switching tabs.
* Fixed vulnerable software dropdown from switching back to all teams.
* Updated `GET /api/v1/fleet/hosts/:id/activities/upcoming` response to include the count of all upcoming activities for the host.
* Fixed an issue where software from a Parallels VM on a MacOS host would show up in Fleet as if it were the host's software.
* Removed unnecessary nested database transactions in batch-setting of MDM profiles.
* Added count of upcoming activities to host vitals UI.
## Fleet 4.44.0 (Jan 31, 2024)
### Changes

View File

@ -8,7 +8,7 @@ version: v6.0.2
home: https://github.com/fleetdm/fleet
sources:
- https://github.com/fleetdm/fleet.git
appVersion: v4.44.0
appVersion: v4.44.1
dependencies:
- name: mysql
condition: mysql.enabled

View File

@ -2,7 +2,7 @@
# All settings related to how Fleet is deployed in Kubernetes
hostName: fleet.localhost
replicas: 3 # The number of Fleet instances to deploy
imageTag: v4.44.0 # Version of Fleet to deploy
imageTag: v4.44.1 # Version of Fleet to deploy
podAnnotations: {} # Additional annotations to add to the Fleet pod
serviceAccountAnnotations: {} # Additional annotations to add to the Fleet service account
resources:

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.44.0"
default = "fleetdm/fleet:v4.44.1"
}
variable "software_inventory" {

View File

@ -68,5 +68,5 @@ variable "redis_mem" {
}
variable "image" {
default = "fleet:v4.44.0"
default = "fleet:v4.44.1"
}

View File

@ -206,7 +206,7 @@ resource "random_uuid" "jitprovisioner" {
# Use the local to make the trigger work.
locals {
fleet_tag = "v4.44.0"
fleet_tag = "v4.44.1"
}
resource "null_resource" "standard-query-library" {

View File

@ -165,7 +165,7 @@ resource "helm_release" "main" {
set {
name = "imageTag"
value = "v4.44.0"
value = "v4.44.1"
}
set {

View File

@ -13,7 +13,7 @@ variable "fleet_config" {
type = object({
mem = optional(number, 4096)
cpu = optional(number, 512)
image = optional(string, "fleetdm/fleet:v4.44.0")
image = optional(string, "fleetdm/fleet:v4.44.1")
family = optional(string, "fleet")
sidecars = optional(list(any), [])
depends_on = optional(list(any), [])

View File

@ -74,7 +74,7 @@ variable "fleet_config" {
type = object({
mem = optional(number, 4096)
cpu = optional(number, 512)
image = optional(string, "fleetdm/fleet:v4.44.0")
image = optional(string, "fleetdm/fleet:v4.44.1")
family = optional(string, "fleet")
sidecars = optional(list(any), [])
depends_on = optional(list(any), [])

View File

@ -17,7 +17,7 @@ provider "aws" {
}
locals {
fleet_image = "fleetdm/fleet:v4.44.0"
fleet_image = "fleetdm/fleet:v4.44.1"
domain_name = "example.com"
}

View File

@ -165,7 +165,7 @@ variable "fleet_config" {
type = object({
mem = optional(number, 4096)
cpu = optional(number, 512)
image = optional(string, "fleetdm/fleet:v4.44.0")
image = optional(string, "fleetdm/fleet:v4.44.1")
family = optional(string, "fleet")
sidecars = optional(list(any), [])
depends_on = optional(list(any), [])

View File

@ -215,7 +215,7 @@ variable "fleet_config" {
type = object({
mem = optional(number, 4096)
cpu = optional(number, 512)
image = optional(string, "fleetdm/fleet:v4.44.0")
image = optional(string, "fleetdm/fleet:v4.44.1")
family = optional(string, "fleet")
sidecars = optional(list(any), [])
depends_on = optional(list(any), [])

View File

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