mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
Adding changes for Fleet v4.83.1 (#43357)
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Chores** * Released patch v4.83.1: updated chart and app metadata, container image tags, Terraform deployment defaults, and npm package version to v4.83.1. * **Documentation** * Updated CLI help/example to reference the v4.83.1 milestone. <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
parent
e1dac524a8
commit
b4a3e975f5
6 changed files with 16 additions and 6 deletions
|
|
@ -1,3 +1,12 @@
|
|||
## Fleet 4.83.1 (Apr 10, 2026)
|
||||
|
||||
### Bug fixes
|
||||
|
||||
- Fixed policy creation failing when type was omitted.
|
||||
- Fixed auth token not persisting when logging in via SSO.
|
||||
- Fleet UI: Fixed infinite page loop pagination bug on software table page happening when viewing a subsequent page and then using the software filter dropdown to filter.
|
||||
- Fleet UI: Fixed software table page number to be bookmarkable
|
||||
|
||||
## Fleet 4.83.0 (Apr 1, 2026)
|
||||
|
||||
### IT Admins
|
||||
|
|
|
|||
|
|
@ -4,11 +4,11 @@ name: fleet
|
|||
keywords:
|
||||
- fleet
|
||||
- osquery
|
||||
version: v6.8.8
|
||||
version: v6.8.9
|
||||
home: https://github.com/fleetdm/fleet
|
||||
sources:
|
||||
- https://github.com/fleetdm/fleet.git
|
||||
appVersion: v4.83.0
|
||||
appVersion: v4.83.1
|
||||
dependencies:
|
||||
- name: mysql
|
||||
condition: mysql.enabled
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ hostName: fleet.localhost
|
|||
replicas: 3 # The number of Fleet instances to deploy
|
||||
revisionHistoryLimit: 10 # Number of old ReplicaSets for Fleet deployment to retain for rollback (set to 0 for unlimited)
|
||||
imageRepository: fleetdm/fleet
|
||||
imageTag: v4.83.0 # Version of Fleet to deploy
|
||||
imageTag: v4.83.1 # Version of Fleet to deploy
|
||||
# imagePullSecrets is optional.
|
||||
# imagePullSecrets:
|
||||
# - name: docker
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ variable "database_name" {
|
|||
|
||||
variable "fleet_image" {
|
||||
description = "the name of the container image to run"
|
||||
default = "fleetdm/fleet:v4.83.0"
|
||||
default = "fleetdm/fleet:v4.83.1"
|
||||
}
|
||||
|
||||
variable "software_inventory" {
|
||||
|
|
|
|||
|
|
@ -68,7 +68,8 @@ variable "redis_mem" {
|
|||
}
|
||||
|
||||
variable "image" {
|
||||
default = "fleetdm/fleet:v4.83.0"
|
||||
default = "fleetdm/fleet:v4.83.1"
|
||||
}
|
||||
|
||||
variable "software_installers_bucket_name" {
|
||||
default = "fleet-software-installers"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "fleetctl",
|
||||
"version": "v4.83.0",
|
||||
"version": "v4.83.1",
|
||||
"description": "Installer for the fleetctl CLI tool",
|
||||
"bin": {
|
||||
"fleetctl": "./run.js"
|
||||
|
|
|
|||
Loading…
Reference in a new issue