diff --git a/CHANGELOG.md b/CHANGELOG.md index 935643fc358a..2af326c220ee 100644 --- a/CHANGELOG.md +++ b/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. diff --git a/changes/bug-6717-duplicate-calls-third-party-integrations b/changes/bug-6717-duplicate-calls-third-party-integrations deleted file mode 100644 index 76b2168851ed..000000000000 --- a/changes/bug-6717-duplicate-calls-third-party-integrations +++ /dev/null @@ -1,2 +0,0 @@ -* If the same vulnerability was detected in more than one Software, duplicate calls were being -issued to third party integrations. \ No newline at end of file diff --git a/changes/bug-7624-sso-login-button-not-working b/changes/bug-7624-sso-login-button-not-working deleted file mode 100644 index 7f4d496356db..000000000000 --- a/changes/bug-7624-sso-login-button-not-working +++ /dev/null @@ -1 +0,0 @@ -- Fix Single Sign On button not working after a failed authorization attempt. diff --git a/changes/bug-7682-bug-migration-maria-db b/changes/bug-7682-bug-migration-maria-db deleted file mode 100644 index e4a4ae58135c..000000000000 --- a/changes/bug-7682-bug-migration-maria-db +++ /dev/null @@ -1 +0,0 @@ -* Under MariaDB the FK from software_cve to software_cpe has a different name which was causing the migration to fail. \ No newline at end of file diff --git a/changes/bug-7757-select-query-styling b/changes/bug-7757-select-query-styling deleted file mode 100644 index 941615c59c9a..000000000000 --- a/changes/bug-7757-select-query-styling +++ /dev/null @@ -1 +0,0 @@ -- Fix styling of select a query modal on the host details page \ No newline at end of file diff --git a/charts/fleet/Chart.yaml b/charts/fleet/Chart.yaml index 20c411d745fe..5d0ff137bdf9 100644 --- a/charts/fleet/Chart.yaml +++ b/charts/fleet/Chart.yaml @@ -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 diff --git a/charts/fleet/values.yaml b/charts/fleet/values.yaml index 68d5bf38bdc3..cfb6cc0cf545 100644 --- a/charts/fleet/values.yaml +++ b/charts/fleet/values.yaml @@ -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 diff --git a/docs/Deploying/Server-Installation.md b/docs/Deploying/Server-Installation.md index a8ccac9b2143..e347f31a100d 100644 --- a/docs/Deploying/Server-Installation.md +++ b/docs/Deploying/Server-Installation.md @@ -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: diff --git a/infrastructure/dogfood/terraform/aws/variables.tf b/infrastructure/dogfood/terraform/aws/variables.tf index 563f4d7dcbe7..ac839437c985 100644 --- a/infrastructure/dogfood/terraform/aws/variables.tf +++ b/infrastructure/dogfood/terraform/aws/variables.tf @@ -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" { diff --git a/infrastructure/dogfood/terraform/gcp/variables.tf b/infrastructure/dogfood/terraform/gcp/variables.tf index 8e8404b73e96..e0b99a1dbddc 100644 --- a/infrastructure/dogfood/terraform/gcp/variables.tf +++ b/infrastructure/dogfood/terraform/gcp/variables.tf @@ -68,5 +68,5 @@ variable "redis_mem" { } variable "image" { - default = "fleet:v4.20.0" + default = "fleet:v4.20.1" } diff --git a/infrastructure/sandbox/PreProvisioner/lambda/deploy_terraform/main.tf b/infrastructure/sandbox/PreProvisioner/lambda/deploy_terraform/main.tf index cd7a99008166..95234a16f438 100644 --- a/infrastructure/sandbox/PreProvisioner/lambda/deploy_terraform/main.tf +++ b/infrastructure/sandbox/PreProvisioner/lambda/deploy_terraform/main.tf @@ -157,7 +157,7 @@ resource "helm_release" "main" { set { name = "imageTag" - value = "v4.20.0" + value = "v4.20.1" } set { diff --git a/tools/fleetctl-npm/package.json b/tools/fleetctl-npm/package.json index be65387846a6..4bca0eee37c7 100644 --- a/tools/fleetctl-npm/package.json +++ b/tools/fleetctl-npm/package.json @@ -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"