From fa4dabd173d1a254e178567c7c98b165100ff014 Mon Sep 17 00:00:00 2001 From: Roman Tkachenko Date: Thu, 26 May 2022 10:59:40 -0700 Subject: [PATCH] Release 9.3.0 --- CHANGELOG.md | 28 +++++++++++++++++++ Makefile | 2 +- api/version.go | 2 +- examples/chart/teleport-cluster/Chart.yaml | 4 +-- examples/chart/teleport-kube-agent/Chart.yaml | 4 +-- version.go | 2 +- 6 files changed, 35 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d6b32f89b1a3..72dae351705ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,33 @@ # Changelog +## 9.3.0 + +This release of Teleport contains multiple improvements and bug fixes. + +* Fixed issue with `tctl` not taking `TELEPORT_HOME` environment variable into account. [#12738](https://github.com/gravitational/teleport/pull/12738) +* Fixed issue with Redis `AUTH` command not always authenticating the user in database access. [#12754](https://github.com/gravitational/teleport/pull/12754) +* Fixed issue with Teleport not starting with deprecated U2F configuration. [#12826](https://github.com/gravitational/teleport/pull/12826) +* Fixed issue with `tsh db ls` not showing allowed users for leaf clusters. [#12853](https://github.com/gravitational/teleport/pull/12853) +* Fixed issue with `teleport configure` failing when given non-existent data directory. [#12806](https://github.com/gravitational/teleport/pull/12806) +* Fixed issue with `tctl` not outputting debug logs. [#12920](https://github.com/gravitational/teleport/pull/12920) +* Fixed issue with Kubernetes access not working when using default CA pool. [#12874](https://github.com/gravitational/teleport/pull/12874) +* Fixed issue with Machine ID not working in TLS routing mode. [#12990](https://github.com/gravitational/teleport/pull/12990) +* Improved connection performance in large clusters. [#12832](https://github.com/gravitational/teleport/pull/12832) +* Improved memory usage in large clusters. [#12724](https://github.com/gravitational/teleport/pull/12724) + +### Breaking Changes + +Teleport 9.3.0 reduces the minimum GLIBC requirement to 2.18 and enforces more +secure cipher suites for desktop access. + +As a result of these changes, desktop access users with desktops running Windows +Server 2012R2 will need to perform +[additional configuration](https://goteleport.com/docs/desktop-access/getting-started/#step-47-configure-a-certificate-for-rdp-connections) +to force Windows to use commpatible cipher suites. + +Windows desktops running Windows Server 2016 and newer will continue to operate +normally - no additional configuration is required. + ## 9.2.4 This release of Teleport contains multiple improvements and bug fixes. diff --git a/Makefile b/Makefile index 9516cc8b3501b..4412aa2da36d2 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ # Stable releases: "1.0.0" # Pre-releases: "1.0.0-alpha.1", "1.0.0-beta.2", "1.0.0-rc.3" # Master/dev branch: "1.0.0-dev" -VERSION=9.2.4 +VERSION=9.3.0 DOCKER_IMAGE ?= quay.io/gravitational/teleport DOCKER_IMAGE_CI ?= quay.io/gravitational/teleport-ci diff --git a/api/version.go b/api/version.go index 4c0b5172b870c..ded44a3ed5ae5 100644 --- a/api/version.go +++ b/api/version.go @@ -3,7 +3,7 @@ package api const ( - Version = "9.2.4" + Version = "9.3.0" ) // Gitref variable is automatically set to the output of git-describe diff --git a/examples/chart/teleport-cluster/Chart.yaml b/examples/chart/teleport-cluster/Chart.yaml index 4c6c5af9aeccd..14ce1a342693c 100644 --- a/examples/chart/teleport-cluster/Chart.yaml +++ b/examples/chart/teleport-cluster/Chart.yaml @@ -1,7 +1,7 @@ name: teleport-cluster apiVersion: v2 -version: "9.2.4" -appVersion: "9.2.4" +version: "9.3.0" +appVersion: "9.3.0" description: Teleport is a unified access plane for your infrastructure icon: https://goteleport.com/images/logos/logo-teleport-square.svg keywords: diff --git a/examples/chart/teleport-kube-agent/Chart.yaml b/examples/chart/teleport-kube-agent/Chart.yaml index fb47c7ff25ec2..1ddd5e0ad8706 100644 --- a/examples/chart/teleport-kube-agent/Chart.yaml +++ b/examples/chart/teleport-kube-agent/Chart.yaml @@ -1,7 +1,7 @@ name: teleport-kube-agent apiVersion: v2 -version: "9.2.4" -appVersion: "9.2.4" +version: "9.3.0" +appVersion: "9.3.0" description: Teleport provides a secure SSH and Kubernetes remote access solution that doesn't get in the way. icon: https://goteleport.com/images/logos/logo-teleport-square.svg keywords: diff --git a/version.go b/version.go index 5e0512f13d439..2f14430cad74b 100644 --- a/version.go +++ b/version.go @@ -3,7 +3,7 @@ package teleport const ( - Version = "9.2.4" + Version = "9.3.0" ) // Gitref variable is automatically set to the output of git-describe