From b0129ff5e7754a462028467eb2a2534a24c5f627 Mon Sep 17 00:00:00 2001 From: Roman Tkachenko Date: Fri, 22 Apr 2022 17:01:30 -0700 Subject: [PATCH] Release 9.1.1 (#12192) --- CHANGELOG.md | 10 ++++++++++ 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, 17 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ee35369ecbe1..1f653bce61a5d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## 9.1.1 + +This release of Teleport contains multiple bug fixes and improvements. + +* Fixed regression issue where reverse tunnel connections inadvertently started respecting `HTTP_PROXY`. [#12035](https://github.com/gravitational/teleport/pull/12035) +* Fixed potential deadlock in SSH server. [#12122](https://github.com/gravitational/teleport/pull/12122) +* Fixed issue with Kubernetes service not reporting its readiness. [#12152](https://github.com/gravitational/teleport/pull/12152) +* Fixed issue with JumpCloud identity provider. [#11936](https://github.com/gravitational/teleport/pull/11936) +* Fixed issue with deleting many records from Firestore backend. [#12177](https://github.com/gravitational/teleport/pull/12177) + ## 9.1.0 Teleport 9.1 is a minor release that brings several new features, security and bug fixes. diff --git a/Makefile b/Makefile index a50986b699694..5c491310c28f6 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.1.0 +VERSION=9.1.1 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 b2577256349dd..d121cf1fdecd2 100644 --- a/api/version.go +++ b/api/version.go @@ -3,7 +3,7 @@ package api const ( - Version = "9.1.0" + Version = "9.1.1" ) // 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 bd4459986354c..7dd3b95a47750 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.1.0" -appVersion: "9.1.0" +version: "9.1.1" +appVersion: "9.1.1" 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 bc4ffd083497b..3619943056a81 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.1.0" -appVersion: "9.1.0" +version: "9.1.1" +appVersion: "9.1.1" 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 23897533fec67..75a86e1bae2ed 100644 --- a/version.go +++ b/version.go @@ -3,7 +3,7 @@ package teleport const ( - Version = "9.1.0" + Version = "9.1.1" ) // Gitref variable is automatically set to the output of git-describe