From 6233b8fcab43d103e77410a2130cb40f7f5ea258 Mon Sep 17 00:00:00 2001 From: Katie Horne Date: Thu, 10 Mar 2022 13:57:50 -0600 Subject: [PATCH 1/3] chore: add changelog for 1.27.3 --- changelog/1.27.3.md | 24 ++++++++++++++++++++++++ manifest.json | 3 +++ 2 files changed, 27 insertions(+) create mode 100644 changelog/1.27.3.md diff --git a/changelog/1.27.3.md b/changelog/1.27.3.md new file mode 100644 index 000000000..515ccff7d --- /dev/null +++ b/changelog/1.27.3.md @@ -0,0 +1,24 @@ +--- +title: "1.27.3" +description: "Released on 03/10/2022" +--- + +### Breaking changes ❗ + +There are no breaking changes in 1.27.3. + +### Features ✨ + +- infra: relaxed the Kubernetes version requirement. Coder requires v1.21 or + later and does not support earlier versions. If you opt to use v1.19 or v1.20, + you'll see warning messages during the installation process. Coder does not + allow the use of v1.18 or earlier. + +### Bug fixes 🐛 + +- infra: fixed memory leak due to unclosed `time.Ticker`. +- infra: fixed memory/goroutine leak due to `yamux` streams. + +### Security updates 🔐 + +There are no security updates in 1.27.3. diff --git a/manifest.json b/manifest.json index f7ea007ce..55029bdf2 100644 --- a/manifest.json +++ b/manifest.json @@ -554,6 +554,9 @@ { "path": "./changelog/1.27.0.md", "children": [ + { + "path": "./changelog/1.27.3.md" + }, { "path": "./changelog/1.27.2.md" }, From c76817a40e41544fc47138aa8e9aa632b2ada2be Mon Sep 17 00:00:00 2001 From: Katie Horne Date: Fri, 11 Mar 2022 13:13:13 -0600 Subject: [PATCH 2/3] update changelog --- changelog/1.27.3.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/changelog/1.27.3.md b/changelog/1.27.3.md index 515ccff7d..02acd743d 100644 --- a/changelog/1.27.3.md +++ b/changelog/1.27.3.md @@ -13,6 +13,11 @@ There are no breaking changes in 1.27.3. later and does not support earlier versions. If you opt to use v1.19 or v1.20, you'll see warning messages during the installation process. Coder does not allow the use of v1.18 or earlier. +- infra: added debug level logging for Docker in CVM outer container. +- infra: added check for code-server reachability during the workspace build + process. +- infra: updated secrets injection process to be more resilient against short + WebRTC connection failures. ### Bug fixes 🐛 From d9ac0daeba1ccd10e7980a874e4cdb9df64a997a Mon Sep 17 00:00:00 2001 From: Colin Adler Date: Fri, 11 Mar 2022 17:03:55 -0600 Subject: [PATCH 3/3] change wording for memory leak fixes --- changelog/1.27.3.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/changelog/1.27.3.md b/changelog/1.27.3.md index 02acd743d..f1ad1f30b 100644 --- a/changelog/1.27.3.md +++ b/changelog/1.27.3.md @@ -21,8 +21,7 @@ There are no breaking changes in 1.27.3. ### Bug fixes 🐛 -- infra: fixed memory leak due to unclosed `time.Ticker`. -- infra: fixed memory/goroutine leak due to `yamux` streams. +- infra: fixed memory leak when a client connects to a workspace. ### Security updates 🔐