Prepare v4.35.2 (#13273)

This commit is contained in:
Luke Heath 2023-08-10 11:35:03 -07:00 committed by GitHub
parent f3b9bcc02a
commit 21b21abd22
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 11 additions and 7 deletions

View file

@ -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.

View file

@ -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

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.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:

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.35.1"
default = "fleetdm/fleet:v4.35.2"
}
variable "software_inventory" {

View file

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

View file

@ -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" {

View file

@ -165,7 +165,7 @@ resource "helm_release" "main" {
set {
name = "imageTag"
value = "v4.35.1"
value = "v4.35.2"
}
set {

View file

@ -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"