mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
Prepare for 4.4.0 release (#2423)
This commit is contained in:
parent
a3b1978680
commit
e61dc765fd
27 changed files with 34 additions and 29 deletions
30
CHANGELOG.md
30
CHANGELOG.md
|
|
@ -1,3 +1,33 @@
|
|||
## Fleet 4.4.0 (Oct 6, 2021)
|
||||
|
||||
* Fleet Premium: Teams Schedules show inherited queries from All teams (global) Schedule.
|
||||
|
||||
* Fleet Premium: Team Maintainers can modify and delete queries, and modify the Team Schedule.
|
||||
|
||||
* Fleet Premium: Team Maintainers can delete hosts from their teams.
|
||||
|
||||
* `fleetctl get hosts` now shows host additional queries if there are any.
|
||||
|
||||
* Update default homepage to new dashboard.
|
||||
|
||||
* Add ability to bulk delete hosts based on manual selection and applied filters.
|
||||
|
||||
* Display macOS bundle identifiers on software table if available.
|
||||
|
||||
* Fixed scroll position when navigating to different pages.
|
||||
|
||||
* Fleet Premium: When transferring a host from team to team, clear the Policy results for that host.
|
||||
|
||||
* Improve stability of host vitals (fix cases of dropping users table, disk space).
|
||||
|
||||
* Improve performance and reliability of Policy database migrations.
|
||||
|
||||
* Provide a more clear error when a user tries to delete a query that is set in a Policy.
|
||||
|
||||
* Fix query editor Delete key and horizontal scroll issues.
|
||||
|
||||
* Cleaner buttons and icons on Manage Hosts Page.
|
||||
|
||||
## Fleet 4.3.2 (Sept 29, 2021)
|
||||
|
||||
* Improve database performance by reducing the amount of MySQL database queries when a host checks in.
|
||||
|
|
|
|||
|
|
@ -1,2 +0,0 @@
|
|||
- Added MDM data to host details
|
||||
- Added Munki data to host details
|
||||
|
|
@ -1 +0,0 @@
|
|||
* Improve performance and reliability of Policy database migrations.
|
||||
|
|
@ -1 +0,0 @@
|
|||
* fleetctl get hosts now shows host additional queries if there are any.
|
||||
|
|
@ -1 +0,0 @@
|
|||
* Team maintainers can now modify their team's schedules.
|
||||
|
|
@ -1 +0,0 @@
|
|||
* When transferring a host from team to team, clear the policy results for that host.
|
||||
|
|
@ -1 +0,0 @@
|
|||
* Make sure to not overwrite host data when only updating part of the host (labels or policies).
|
||||
|
|
@ -1 +0,0 @@
|
|||
* Update default homepage to new dashboard.
|
||||
|
|
@ -1 +0,0 @@
|
|||
* Add bundle identifier to software if available.
|
||||
|
|
@ -1 +0,0 @@
|
|||
* Surface bundle identifier information for software inventory
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
* Add a mechanism to bulk delete hosts based on different criteria.
|
||||
* Ability to bulk delete hosts in the UI.
|
||||
|
|
@ -1 +0,0 @@
|
|||
* Update UI components for new team policies feature
|
||||
|
|
@ -1 +0,0 @@
|
|||
* Fleet premium teams schedules surfaces inherited queries from All teams (global) schedule
|
||||
|
|
@ -1 +0,0 @@
|
|||
- Team maintainer now has permissions to modify their team's schedule
|
||||
|
|
@ -1 +0,0 @@
|
|||
* Better error handling when a user tries to delete a query that is set in a policy
|
||||
|
|
@ -1 +0,0 @@
|
|||
* Update UI for team maintainer query CRUD operations
|
||||
|
|
@ -1 +0,0 @@
|
|||
* Team maintainers can edit and delete queries they created.
|
||||
|
|
@ -1 +0,0 @@
|
|||
* Cleaner buttons and icons on Manage Host Page
|
||||
|
|
@ -1 +0,0 @@
|
|||
* Change display value for `observer_can_run` to "Yes/No" on manage queries page
|
||||
|
|
@ -1 +0,0 @@
|
|||
- Fixed scroll position when navigating to different pages
|
||||
|
|
@ -1 +0,0 @@
|
|||
- Fixed query editor horizontal scrolling issue on page reload
|
||||
|
|
@ -1 +0,0 @@
|
|||
* Team maintainers can delete hosts from their teams.
|
||||
|
|
@ -1 +0,0 @@
|
|||
* Load all host values from the database to prevent overwriting them with empty values in certain cases.
|
||||
|
|
@ -1 +0,0 @@
|
|||
- Fixed cursor position after using the backspace key
|
||||
|
|
@ -4,8 +4,8 @@ name: fleet
|
|||
keywords:
|
||||
- fleet
|
||||
- osquery
|
||||
version: v4.3.2
|
||||
version: v4.4.0
|
||||
home: https://github.com/fleetdm/fleet
|
||||
sources:
|
||||
- https://github.com/fleetdm/fleet.git
|
||||
appVersion: v4.3.2
|
||||
appVersion: v4.4.0
|
||||
|
|
|
|||
|
|
@ -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.3.2 # Version of Fleet to deploy
|
||||
imageTag: v4.4.0 # Version of Fleet to deploy
|
||||
createIngress: true # Whether or not to automatically create an Ingress
|
||||
ingressAnnotations: {} # Additional annotation to add to the Ingress
|
||||
podAnnotations: {} # Additional annotations to add to the Fleet pod
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "fleetctl",
|
||||
"version": "v4.3.2",
|
||||
"version": "v4.4.0",
|
||||
"description": "Installer for the fleetctl CLI tool",
|
||||
"bin": {
|
||||
"fleetctl": "./run.js"
|
||||
|
|
|
|||
Loading…
Reference in a new issue