mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
Update changelog for Fleet 4.2.3 (#1811)
This commit is contained in:
parent
4eec4ebbbe
commit
801f44da86
11 changed files with 18 additions and 14 deletions
14
CHANGELOG.md
14
CHANGELOG.md
|
|
@ -1,3 +1,17 @@
|
|||
## Fleet 4.2.3 (Aug 25, 2021)
|
||||
|
||||
* Add ability to troubleshoot connection issues with the `fleetctl debug connection` command.
|
||||
|
||||
* Improve compatibility with MySQL variants (MariaDB, Aurora, etc.) by removing usage of JSON_ARRAYAGG.
|
||||
|
||||
* Fix bug in which live queries would stop returning results if more than 5 seconds goes by without a result. This bug was introduced in 4.2.1.
|
||||
|
||||
* Eliminate double-logging of IP addresses in osquery endpoints.
|
||||
|
||||
* Update host details after transferring a host on the details page.
|
||||
|
||||
* Log errors in osquery endpoints to improve debugging.
|
||||
|
||||
## Fleet 4.2.2 (Aug 18, 2021)
|
||||
|
||||
* Add a new built in label "All Linux" to target all hosts that run any linux flavor.
|
||||
|
|
|
|||
|
|
@ -1,4 +0,0 @@
|
|||
Add API calls to fetch latest host details
|
||||
Use local state to reduce dependency on Redux and need for page refresh after host is transferred to new team
|
||||
Add host details flows to Cypress tests
|
||||
Remove outdated Jest tests
|
||||
|
|
@ -1 +0,0 @@
|
|||
* Fix bug in which live queries would stop returning results if more than 5 seconds goes by without a result. This bug was introduced in 4.2.1.
|
||||
|
|
@ -1 +0,0 @@
|
|||
* Add ability to troubleshoot connection issues with the `fleetctl debug connection` command.
|
||||
|
|
@ -1 +0,0 @@
|
|||
* Make sure to not log ip and fwd ip twice with osquery endpoints.
|
||||
|
|
@ -1 +0,0 @@
|
|||
* Log errors when osquery endpoints have issues.
|
||||
|
|
@ -1 +0,0 @@
|
|||
Minor change: Remove "You have no more recorded activity" message for initial empty state (i.e. on first setup)
|
||||
|
|
@ -1 +0,0 @@
|
|||
* Remove usage of JSON_ARRAYAGG since it's not supported in many different flavors of mysql 5.7.
|
||||
|
|
@ -4,8 +4,8 @@ name: fleet
|
|||
keywords:
|
||||
- fleet
|
||||
- osquery
|
||||
version: v4.2.2
|
||||
version: v4.2.3
|
||||
home: https://github.com/fleetdm/fleet
|
||||
sources:
|
||||
- https://github.com/fleetdm/fleet.git
|
||||
appVersion: v4.2.2
|
||||
appVersion: v4.2.3
|
||||
|
|
|
|||
|
|
@ -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.2.2 # Version of Fleet to deploy
|
||||
imageTag: v4.2.3 # 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.2.2",
|
||||
"version": "v4.2.3",
|
||||
"description": "Installer for the fleetctl CLI tool",
|
||||
"bin": {
|
||||
"fleetctl": "./run.js"
|
||||
|
|
|
|||
Loading…
Reference in a new issue