mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
Adding changes for Fleet v4.81.3 (#41870)
This commit is contained in:
parent
64585f8bdd
commit
fdf4977fac
8 changed files with 13 additions and 9 deletions
|
|
@ -1,3 +1,10 @@
|
|||
## Fleet 4.81.3 (Mar 20, 2026)
|
||||
|
||||
### Bug fixes
|
||||
|
||||
- Added configurable body size limits for the `/api/osquery/log` and `/api/osquery/distributed/write` endpoints.
|
||||
- Fixed false positive `PayloadTooLargeError` errors.
|
||||
|
||||
## Fleet 4.81.2 (Mar 06, 2026)
|
||||
|
||||
### Bug fixes
|
||||
|
|
|
|||
|
|
@ -1 +0,0 @@
|
|||
* Updated the DEP syncer to properly reassign a profile when ABM unilaterally removes it
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
* Added configurable body size limits for the `/api/osquery/log` and `/api/osquery/distributed/write` endpoints.
|
||||
* Fixed false positive `PayloadTooLargeError` errors.
|
||||
|
|
@ -4,11 +4,11 @@ name: fleet
|
|||
keywords:
|
||||
- fleet
|
||||
- osquery
|
||||
version: v6.8.3
|
||||
version: v6.8.4
|
||||
home: https://github.com/fleetdm/fleet
|
||||
sources:
|
||||
- https://github.com/fleetdm/fleet.git
|
||||
appVersion: v4.81.2
|
||||
appVersion: v4.81.3
|
||||
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.81.2 # Version of Fleet to deploy
|
||||
imageTag: v4.81.3 # 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.81.2"
|
||||
default = "fleetdm/fleet:v4.81.3"
|
||||
}
|
||||
|
||||
variable "software_inventory" {
|
||||
|
|
|
|||
|
|
@ -68,7 +68,7 @@ variable "redis_mem" {
|
|||
}
|
||||
|
||||
variable "image" {
|
||||
default = "fleetdm/fleet:v4.81.2"
|
||||
default = "fleetdm/fleet:v4.81.3"
|
||||
|
||||
variable "software_installers_bucket_name" {
|
||||
default = "fleet-software-installers"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "fleetctl",
|
||||
"version": "v4.81.2",
|
||||
"version": "v4.81.3",
|
||||
"description": "Installer for the fleetctl CLI tool",
|
||||
"bin": {
|
||||
"fleetctl": "./run.js"
|
||||
|
|
|
|||
Loading…
Reference in a new issue