mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
Prepare for 4.2.1 release (#1675)
This commit is contained in:
parent
450e15b346
commit
64145c5633
9 changed files with 16 additions and 9 deletions
12
CHANGELOG.md
12
CHANGELOG.md
|
|
@ -1,3 +1,15 @@
|
|||
## Fleet 4.2.1 (Aug 14, 2021)
|
||||
|
||||
* Fix a database issue with MariaDB 10.5.4.
|
||||
|
||||
* Display updated team name after edit.
|
||||
|
||||
* When a connection from a live query websocket is closed, Fleet now timeouts the receive and handles the different cases correctly to not hold the connection to Redis.
|
||||
|
||||
* Read live query results from Redis in a thread safe manner.
|
||||
|
||||
* Allow observers and maintainers to refetch a host in a team they belong to.
|
||||
|
||||
## Fleet 4.2.0 (Aug 11, 2021)
|
||||
|
||||
* Add ability to simultaneously filter hosts by status (`online`, `offline`, `new`, `mia`) and by label on the **Hosts** page.
|
||||
|
|
|
|||
|
|
@ -1 +0,0 @@
|
|||
Fix: Display updated team name after edit
|
||||
|
|
@ -1 +0,0 @@
|
|||
* Add support for MariaDB 10.5.4 and later.
|
||||
|
|
@ -1 +0,0 @@
|
|||
* When a connection from a live query websocket is closed, Fleet now timeouts the receive and handles the different cases correctly to not hold the connection to Redis.
|
||||
|
|
@ -1 +0,0 @@
|
|||
* Reads live query results from redis in a thread safe manner.
|
||||
|
|
@ -1 +0,0 @@
|
|||
* Allow observers and maintainers to refetch a host in a team they belong to.
|
||||
|
|
@ -4,8 +4,8 @@ name: fleet
|
|||
keywords:
|
||||
- fleet
|
||||
- osquery
|
||||
version: v4.2.0
|
||||
version: v4.2.1
|
||||
home: https://github.com/fleetdm/fleet
|
||||
sources:
|
||||
- https://github.com/fleetdm/fleet.git
|
||||
appVersion: v4.2.0
|
||||
appVersion: v4.2.1
|
||||
|
|
|
|||
|
|
@ -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.0 # Version of Fleet to deploy
|
||||
imageTag: v4.2.1 # 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.0-2",
|
||||
"version": "v4.2.1",
|
||||
"description": "Installer for the fleetctl CLI tool",
|
||||
"bin": {
|
||||
"fleetctl": "./run.js"
|
||||
|
|
|
|||
Loading…
Reference in a new issue