mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
Bring 4.17.1 changelog into main (#6901)
This commit is contained in:
parent
d9935f72d6
commit
6002324139
13 changed files with 22 additions and 18 deletions
15
CHANGELOG.md
15
CHANGELOG.md
|
|
@ -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.
|
||||
|
||||
|
|
|
|||
|
|
@ -1 +0,0 @@
|
|||
* Fix edit user modal converting a user to sso will provide a new password of null
|
||||
|
|
@ -1 +0,0 @@
|
|||
* Fix edit user modal hanging after editing one user
|
||||
|
|
@ -1 +0,0 @@
|
|||
* Fix exporting live query results
|
||||
|
|
@ -1 +0,0 @@
|
|||
* Live query correctly counts results not hosts
|
||||
|
|
@ -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.
|
||||
|
|
@ -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.
|
||||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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" {
|
||||
|
|
|
|||
|
|
@ -68,5 +68,5 @@ variable "redis_mem" {
|
|||
}
|
||||
|
||||
variable "image" {
|
||||
default = "fleet:v4.17.0"
|
||||
default = "fleet:v4.17.1"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue