Updating changelog for 4.47.1 (#17689)

This commit is contained in:
George Karr 2024-03-19 09:47:00 -05:00 committed by GitHub
parent aef64e3241
commit c6d5151198
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
12 changed files with 21 additions and 12 deletions

View File

@ -1,3 +1,12 @@
## Fleet 4.47.1 (Mar 18, 2024)
### Bug fixes
* Removed outdated tooltips from UI.
* Fixed an issue with Windows MDM profile processing where `<Add>` commands were being skipped.
* Team users no longer have access to OS versions on hosts from other teams for GET fleet/os_versions and GET fleet/os_versions/[id].
* Reduced the number of 'Deadlock found' errors seen by the server when multiple hosts share the same UUID.
## Fleet 4.47.0 (Mar 11, 2024)
### Endpoint operations

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.47.0
appVersion: v4.47.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.47.0 # Version of Fleet to deploy
imageTag: v4.47.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.47.0"
default = "fleetdm/fleet:v4.47.1"
}
variable "software_inventory" {

View File

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

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.47.0")
image = optional(string, "fleetdm/fleet:v4.47.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.47.0")
image = optional(string, "fleetdm/fleet:v4.47.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.47.0"
fleet_image = "fleetdm/fleet:v4.47.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.47.0")
image = optional(string, "fleetdm/fleet:v4.47.1")
family = optional(string, "fleet")
sidecars = optional(list(any), [])
depends_on = optional(list(any), [])

View File

@ -59,8 +59,8 @@ module "fleet" {
fleet_config = {
# To avoid pull-rate limiting from dockerhub, consider using our quay.io mirror
# for the Fleet image. e.g. "quay.io/fleetdm/fleet:v4.47.0"
image = "fleetdm/fleet:v4.47.0" # override default to deploy the image you desire
# for the Fleet image. e.g. "quay.io/fleetdm/fleet:v4.47.1"
image = "fleetdm/fleet:v4.47.1" # override default to deploy the image you desire
# See https://fleetdm.com/docs/deploy/reference-architectures#aws for appropriate scaling
# memory and cpu.
autoscaling = {

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.47.0")
image = optional(string, "fleetdm/fleet:v4.47.1")
family = optional(string, "fleet")
sidecars = optional(list(any), [])
depends_on = optional(list(any), [])

View File

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