diff --git a/CHANGELOG.md b/CHANGELOG.md index 5aac3972c05fc..e53de3cac2a8c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,31 @@ # Changelog +## 8.3.5 + +This release of Teleport contains multiple features, improvements and fixes. + +* Added `HTTP_PROXY` support to tsh. [#10209](https://github.com/gravitational/teleport/pull/10209) +* Added support for per-user `tsh` configuration preferences. [#10336](https://github.com/gravitational/teleport/pull/10336) +* Added automatic node joining wizard to OSS. [#10288](https://github.com/gravitational/teleport/pull/10288) +* Improved Desktop Access performance by fixing memory leaks and bitmap optimizations. [#10915](https://github.com/gravitational/teleport/pull/10915) +* Improved Desktop Access to support proxying to different desktops. [#10101](https://github.com/gravitational/teleport/pull/10101) +* Improved Application Access HA behavior when accessing applications within a leaf cluster. [#10734](https://github.com/gravitational/teleport/pull/10734) +* Improved Database Access log spam and automatic discovery. [#11020](https://github.com/gravitational/teleport/pull/11020) [#10699](https://github.com/gravitational/teleport/pull/10699) +* Improved error messages when host is missing in `tctl auth sign`. [#10588](https://github.com/gravitational/teleport/pull/10588) +* Improved X11 forwarding support on macOS. [#10719](https://github.com/gravitational/teleport/pull/10719) +* Fixed multiple issues with CA rotation, graceful restart, and stability. [#10706](https://github.com/gravitational/teleport/pull/10706) [#11074](https://github.com/gravitational/teleport/pull/11074) [#11283](https://github.com/gravitational/teleport/pull/11283) +* Fixed an issue where users could create system roles. [#8924](https://github.com/gravitational/teleport/pull/8924) +* Fixed an issue where an invalid event could lead to the Audit Log being inaccessible to view. [#10665](https://github.com/gravitational/teleport/pull/10665) +* Fixed an issue with lease contention and concurrent session control. [#10666](https://github.com/gravitational/teleport/pull/10666) +* Fixed an issue where Teleport could panic during a session recording. [#10792](https://github.com/gravitational/teleport/pull/10792) +* Fixed an issue where `tctl auth sign` was creating a `kubeconfig` file incompatible with Teleport Cloud. [#10844](https://github.com/gravitational/teleport/pull/10844) +* Fixed an issue where Teleport would not regenerate server identity for Kubernetes Access. [#10904](https://github.com/gravitational/teleport/pull/10904) +* Fixed an issue where `tsh` would not deduplicate Access Request IDs. [#9453](https://github.com/gravitational/teleport/pull/9453) +* Fixed an issue where `tsh` would not respect `TELEPORT_HOME` [#11087](https://github.com/gravitational/teleport/pull/11087) +* Fixed an issue where `tsh aws ecr` could return `Internal Server`. [#10475](https://github.com/gravitational/teleport/pull/10475) +* Fixed an memory leak in the Teleport watcher system. [#10871](https://github.com/gravitational/teleport/pull/10871) +* Fixed an issue where certain resources could not be deleted. [#11124](https://github.com/gravitational/teleport/pull/11124) + ## 8.3.4 This release of Teleport contains multiple improvements and fixes. diff --git a/Makefile b/Makefile index f32c97a8830d5..da7df01d4a5ae 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=8.3.4 +VERSION=8.3.5 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 be494e76eb9dd..b9ceae5d517dc 100644 --- a/api/version.go +++ b/api/version.go @@ -3,7 +3,7 @@ package api const ( - Version = "8.3.4" + Version = "8.3.5" ) // 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 af2248c6626e2..9e51126a0303d 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: "8.3.4" -appVersion: "8.3.4" +version: "8.3.5" +appVersion: "8.3.5" 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 374177a09fb4b..1bfda9076c1c5 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: "8.3.4" -appVersion: "8.3.4" +version: "8.3.5" +appVersion: "8.3.5" 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 a21e94d48ec32..3b250df38a019 100644 --- a/version.go +++ b/version.go @@ -3,7 +3,7 @@ package teleport const ( - Version = "8.3.4" + Version = "8.3.5" ) // Gitref variable is automatically set to the output of git-describe