mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
Prepare for 4.20.1 (#7783)
This commit is contained in:
parent
dba5724e86
commit
dab45f1180
12 changed files with 20 additions and 13 deletions
12
CHANGELOG.md
12
CHANGELOG.md
|
|
@ -1,3 +1,15 @@
|
|||
## Fleet 4.20.1 (Sep 15, 2022)
|
||||
|
||||
* Fixed a bug in which [vulnerability automations](https://fleetdm.com/docs/using-fleet/automations#vulnerability-automations) sent duplicate webhooks.
|
||||
|
||||
* Fixed a bug in which logging in with single sign-on (SSO) did not work after a failed authorization attempt.
|
||||
|
||||
* Fixed a migration error. This only affects Fleet instances that use MariaDB. MariaDB is not [officially supported](https://fleetdm.com/docs/deploying/faq#what-my-sql-versions-are-supported). Future issues specific to MariaDB may not be fixed quickly (or at all). We strongly advise migrating to MySQL 8.0.19+.
|
||||
|
||||
* Fixed a bug on the **Edit pack** page in which no targets are shown in the target picker.
|
||||
|
||||
* Fixed a styling bug on the **Host details > Query > Select a query** modal.
|
||||
|
||||
## Fleet 4.20.0 (Sep 9, 2022)
|
||||
|
||||
* Add ability to know how many hosts, and which hosts, have Munki issues. This information is presented on the **Home > macOS** page and **Host details** page. This information is also available in the [`GET /api/v1/fleet/macadmins`](https://fleetdm.com/docs/using-fleet/rest-api#get-aggregated-hosts-mobile-device-management-mdm-and-munki-information) and [`GET /api/v1/fleet/hosts/{id}/macadmins`](https://fleetdm.com/docs/using-fleet/rest-api#get-hosts-mobile-device-management-mdm-and-munki-information) and API routes.
|
||||
|
|
|
|||
|
|
@ -1,2 +0,0 @@
|
|||
* If the same vulnerability was detected in more than one Software, duplicate calls were being
|
||||
issued to third party integrations.
|
||||
|
|
@ -1 +0,0 @@
|
|||
- Fix Single Sign On button not working after a failed authorization attempt.
|
||||
|
|
@ -1 +0,0 @@
|
|||
* Under MariaDB the FK from software_cve to software_cpe has a different name which was causing the migration to fail.
|
||||
|
|
@ -1 +0,0 @@
|
|||
- Fix styling of select a query modal on the host details page
|
||||
|
|
@ -4,9 +4,9 @@ name: fleet
|
|||
keywords:
|
||||
- fleet
|
||||
- osquery
|
||||
version: v4.20.0
|
||||
version: v4.20.1
|
||||
home: https://github.com/fleetdm/fleet
|
||||
sources:
|
||||
- https://github.com/fleetdm/fleet.git
|
||||
appVersion: v4.20.0
|
||||
appVersion: v4.20.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.20.0 # Version of Fleet to deploy
|
||||
imageTag: v4.20.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
|
||||
|
|
|
|||
|
|
@ -264,7 +264,7 @@ spec:
|
|||
spec:
|
||||
containers:
|
||||
- name: fleet
|
||||
image: fleetdm/fleet:4.20.0
|
||||
image: fleetdm/fleet:4.20.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.20.0"
|
||||
default = "fleetdm/fleet:v4.20.1"
|
||||
}
|
||||
|
||||
variable "software_inventory" {
|
||||
|
|
|
|||
|
|
@ -68,5 +68,5 @@ variable "redis_mem" {
|
|||
}
|
||||
|
||||
variable "image" {
|
||||
default = "fleet:v4.20.0"
|
||||
default = "fleet:v4.20.1"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -157,7 +157,7 @@ resource "helm_release" "main" {
|
|||
|
||||
set {
|
||||
name = "imageTag"
|
||||
value = "v4.20.0"
|
||||
value = "v4.20.1"
|
||||
}
|
||||
|
||||
set {
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "fleetctl",
|
||||
"version": "v4.20.0",
|
||||
"version": "v4.20.1",
|
||||
"description": "Installer for the fleetctl CLI tool",
|
||||
"bin": {
|
||||
"fleetctl": "./run.js"
|
||||
|
|
|
|||
Loading…
Reference in a new issue