mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
Prepare v4.43.2 (#16261)
This commit is contained in:
parent
8b33ab0dc2
commit
0430738030
25 changed files with 30 additions and 24 deletions
18
CHANGELOG.md
18
CHANGELOG.md
|
|
@ -1,3 +1,21 @@
|
|||
## Fleet 4.43.2 (Jan 22, 2024)
|
||||
|
||||
### Bug fixes
|
||||
|
||||
* Improved HTTP client used by `fleetctl` and `fleetd` to prevent errors for 204 responses.
|
||||
* Added free tier UI state to OS updates and setup experience pages.
|
||||
* Added warning/info messages when downgrading/upgrading `fleetd` or OSQuery.
|
||||
* Updated links to an expired osquery Slack invitation to go to the support page on the Fleet website.
|
||||
* Cleaned settings styling.
|
||||
* Created consistent loading states when using search filter.
|
||||
* Fixed center styling for empty states. For `software/titles` and `software/versions` endpoints, the
|
||||
`browser` property is no longer included in the response when empty.
|
||||
* Fixed the Windows MDM polling interval so that enrolled devices check-in regularly with Fleet to look for pending MDM-related actions.
|
||||
* Fixed missing empty members SVG by fixing SVG IDs.
|
||||
* Fixed a bug that caused the software/titles page to error.
|
||||
* Fixed 2 vulnerability false positives on Microsoft Teams on MacOS.
|
||||
* Fixed bug in CIS policy: Ensure an Inactivity Interval of 20 Minutes Or Less for the Screen Saver Is Enabled.
|
||||
|
||||
## Fleet 4.43.1 (Jan 15, 2024)
|
||||
|
||||
### Bug fixes
|
||||
|
|
|
|||
|
|
@ -1 +0,0 @@
|
|||
* Fixed the Windows MDM polling interval so that enrolled devices check-in regularly with Fleet to look for pending MDM-related actions.
|
||||
|
|
@ -1 +0,0 @@
|
|||
- Fixes 2 vulnerability false positives on Microsoft Teams on MacOS.
|
||||
|
|
@ -1 +0,0 @@
|
|||
- Consistent loading states when using searchfilter
|
||||
|
|
@ -1 +0,0 @@
|
|||
* Updated links to an expired osquery Slack invitation to go to the support page on the Fleet website.
|
||||
|
|
@ -1 +0,0 @@
|
|||
Added warning/info messages when downgrading/upgrading fleetd or osquery.
|
||||
|
|
@ -1 +0,0 @@
|
|||
- Cleaner settings styling
|
||||
|
|
@ -1 +0,0 @@
|
|||
* improve the HTTP client used by `fleetctl` and `fleetd` to prevent errors for 204 responses.
|
||||
|
|
@ -1 +0,0 @@
|
|||
* Fixed a bug that caused the software/titles page to error
|
||||
|
|
@ -1 +0,0 @@
|
|||
- Fix missing empty members svg by fixing svg ids
|
||||
|
|
@ -1 +0,0 @@
|
|||
- Fix center styling for empty states
|
||||
|
|
@ -1 +0,0 @@
|
|||
For `software/titles` and `software/versions` endpoints, the `browser` property is no longer included in the response when empty.
|
||||
|
|
@ -1 +0,0 @@
|
|||
- add free tier UI state to os updates and setup experience pages
|
||||
|
|
@ -8,7 +8,7 @@ version: v6.0.1
|
|||
home: https://github.com/fleetdm/fleet
|
||||
sources:
|
||||
- https://github.com/fleetdm/fleet.git
|
||||
appVersion: v4.43.1
|
||||
appVersion: v4.43.2
|
||||
dependencies:
|
||||
- name: mysql
|
||||
condition: mysql.enabled
|
||||
|
|
|
|||
|
|
@ -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.43.1 # Version of Fleet to deploy
|
||||
imageTag: v4.43.2 # Version of Fleet to deploy
|
||||
podAnnotations: {} # Additional annotations to add to the Fleet pod
|
||||
serviceAccountAnnotations: {} # Additional annotations to add to the Fleet service account
|
||||
resources:
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ variable "database_name" {
|
|||
|
||||
variable "fleet_image" {
|
||||
description = "the name of the container image to run"
|
||||
default = "fleetdm/fleet:v4.43.1"
|
||||
default = "fleetdm/fleet:v4.43.2"
|
||||
}
|
||||
|
||||
variable "software_inventory" {
|
||||
|
|
|
|||
|
|
@ -68,5 +68,5 @@ variable "redis_mem" {
|
|||
}
|
||||
|
||||
variable "image" {
|
||||
default = "fleet:v4.43.1"
|
||||
default = "fleet:v4.43.2"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -206,7 +206,7 @@ resource "random_uuid" "jitprovisioner" {
|
|||
|
||||
# Use the local to make the trigger work.
|
||||
locals {
|
||||
fleet_tag = "v4.43.1"
|
||||
fleet_tag = "v4.43.2"
|
||||
}
|
||||
|
||||
resource "null_resource" "standard-query-library" {
|
||||
|
|
|
|||
|
|
@ -165,7 +165,7 @@ resource "helm_release" "main" {
|
|||
|
||||
set {
|
||||
name = "imageTag"
|
||||
value = "v4.43.1"
|
||||
value = "v4.43.2"
|
||||
}
|
||||
|
||||
set {
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ variable "fleet_config" {
|
|||
type = object({
|
||||
mem = optional(number, 4096)
|
||||
cpu = optional(number, 512)
|
||||
image = optional(string, "fleetdm/fleet:v4.43.1")
|
||||
image = optional(string, "fleetdm/fleet:v4.43.2")
|
||||
family = optional(string, "fleet")
|
||||
sidecars = optional(list(any), [])
|
||||
depends_on = optional(list(any), [])
|
||||
|
|
|
|||
|
|
@ -74,7 +74,7 @@ variable "fleet_config" {
|
|||
type = object({
|
||||
mem = optional(number, 4096)
|
||||
cpu = optional(number, 512)
|
||||
image = optional(string, "fleetdm/fleet:v4.43.1")
|
||||
image = optional(string, "fleetdm/fleet:v4.43.2")
|
||||
family = optional(string, "fleet")
|
||||
sidecars = optional(list(any), [])
|
||||
depends_on = optional(list(any), [])
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ provider "aws" {
|
|||
}
|
||||
|
||||
locals {
|
||||
fleet_image = "fleetdm/fleet:v4.43.1"
|
||||
fleet_image = "fleetdm/fleet:v4.43.2"
|
||||
domain_name = "example.com"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -165,7 +165,7 @@ variable "fleet_config" {
|
|||
type = object({
|
||||
mem = optional(number, 4096)
|
||||
cpu = optional(number, 512)
|
||||
image = optional(string, "fleetdm/fleet:v4.43.1")
|
||||
image = optional(string, "fleetdm/fleet:v4.43.2")
|
||||
family = optional(string, "fleet")
|
||||
sidecars = optional(list(any), [])
|
||||
depends_on = optional(list(any), [])
|
||||
|
|
|
|||
|
|
@ -215,7 +215,7 @@ variable "fleet_config" {
|
|||
type = object({
|
||||
mem = optional(number, 4096)
|
||||
cpu = optional(number, 512)
|
||||
image = optional(string, "fleetdm/fleet:v4.43.1")
|
||||
image = optional(string, "fleetdm/fleet:v4.43.2")
|
||||
family = optional(string, "fleet")
|
||||
sidecars = optional(list(any), [])
|
||||
depends_on = optional(list(any), [])
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "fleetctl",
|
||||
"version": "v4.43.1",
|
||||
"version": "v4.43.2",
|
||||
"description": "Installer for the fleetctl CLI tool",
|
||||
"bin": {
|
||||
"fleetctl": "./run.js"
|
||||
|
|
|
|||
Loading…
Reference in a new issue