From 39feb96cd4365ff2ea4992d53f644a245fa92cbb Mon Sep 17 00:00:00 2001 From: Luke Heath Date: Thu, 10 Aug 2023 09:25:58 -0700 Subject: [PATCH] Prepare v4.35.2 --- CHANGELOG.md | 4 ++++ charts/fleet/Chart.yaml | 2 +- charts/fleet/values.yaml | 2 +- infrastructure/dogfood/terraform/aws/variables.tf | 2 +- infrastructure/dogfood/terraform/gcp/variables.tf | 2 +- infrastructure/sandbox/JITProvisioner/jitprovisioner.tf | 2 +- .../sandbox/PreProvisioner/lambda/deploy_terraform/main.tf | 2 +- tools/fleetctl-npm/package.json | 2 +- 8 files changed, 11 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e24707f295f2..93193e666d44 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## Fleet 4.35.2 (Aug 10, 2023) + +* Fixed a bug that set a wrong Fleet URL in Windows installers. + ## Fleet 4.35.1 (Aug 4, 2023) * Fixed a migration to account for columns with NULL values as a result of either creating schedules via the API without providing all values or by a race condition with database replicas. diff --git a/charts/fleet/Chart.yaml b/charts/fleet/Chart.yaml index d0676b7899a1..eb83276cd3a6 100644 --- a/charts/fleet/Chart.yaml +++ b/charts/fleet/Chart.yaml @@ -8,4 +8,4 @@ version: v5.0.1 home: https://github.com/fleetdm/fleet sources: - https://github.com/fleetdm/fleet.git -appVersion: v4.35.1 +appVersion: v4.35.2 diff --git a/charts/fleet/values.yaml b/charts/fleet/values.yaml index a5753258275c..71a1b98f34bb 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.35.1 # Version of Fleet to deploy +imageTag: v4.35.2 # 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 0d1fc8abffc6..413f78e980d2 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.35.1" + default = "fleetdm/fleet:v4.35.2" } variable "software_inventory" { diff --git a/infrastructure/dogfood/terraform/gcp/variables.tf b/infrastructure/dogfood/terraform/gcp/variables.tf index 2720096b86ab..18719389e62c 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.35.1" + default = "fleet:v4.35.2" } diff --git a/infrastructure/sandbox/JITProvisioner/jitprovisioner.tf b/infrastructure/sandbox/JITProvisioner/jitprovisioner.tf index 585167b13882..2e19d183484f 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.35.1" + fleet_tag = "v4.35.2" } 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 e5a209114424..975d0d6aafba 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.35.1" + value = "v4.35.2" } set { diff --git a/tools/fleetctl-npm/package.json b/tools/fleetctl-npm/package.json index 9b1c9f9d76f4..39bc5c3a04ec 100644 --- a/tools/fleetctl-npm/package.json +++ b/tools/fleetctl-npm/package.json @@ -1,6 +1,6 @@ { "name": "fleetctl", - "version": "v4.35.1", + "version": "v4.35.2", "description": "Installer for the fleetctl CLI tool", "bin": { "fleetctl": "./run.js"