diff --git a/CHANGELOG.md b/CHANGELOG.md index a4834bfa4e..867a43e7fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## Fleet 4.34.1 (Jul 14, 2023) + +* Fixed Observer+ not being able to run some queries. + +* If a policy was defined with an invalid query, the desktop endpoint should count that policy as a failed policy. + ## Fleet 4.34.0 (Jul 11, 2023) * Added execution of programmatic Windows MDM enrollment on eligible devices when Windows MDM is enabled. diff --git a/changes/12420-handle-policies-with-invalid-queries-desktop-endpoint b/changes/12420-handle-policies-with-invalid-queries-desktop-endpoint deleted file mode 100644 index 9385222293..0000000000 --- a/changes/12420-handle-policies-with-invalid-queries-desktop-endpoint +++ /dev/null @@ -1,2 +0,0 @@ -- If a policy was defined with an invalid query, the desktop endpoint should count that policy as a - failed policy. diff --git a/changes/critical-bug-12743-observer+-run-new-query b/changes/critical-bug-12743-observer+-run-new-query deleted file mode 100644 index d27222ccbf..0000000000 --- a/changes/critical-bug-12743-observer+-run-new-query +++ /dev/null @@ -1 +0,0 @@ -- UI Fix: Observer + should be able to run any query by clicking create new query diff --git a/charts/fleet/Chart.yaml b/charts/fleet/Chart.yaml index f2bf04d399..59a721eb76 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.34.0 +appVersion: v4.34.1 diff --git a/charts/fleet/values.yaml b/charts/fleet/values.yaml index 988330312e..c09e5906f2 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.34.0 # Version of Fleet to deploy +imageTag: v4.34.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 9a491153db..633bf3562a 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.34.0" + default = "fleetdm/fleet:v4.34.1" } variable "software_inventory" { diff --git a/infrastructure/dogfood/terraform/gcp/variables.tf b/infrastructure/dogfood/terraform/gcp/variables.tf index 8095a8d024..912871e652 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.34.0" + default = "fleet:v4.34.1" } diff --git a/infrastructure/sandbox/JITProvisioner/jitprovisioner.tf b/infrastructure/sandbox/JITProvisioner/jitprovisioner.tf index 40bed07ec2..ed2fdafdac 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.34.0" + fleet_tag = "v4.34.1" } resource "null_resource" "standard-query-library" { diff --git a/tools/fleetctl-npm/package.json b/tools/fleetctl-npm/package.json index 1af1cccd5e..5691b23648 100644 --- a/tools/fleetctl-npm/package.json +++ b/tools/fleetctl-npm/package.json @@ -1,6 +1,6 @@ { "name": "fleetctl", - "version": "v4.34.0", + "version": "v4.34.1", "description": "Installer for the fleetctl CLI tool", "bin": { "fleetctl": "./run.js"