From 64145c5633525eb245552eed8da9081d26a8d8ce Mon Sep 17 00:00:00 2001 From: Zach Wasserman Date: Sat, 14 Aug 2021 09:26:47 -0700 Subject: [PATCH] Prepare for 4.2.1 release (#1675) --- CHANGELOG.md | 12 ++++++++++++ changes/1610-update-team-name-after-edit | 1 - changes/add-mariadb-support | 1 - changes/fix-redis-locking-receive | 1 - changes/issue-1531-thread-safe-redis | 1 - changes/issue-1644-refetch-host-in-team | 1 - charts/fleet/Chart.yaml | 4 ++-- charts/fleet/values.yaml | 2 +- tools/fleetctl-npm/package.json | 2 +- 9 files changed, 16 insertions(+), 9 deletions(-) delete mode 100644 changes/1610-update-team-name-after-edit delete mode 100644 changes/add-mariadb-support delete mode 100644 changes/fix-redis-locking-receive delete mode 100644 changes/issue-1531-thread-safe-redis delete mode 100644 changes/issue-1644-refetch-host-in-team diff --git a/CHANGELOG.md b/CHANGELOG.md index f4f799dcbd..e10026c400 100644 --- a/CHANGELOG.md +++ b/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. diff --git a/changes/1610-update-team-name-after-edit b/changes/1610-update-team-name-after-edit deleted file mode 100644 index 9720394891..0000000000 --- a/changes/1610-update-team-name-after-edit +++ /dev/null @@ -1 +0,0 @@ -Fix: Display updated team name after edit \ No newline at end of file diff --git a/changes/add-mariadb-support b/changes/add-mariadb-support deleted file mode 100644 index 58444aea57..0000000000 --- a/changes/add-mariadb-support +++ /dev/null @@ -1 +0,0 @@ -* Add support for MariaDB 10.5.4 and later. diff --git a/changes/fix-redis-locking-receive b/changes/fix-redis-locking-receive deleted file mode 100644 index 8bf0149259..0000000000 --- a/changes/fix-redis-locking-receive +++ /dev/null @@ -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. diff --git a/changes/issue-1531-thread-safe-redis b/changes/issue-1531-thread-safe-redis deleted file mode 100644 index 974ce7b0a3..0000000000 --- a/changes/issue-1531-thread-safe-redis +++ /dev/null @@ -1 +0,0 @@ -* Reads live query results from redis in a thread safe manner. diff --git a/changes/issue-1644-refetch-host-in-team b/changes/issue-1644-refetch-host-in-team deleted file mode 100644 index c436150c44..0000000000 --- a/changes/issue-1644-refetch-host-in-team +++ /dev/null @@ -1 +0,0 @@ -* Allow observers and maintainers to refetch a host in a team they belong to. diff --git a/charts/fleet/Chart.yaml b/charts/fleet/Chart.yaml index 808d930942..801558ff1a 100644 --- a/charts/fleet/Chart.yaml +++ b/charts/fleet/Chart.yaml @@ -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 diff --git a/charts/fleet/values.yaml b/charts/fleet/values.yaml index a23dc2ae48..0f95c48153 100644 --- a/charts/fleet/values.yaml +++ b/charts/fleet/values.yaml @@ -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 diff --git a/tools/fleetctl-npm/package.json b/tools/fleetctl-npm/package.json index c49d0fa048..4f776c9b94 100644 --- a/tools/fleetctl-npm/package.json +++ b/tools/fleetctl-npm/package.json @@ -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"