Skip to content

Commit

Permalink
Prepare for 4.20.1 (#7783)
Browse files Browse the repository at this point in the history
  • Loading branch information
noahtalerman authored and lukeheath committed Sep 16, 2022
1 parent de2042c commit 77a733e
Show file tree
Hide file tree
Showing 12 changed files with 20 additions and 13 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 0 additions & 2 deletions changes/bug-6717-duplicate-calls-third-party-integrations

This file was deleted.

1 change: 0 additions & 1 deletion changes/bug-7624-sso-login-button-not-working

This file was deleted.

1 change: 0 additions & 1 deletion changes/bug-7682-bug-migration-maria-db

This file was deleted.

1 change: 0 additions & 1 deletion changes/bug-7757-select-query-styling

This file was deleted.

4 changes: 2 additions & 2 deletions charts/fleet/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 changes: 1 addition & 1 deletion charts/fleet/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/Deploying/Server-Installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/dogfood/terraform/aws/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/dogfood/terraform/gcp/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -68,5 +68,5 @@ variable "redis_mem" {
}

variable "image" {
default = "fleet:v4.20.0"
default = "fleet:v4.20.1"
}
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ resource "helm_release" "main" {

set {
name = "imageTag"
value = "v4.20.0"
value = "v4.20.1"
}

set {
Expand Down
2 changes: 1 addition & 1 deletion tools/fleetctl-npm/package.json
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 77a733e

Please sign in to comment.