Updates for Fleet 4.13.2 (#5361)

Co-authored-by: Michal Nicpon <michal@fleetdm.com>
This commit is contained in:
Zach Wasserman 2022-04-25 14:54:25 -07:00 committed by GitHub
parent a64982f96c
commit 64b6f748fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 11 additions and 7 deletions

View File

@ -1,3 +1,7 @@
## Fleet 4.13.2 (Apr 25, 2022)
* Fix a bug with os versions not being updated. Affected deployments using MySQL < 5.7.22 or equivalent AWS RDS Aurora < 2.10.1.
## Fleet 4.13.1 (Apr 20, 2022)
* Fixes an SSO login issue introduced in 4.13.0.

View File

@ -258,7 +258,7 @@ e2e-serve-premium: e2e-reset-db
./build/fleet serve --dev_license --mysql_address=localhost:3307 --mysql_username=root --mysql_password=toor --mysql_database=e2e --server_address=0.0.0.0:8642
changelog:
sh -c "find changes -type file | grep -v .keep | xargs -I {} sh -c 'grep \"\S\" {}; echo' > new-CHANGELOG.md"
sh -c "find changes -type f | grep -v .keep | xargs -I {} sh -c 'grep \"\S\" {}; echo' > new-CHANGELOG.md"
sh -c "cat new-CHANGELOG.md CHANGELOG.md > tmp-CHANGELOG.md && rm new-CHANGELOG.md && mv tmp-CHANGELOG.md CHANGELOG.md"
sh -c "git rm changes/*"

View File

@ -4,8 +4,8 @@ name: fleet
keywords:
- fleet
- osquery
version: v4.13.1
version: v4.13.2
home: https://github.com/fleetdm/fleet
sources:
- https://github.com/fleetdm/fleet.git
appVersion: v4.13.1
appVersion: v4.13.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.13.1 # Version of Fleet to deploy
imageTag: v4.13.2 # Version of Fleet to deploy
createIngress: true # Whether or not to automatically create an Ingress
ingressAnnotations: {} # Additional annotation to add to the Ingress
podAnnotations: {} # Additional annotations to add to the Fleet pod

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

View File

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

View File

@ -1,6 +1,6 @@
{
"name": "fleetctl",
"version": "v4.13.1",
"version": "v4.13.2",
"description": "Installer for the fleetctl CLI tool",
"bin": {
"fleetctl": "./run.js"