-
Notifications
You must be signed in to change notification settings - Fork 836
Adding changes for Fleet v4.83.1 #43357
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -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 | ||
|
|
@@ -230,20 +239,13 @@ | |
| - Fixed stale software titles list after deleting a software installer. | ||
| - Fixed query results cleanup cron failing with "too many placeholders" error by filtering to only saved queries and batching the SQL IN clause. | ||
|
|
||
| ## 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) | ||
|
Comment on lines
239
to
249
|
||
|
|
||
| ### Bug fixes | ||
|
|
||
| - Fixed a bug where macOS systems previous enrolled in fleet wouldn't always go through setup experience after a wipe. | ||
| - Fixed issue where policy automation retries were potentially reading stale data from replica database. | ||
| - Updated the DEP syncer to properly reassign a profile when ABM unilaterally removes it. | ||
| - Updated the DEP syncer to properly reassign a profile when ABM unilaterally removes it | ||
georgekarrv marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| ## Fleet 4.81.1 (Mar 2, 2026) | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -68,7 +68,7 @@ variable "redis_mem" { | |||||||||||||||||||||
| } | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| variable "image" { | ||||||||||||||||||||||
| default = "fleetdm/fleet:v4.83.0" | ||||||||||||||||||||||
| default = "fleetdm/fleet:v4.83.1" | ||||||||||||||||||||||
|
||||||||||||||||||||||
| default = "fleetdm/fleet:v4.83.1" | |
| default = "fleetdm/fleet:v4.83.1" | |
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing closing brace in variable "image" block breaks Terraform parsing.
Line 70 opens variable "image" but there is no matching } before Line 73 starts the next variable block. This is a syntax blocker.
🐛 Proposed fix
variable "image" {
default = "fleetdm/fleet:v4.83.1"
+}
variable "software_installers_bucket_name" {
default = "fleet-software-installers"
}📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
| variable "image" { | |
| default = "fleetdm/fleet:v4.83.0" | |
| default = "fleetdm/fleet:v4.83.1" | |
| variable "software_installers_bucket_name" { | |
| variable "image" { | |
| default = "fleetdm/fleet:v4.83.1" | |
| } | |
| variable "software_installers_bucket_name" { |
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@infrastructure/dogfood/terraform/gcp/variables.tf` around lines 70 - 73, The
Terraform file has a missing closing brace for the variable "image" block which
breaks parsing; add the closing "}" to terminate the variable "image" block
before the next variable "software_installers_bucket_name" declaration so that
the "variable \"image\"" block is properly closed and Terraform can parse the
subsequent "variable \"software_installers_bucket_name\"" block.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@georgekarrv Why are they both flagging this? I know you're not changing that line so it must be fine, but I wonder if the indentation is throwing them off?
Uh oh!
There was an error while loading. Please reload this page.