From c1ff5602d842e3ebe57655260de8ce27c95243e0 Mon Sep 17 00:00:00 2001 From: Ben Date: Tue, 5 Sep 2023 21:28:09 +0000 Subject: [PATCH 1/3] docs: add v2.1.6 changelog --- docs/changelogs/README.md | 6 ++-- docs/changelogs/v2.1.5.md | 58 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 61 insertions(+), 3 deletions(-) create mode 100644 docs/changelogs/v2.1.5.md diff --git a/docs/changelogs/README.md b/docs/changelogs/README.md index 7e2493d7a3c3e..e5b8c7f9decc0 100644 --- a/docs/changelogs/README.md +++ b/docs/changelogs/README.md @@ -12,8 +12,8 @@ Run this command to generate release notes: export CODER_IGNORE_MISSING_COMMIT_METADATA=1 export BRANCH=main ./scripts/release/generate_release_notes.sh \ - --old-version=v2.1.4 \ - --new-version=v2.1.5 \ + --old-version=v2.1.5 \ + --new-version=v2.1.6 \ --ref=$(git rev-parse --short "${ref:-origin/$BRANCH}") \ - > ./docs/changelogs/v2.1.5.md + > ./docs/changelogs/v2.1.6.md ``` diff --git a/docs/changelogs/v2.1.5.md b/docs/changelogs/v2.1.5.md new file mode 100644 index 0000000000000..651bf84dbcf18 --- /dev/null +++ b/docs/changelogs/v2.1.5.md @@ -0,0 +1,58 @@ +## Changelog + +### Important changes + +- Removed `coder reset-password` from slim binary (#9520) (@mafredri) +- VS Code Insiders is no longer a default [display app](https://registry.terraform.io/providers/coder/coder/latest/docs/resources/agent#nested-schema-for-display_apps). Keep reading for more details. + +### Features + +- You can install Coder with [Homebrew](https://formulae.brew.sh/formula/coder#default) (#9414) (@aslilac). Our [install script](https://coder.com/docs/v2/latest/install/install.sh) will also use Homebrew, if present on your machine. +- You can show/hide specific [display apps](https://registry.terraform.io/providers/coder/coder/latest/docs/resources/agent#nested-schema-for-display_apps) in your template, such as VS Code (Insiders), web terminal, SSH, etc. (#9100) (@sreya) + To add VS Code insiders into your template, you can set: + ```hcl + display_apps { + vscode_insiders = true + } + ``` + ![Add insiders](https://user-images.githubusercontent.com/4856196/263852602-94a5cb56-b7c3-48cb-928a-3b5e0f4e964b.png) +- eded7a4b8 feat: create a workspace from any template version (#9471) (@aslilac) +- 79cd6047d feat: add boringcrypto builds for linux (#9528) (@spikecurtis) +- 16ef97a06 feat(cli): add DataDog Go tracer (#9411) (@ammario) +- 796a9754a feat(enterprise/audit): add user object to slog exporter (#9456) (@coadler) +- 2399063a5 feat(site): make workspace batch deletion GA (#9313) (@BrunoQuaresma) + +### Bug fixes + +- Expired OIDC tokens will now redirect to login page (#9442) (@Emyrk) +- Avoid redirect loop on workspace proxies (#9389) (@deansheather) +- Stop dropping error log on context canceled after heartbeat (#9427) (@spikecurtis) +- Fix null pointer on external provisioner daemons with daily_cost (#9401) (@spikecurtis) +- Hide OIDC and Github auth settings when they are disabled (#9447) (@aslilac) +- Generate username with uuid to prevent collision (#9496) (@kylecarbs) +- Make 'NoRefresh' honor unlimited tokens in gitauth (#9472) (@Emyrk) +- Dotfiles: add an exception for `.gitconfig` (#9515) (@matifali) +- Close batcher to force flush before asserting agent stats (#9465) (@johnstcn) +- Ensure audit log json fields are formatted correctly (#9397) (@coadler) +- Correctly set default tags for PSK auth (#9436) (@johnstcn) +- Remove reference to non-existent local variable (#9448) (@denbeigh2000) +- Remove checkbox from ws table loader (#9441) (@BrunoQuaresma) +- Fix workspace parameters update when having immutable parameters (#9500) (@BrunoQuaresma) +- Re-add keepalives to tailnet (#9410) (@coadler) + +### Documentation + +- Add [JetBrains Gateway Offline Mode](https://coder.com/docs/v2/latest/ides/gateway#jetbrains-gateway-in-an-offline-environment) config steps (#9388) (@ericpaulsen) +- Describe [dynamic options and locals for parameters](https://github.com/coder/coder/tree/main/examples/parameters-dynamic-options) (#9429) (@mtojek) +- Add macOS installation page (#9443) (@aslilac) +- Explain why coder port-forward is more performant than dashboard and sshd (#9494) (@sharkymark) +- Add `CODER_TLS_ADDRESS` to documentation for TLS setup (#9503) (@RaineAllDay) + +## Container image + +- `docker pull ghcr.io/coder/coder:v2.1.5` + +## Install/upgrade + +Refer to our docs to [install](https://coder.com/docs/v2/latest/install) or [upgrade](https://coder.com/docs/v2/latest/admin/upgrade) Coder, or use a release asset below. + From 450d80b28fa3d2db2eb4cf28d7c1d4964f35ffa4 Mon Sep 17 00:00:00 2001 From: Ben Date: Tue, 5 Sep 2023 21:37:01 +0000 Subject: [PATCH 2/3] fmt --- docs/changelogs/v2.1.5.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/docs/changelogs/v2.1.5.md b/docs/changelogs/v2.1.5.md index 651bf84dbcf18..7f253fbe1edf6 100644 --- a/docs/changelogs/v2.1.5.md +++ b/docs/changelogs/v2.1.5.md @@ -16,11 +16,10 @@ } ``` ![Add insiders](https://user-images.githubusercontent.com/4856196/263852602-94a5cb56-b7c3-48cb-928a-3b5e0f4e964b.png) -- eded7a4b8 feat: create a workspace from any template version (#9471) (@aslilac) -- 79cd6047d feat: add boringcrypto builds for linux (#9528) (@spikecurtis) -- 16ef97a06 feat(cli): add DataDog Go tracer (#9411) (@ammario) -- 796a9754a feat(enterprise/audit): add user object to slog exporter (#9456) (@coadler) -- 2399063a5 feat(site): make workspace batch deletion GA (#9313) (@BrunoQuaresma) +- Create a workspace from any template version (#9471) (@aslilac) +- Add DataDog Go tracer (#9411) (@ammario) +- Add user object to slog exporter (#9456) (@coadler) +- Make workspace batch deletion GA (#9313) (@BrunoQuaresma) ### Bug fixes @@ -55,4 +54,3 @@ ## Install/upgrade Refer to our docs to [install](https://coder.com/docs/v2/latest/install) or [upgrade](https://coder.com/docs/v2/latest/admin/upgrade) Coder, or use a release asset below. - From 918c0bb45a4528c4d3b0081c533c11190531bf42 Mon Sep 17 00:00:00 2001 From: Ben Date: Tue, 5 Sep 2023 21:40:49 +0000 Subject: [PATCH 3/3] fmt --- docs/changelogs/v2.1.5.md | 51 ++++++++++++++++++++++++++------------- 1 file changed, 34 insertions(+), 17 deletions(-) diff --git a/docs/changelogs/v2.1.5.md b/docs/changelogs/v2.1.5.md index 7f253fbe1edf6..088645529897f 100644 --- a/docs/changelogs/v2.1.5.md +++ b/docs/changelogs/v2.1.5.md @@ -3,19 +3,26 @@ ### Important changes - Removed `coder reset-password` from slim binary (#9520) (@mafredri) -- VS Code Insiders is no longer a default [display app](https://registry.terraform.io/providers/coder/coder/latest/docs/resources/agent#nested-schema-for-display_apps). Keep reading for more details. +- VS Code Insiders is no longer a default + [display app](https://registry.terraform.io/providers/coder/coder/latest/docs/resources/agent#nested-schema-for-display_apps). + Keep reading for more details. ### Features -- You can install Coder with [Homebrew](https://formulae.brew.sh/formula/coder#default) (#9414) (@aslilac). Our [install script](https://coder.com/docs/v2/latest/install/install.sh) will also use Homebrew, if present on your machine. -- You can show/hide specific [display apps](https://registry.terraform.io/providers/coder/coder/latest/docs/resources/agent#nested-schema-for-display_apps) in your template, such as VS Code (Insiders), web terminal, SSH, etc. (#9100) (@sreya) - To add VS Code insiders into your template, you can set: - ```hcl - display_apps { - vscode_insiders = true - } - ``` - ![Add insiders](https://user-images.githubusercontent.com/4856196/263852602-94a5cb56-b7c3-48cb-928a-3b5e0f4e964b.png) +- You can install Coder with + [Homebrew](https://formulae.brew.sh/formula/coder#default) (#9414) (@aslilac). + Our [install script](https://coder.com/docs/v2/latest/install/install.sh) will + also use Homebrew, if present on your machine. +- You can show/hide specific + [display apps](https://registry.terraform.io/providers/coder/coder/latest/docs/resources/agent#nested-schema-for-display_apps) + in your template, such as VS Code (Insiders), web terminal, SSH, etc. (#9100) + (@sreya) To add VS Code insiders into your template, you can set: + ```hcl + display_apps { + vscode_insiders = true + } + ``` + ![Add insiders](https://user-images.githubusercontent.com/4856196/263852602-94a5cb56-b7c3-48cb-928a-3b5e0f4e964b.png) - Create a workspace from any template version (#9471) (@aslilac) - Add DataDog Go tracer (#9411) (@ammario) - Add user object to slog exporter (#9456) (@coadler) @@ -25,8 +32,10 @@ - Expired OIDC tokens will now redirect to login page (#9442) (@Emyrk) - Avoid redirect loop on workspace proxies (#9389) (@deansheather) -- Stop dropping error log on context canceled after heartbeat (#9427) (@spikecurtis) -- Fix null pointer on external provisioner daemons with daily_cost (#9401) (@spikecurtis) +- Stop dropping error log on context canceled after heartbeat (#9427) + (@spikecurtis) +- Fix null pointer on external provisioner daemons with daily_cost (#9401) + (@spikecurtis) - Hide OIDC and Github auth settings when they are disabled (#9447) (@aslilac) - Generate username with uuid to prevent collision (#9496) (@kylecarbs) - Make 'NoRefresh' honor unlimited tokens in gitauth (#9472) (@Emyrk) @@ -36,15 +45,21 @@ - Correctly set default tags for PSK auth (#9436) (@johnstcn) - Remove reference to non-existent local variable (#9448) (@denbeigh2000) - Remove checkbox from ws table loader (#9441) (@BrunoQuaresma) -- Fix workspace parameters update when having immutable parameters (#9500) (@BrunoQuaresma) +- Fix workspace parameters update when having immutable parameters (#9500) + (@BrunoQuaresma) - Re-add keepalives to tailnet (#9410) (@coadler) ### Documentation -- Add [JetBrains Gateway Offline Mode](https://coder.com/docs/v2/latest/ides/gateway#jetbrains-gateway-in-an-offline-environment) config steps (#9388) (@ericpaulsen) -- Describe [dynamic options and locals for parameters](https://github.com/coder/coder/tree/main/examples/parameters-dynamic-options) (#9429) (@mtojek) +- Add + [JetBrains Gateway Offline Mode](https://coder.com/docs/v2/latest/ides/gateway#jetbrains-gateway-in-an-offline-environment) + config steps (#9388) (@ericpaulsen) +- Describe + [dynamic options and locals for parameters](https://github.com/coder/coder/tree/main/examples/parameters-dynamic-options) + (#9429) (@mtojek) - Add macOS installation page (#9443) (@aslilac) -- Explain why coder port-forward is more performant than dashboard and sshd (#9494) (@sharkymark) +- Explain why coder port-forward is more performant than dashboard and sshd + (#9494) (@sharkymark) - Add `CODER_TLS_ADDRESS` to documentation for TLS setup (#9503) (@RaineAllDay) ## Container image @@ -53,4 +68,6 @@ ## Install/upgrade -Refer to our docs to [install](https://coder.com/docs/v2/latest/install) or [upgrade](https://coder.com/docs/v2/latest/admin/upgrade) Coder, or use a release asset below. +Refer to our docs to [install](https://coder.com/docs/v2/latest/install) or +[upgrade](https://coder.com/docs/v2/latest/admin/upgrade) Coder, or use a +release asset below.