mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 00:45:19 +00:00
Prepare for 3.10.0 (#568)
This commit is contained in:
parent
fdf9e42a0c
commit
c46cedcfea
14
CHANGELOG.md
14
CHANGELOG.md
@ -1,3 +1,17 @@
|
||||
## Fleet 3.10.0 (Mar 31, 2021)
|
||||
|
||||
* Add `fleetctl` agent auto-updates beta which introduces the ability to self-manage an agent update server. Available for Fleet Basic customers.
|
||||
|
||||
* Add option for Identity Provider-Initiated (IdP-initiated) Single Sign-On (SSO).
|
||||
|
||||
* Improve logging. All errors are logged regardless of log level, some non-errors are logged regardless of log level (agent enrollments, runs of live queries etc.), and all other non-errors are logged on debug level.
|
||||
|
||||
* Improve login resilience by adding rate-limiting to login and password reset attempts and preventing user enumeration.
|
||||
|
||||
* Add Fleet version and Go version in the My Account page of the Fleet UI.
|
||||
|
||||
* Improvements to `fleetctl preview` that ensure the latest version of Fleet is fired up on every run. In addition, the Fleet UI is now accessible without having to click through browser security warning messages.
|
||||
|
||||
## Fleet 3.9.0 (Mar 9, 2021)
|
||||
|
||||
* Add configurable host identifier to help with duplicate host enrollment scenarios. By default, Fleet's behavior does not change (it uses the identifier configured in osquery's `--host_identifier` flag), but for users with overlapping host UUIDs changing `--osquery_host_identifier` to `instance` may be helpful.
|
||||
|
@ -4,8 +4,8 @@ name: fleet
|
||||
keywords:
|
||||
- fleet
|
||||
- osquery
|
||||
version: 3.9.0
|
||||
version: 3.10.0
|
||||
home: https://github.com/fleetdm/fleet
|
||||
sources:
|
||||
- https://github.com/fleetdm/fleet.git
|
||||
appVersion: 3.9.0
|
||||
appVersion: 3.10.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: 3.9.0 # Version of Fleet to deploy
|
||||
imageTag: 3.10.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": "3.9.0",
|
||||
"version": "3.10.0",
|
||||
"description": "Installer for the fleetctl CLI tool",
|
||||
"bin": {
|
||||
"fleetctl": "./run.js"
|
||||
|
Loading…
Reference in New Issue
Block a user