Bring 4.17.1 changelog into main (#6901)

This commit is contained in:
Zach Wasserman 2022-08-01 10:50:40 -07:00 committed by GitHub
parent d9935f72d6
commit 6002324139
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 22 additions and 18 deletions

View file

@ -1,5 +1,18 @@
## Fleet 4.17.1 (Jul 22, 2022)
## Fleet 4.17.0 (July 8, 2022)
* Fixed a bug causing an error when converting users to SSO login.
* Fixed a bug causing the **Edit User** modal to hang when editing multiple users.
* Fixed a bug that caused Ubuntu hosts to display an inaccurate OS version.
* Fixed a bug affecting exporting live query results.
* Fixed a bug in the Fleet UI affecting live query result counts.
* Improved **Battery Health** processing to better reflect the health of batteries for M1 Macs.
## Fleet 4.17.0 (Jul 8, 2022)
* Fleet Premium and Fleet Free: Fleet desktop is officially out of beta. This application shows users exactly what's going on with their device and gives them the tools they need to make sure it is secure and aligned with policies. They just need to click an icon in their menu bar.

View file

@ -1 +0,0 @@
* Fix edit user modal converting a user to sso will provide a new password of null

View file

@ -1 +0,0 @@
* Fix edit user modal hanging after editing one user

View file

@ -1 +0,0 @@
* Fix exporting live query results

View file

@ -1 +0,0 @@
* Live query correctly counts results not hosts

View file

@ -1,2 +0,0 @@
- Updated the regexp we use for detecting the major/minor version on OS platforms to account for any
string after the version part.

View file

@ -1,3 +0,0 @@
- Modified `GET /host/:id` endpoint to calculate battery health based on the cycle count reported by
osquery such that “Normal” corresponds to cycle count < 1000 and “Replacement recommended”
corresponds to cycle count >= 1000.

View file

@ -4,8 +4,8 @@ name: fleet
keywords:
- fleet
- osquery
version: v4.17.0
version: v4.17.1
home: https://github.com/fleetdm/fleet
sources:
- https://github.com/fleetdm/fleet.git
appVersion: v4.17.0
appVersion: v4.17.1

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.17.0 # Version of Fleet to deploy
imageTag: v4.17.1 # 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

@ -445,7 +445,7 @@ spec:
spec:
containers:
- name: fleet
image: fleetdm/fleet:4.17.0
image: fleetdm/fleet:4.17.1
env:
- name: FLEET_MYSQL_ADDRESS
valueFrom:

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

View file

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

View file

@ -1,6 +1,6 @@
{
"name": "fleetctl",
"version": "v4.17.0",
"version": "v4.17.1",
"description": "Installer for the fleetctl CLI tool",
"bin": {
"fleetctl": "./run.js"
@ -24,4 +24,4 @@
"osquery",
"security"
]
}
}