From 48ef8f3933c09f107ec089ba4e34ab666476a653 Mon Sep 17 00:00:00 2001 From: George Karr Date: Fri, 12 Jan 2024 16:54:42 -0600 Subject: [PATCH] Prepare new patch version 4.43.1 (#16087) --- CHANGELOG.md | 12 ++++++++++++ changes/15635-scep-status | 2 -- changes/15823-host-timeout-user-msg | 2 -- charts/fleet/Chart.yaml | 2 +- charts/fleet/values.yaml | 2 +- infrastructure/dogfood/terraform/aws/variables.tf | 2 +- infrastructure/dogfood/terraform/gcp/variables.tf | 2 +- .../sandbox/JITProvisioner/jitprovisioner.tf | 2 +- .../PreProvisioner/lambda/deploy_terraform/main.tf | 2 +- terraform/byo-vpc/byo-db/byo-ecs/variables.tf | 2 +- terraform/byo-vpc/byo-db/variables.tf | 2 +- terraform/byo-vpc/example/main.tf | 2 +- terraform/byo-vpc/variables.tf | 2 +- terraform/variables.tf | 2 +- tools/fleetctl-npm/package.json | 2 +- 15 files changed, 24 insertions(+), 16 deletions(-) delete mode 100644 changes/15635-scep-status delete mode 100644 changes/15823-host-timeout-user-msg diff --git a/CHANGELOG.md b/CHANGELOG.md index 08c61f7bc8..633a5042b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## Fleet 4.43.1 (Jan 12, 2024) + +### Bug fixes + +* Fixed bug where script results would sometimes show the wrong error message when a user attempts + to run a script on a host that has scripts disabled. +* Fixed an issue with SCEP endpoints sending back 500 status codes. Should return 400 now if bad + data is sent to SCEP API. +* Fixed text and icon alignment UI bug. +* Fixed message for script execution timeout. +* Fixed failed scripts showing the wrong error. + ## Fleet 4.43.0 (Jan 9, 2024) ### Changes diff --git a/changes/15635-scep-status b/changes/15635-scep-status deleted file mode 100644 index 1effc03bfe..0000000000 --- a/changes/15635-scep-status +++ /dev/null @@ -1,2 +0,0 @@ -- Fixes issue with SCEP endpoints sending back incorrect status codes. Should return 400 now if bad - data is sent to SCEP API. \ No newline at end of file diff --git a/changes/15823-host-timeout-user-msg b/changes/15823-host-timeout-user-msg deleted file mode 100644 index 98cdd28f9f..0000000000 --- a/changes/15823-host-timeout-user-msg +++ /dev/null @@ -1,2 +0,0 @@ -- Fixed bug where script results would sometimes show the wrong error message when a user attempts - to run a script on a host that has scripts disabled. diff --git a/charts/fleet/Chart.yaml b/charts/fleet/Chart.yaml index 3bd693975b..61f4dab80b 100644 --- a/charts/fleet/Chart.yaml +++ b/charts/fleet/Chart.yaml @@ -8,7 +8,7 @@ version: v6.0.1 home: https://github.com/fleetdm/fleet sources: - https://github.com/fleetdm/fleet.git -appVersion: v4.43.0 +appVersion: v4.43.1 dependencies: - name: mysql condition: mysql.enabled diff --git a/charts/fleet/values.yaml b/charts/fleet/values.yaml index 8cb4a96812..b92599ef42 100644 --- a/charts/fleet/values.yaml +++ b/charts/fleet/values.yaml @@ -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.43.0 # Version of Fleet to deploy +imageTag: v4.43.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: diff --git a/infrastructure/dogfood/terraform/aws/variables.tf b/infrastructure/dogfood/terraform/aws/variables.tf index 524c33f00c..b862a6ed7d 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.43.0" + default = "fleetdm/fleet:v4.43.1" } variable "software_inventory" { diff --git a/infrastructure/dogfood/terraform/gcp/variables.tf b/infrastructure/dogfood/terraform/gcp/variables.tf index e7bbe81266..bf1fa3d7ea 100644 --- a/infrastructure/dogfood/terraform/gcp/variables.tf +++ b/infrastructure/dogfood/terraform/gcp/variables.tf @@ -68,5 +68,5 @@ variable "redis_mem" { } variable "image" { - default = "fleet:v4.43.0" + default = "fleet:v4.43.1" } diff --git a/infrastructure/sandbox/JITProvisioner/jitprovisioner.tf b/infrastructure/sandbox/JITProvisioner/jitprovisioner.tf index e73f54f2e0..7546e53207 100644 --- a/infrastructure/sandbox/JITProvisioner/jitprovisioner.tf +++ b/infrastructure/sandbox/JITProvisioner/jitprovisioner.tf @@ -206,7 +206,7 @@ resource "random_uuid" "jitprovisioner" { # Use the local to make the trigger work. locals { - fleet_tag = "v4.43.0" + fleet_tag = "v4.43.1" } resource "null_resource" "standard-query-library" { diff --git a/infrastructure/sandbox/PreProvisioner/lambda/deploy_terraform/main.tf b/infrastructure/sandbox/PreProvisioner/lambda/deploy_terraform/main.tf index 2a3bc963fc..470b719f5c 100644 --- a/infrastructure/sandbox/PreProvisioner/lambda/deploy_terraform/main.tf +++ b/infrastructure/sandbox/PreProvisioner/lambda/deploy_terraform/main.tf @@ -165,7 +165,7 @@ resource "helm_release" "main" { set { name = "imageTag" - value = "v4.43.0" + value = "v4.43.1" } set { diff --git a/terraform/byo-vpc/byo-db/byo-ecs/variables.tf b/terraform/byo-vpc/byo-db/byo-ecs/variables.tf index 239719b318..780997137b 100644 --- a/terraform/byo-vpc/byo-db/byo-ecs/variables.tf +++ b/terraform/byo-vpc/byo-db/byo-ecs/variables.tf @@ -13,7 +13,7 @@ variable "fleet_config" { type = object({ mem = optional(number, 4096) cpu = optional(number, 512) - image = optional(string, "fleetdm/fleet:v4.43.0") + image = optional(string, "fleetdm/fleet:v4.43.1") family = optional(string, "fleet") sidecars = optional(list(any), []) depends_on = optional(list(any), []) diff --git a/terraform/byo-vpc/byo-db/variables.tf b/terraform/byo-vpc/byo-db/variables.tf index 6c4bf7fae8..350b0a15d8 100644 --- a/terraform/byo-vpc/byo-db/variables.tf +++ b/terraform/byo-vpc/byo-db/variables.tf @@ -74,7 +74,7 @@ variable "fleet_config" { type = object({ mem = optional(number, 4096) cpu = optional(number, 512) - image = optional(string, "fleetdm/fleet:v4.43.0") + image = optional(string, "fleetdm/fleet:v4.43.1") family = optional(string, "fleet") sidecars = optional(list(any), []) depends_on = optional(list(any), []) diff --git a/terraform/byo-vpc/example/main.tf b/terraform/byo-vpc/example/main.tf index a6c6a54149..242b1b0df5 100644 --- a/terraform/byo-vpc/example/main.tf +++ b/terraform/byo-vpc/example/main.tf @@ -17,7 +17,7 @@ provider "aws" { } locals { - fleet_image = "fleetdm/fleet:v4.43.0" + fleet_image = "fleetdm/fleet:v4.43.1" domain_name = "example.com" } diff --git a/terraform/byo-vpc/variables.tf b/terraform/byo-vpc/variables.tf index a973ac6fbc..2a874fdcb4 100644 --- a/terraform/byo-vpc/variables.tf +++ b/terraform/byo-vpc/variables.tf @@ -165,7 +165,7 @@ variable "fleet_config" { type = object({ mem = optional(number, 4096) cpu = optional(number, 512) - image = optional(string, "fleetdm/fleet:v4.43.0") + image = optional(string, "fleetdm/fleet:v4.43.1") family = optional(string, "fleet") sidecars = optional(list(any), []) depends_on = optional(list(any), []) diff --git a/terraform/variables.tf b/terraform/variables.tf index 3679ed9dde..0156fb1f0a 100644 --- a/terraform/variables.tf +++ b/terraform/variables.tf @@ -215,7 +215,7 @@ variable "fleet_config" { type = object({ mem = optional(number, 4096) cpu = optional(number, 512) - image = optional(string, "fleetdm/fleet:v4.43.0") + image = optional(string, "fleetdm/fleet:v4.43.1") family = optional(string, "fleet") sidecars = optional(list(any), []) depends_on = optional(list(any), []) diff --git a/tools/fleetctl-npm/package.json b/tools/fleetctl-npm/package.json index 2bd859426a..637b1aa9b4 100644 --- a/tools/fleetctl-npm/package.json +++ b/tools/fleetctl-npm/package.json @@ -1,6 +1,6 @@ { "name": "fleetctl", - "version": "v4.43.0", + "version": "v4.43.1", "description": "Installer for the fleetctl CLI tool", "bin": { "fleetctl": "./run.js"