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:
George Karr 2026-04-13 12:17:18 -05:00 committed by GitHub
parent e1dac524a8
commit b4a3e975f5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 16 additions and 6 deletions

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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" {

View file

@ -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"

View file

@ -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"