mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
Prepare v4.34.1 (#13073)
This commit is contained in:
parent
3bed4b7e21
commit
c8dee16121
9 changed files with 12 additions and 9 deletions
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -1,2 +0,0 @@
|
|||
- If a policy was defined with an invalid query, the desktop endpoint should count that policy as a
|
||||
failed policy.
|
||||
|
|
@ -1 +0,0 @@
|
|||
- UI Fix: Observer + should be able to run any query by clicking create new query
|
||||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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" {
|
||||
|
|
|
|||
|
|
@ -68,5 +68,5 @@ variable "redis_mem" {
|
|||
}
|
||||
|
||||
variable "image" {
|
||||
default = "fleet:v4.34.0"
|
||||
default = "fleet:v4.34.1"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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" {
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue