Prepare for 4.2.1 release (#1675)

This commit is contained in:
Zach Wasserman 2021-08-14 09:26:47 -07:00 committed by GitHub
parent 450e15b346
commit 64145c5633
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 16 additions and 9 deletions

View file

@ -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.

View file

@ -1 +0,0 @@
Fix: Display updated team name after edit

View file

@ -1 +0,0 @@
* Add support for MariaDB 10.5.4 and later.

View file

@ -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.

View file

@ -1 +0,0 @@
* Reads live query results from redis in a thread safe manner.

View file

@ -1 +0,0 @@
* Allow observers and maintainers to refetch a host in a team they belong to.

View file

@ -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

View file

@ -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

View file

@ -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"