From e035b3e79b38aa33b75885a9c900f461384509f4 Mon Sep 17 00:00:00 2001 From: Atif Ali Date: Tue, 17 Oct 2023 12:53:54 +0000 Subject: [PATCH 01/12] add v2.3.1 changelog --- docs/changelogs/v2.3.1.md | 48 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 docs/changelogs/v2.3.1.md diff --git a/docs/changelogs/v2.3.1.md b/docs/changelogs/v2.3.1.md new file mode 100644 index 0000000000000..5048f97f25738 --- /dev/null +++ b/docs/changelogs/v2.3.1.md @@ -0,0 +1,48 @@ +## Changelog + +### Important Features + +- We added a new builtin icons page. + + Builtin icons page + +- We added icon selector to the emoji picker. + + Icon selector + +Both of these features makes it easier to find and use icons the builtin icons. For more information, see [Icons](https://coder.com/docs/v2/latest/templates/icons). + +### Features + +- Expose user seat limits as Prometheus metrics (#10169) (@mtojek) +- Now you can control autostart days for templates (#10226) (#10263) (@Emyrk) +- Aadd support for sending batched agent metadata (#10223) (#10224) (@mafredri) +- Add extraTemplates to provisioners Helm chart (#10256) (@johnstcn) +- Only show `Running`, `Stopped`, `Failed` and `Pending` status for workspace filtering (#10283) (@BrunoQuaresma) + +### Bug fixes + +- Use UTF-8 encoding with screen (#10190) (@code-asher) +- update create workspace button to recognize template names + display names (#10233) (@Parkreiner) +- display health alert in `DeploymentBannerView` (#10193) (@aslilac) +- send metadata in batches (#10225) (@mafredri) +- make activitybump aware of default template ttl (#10253) (@johnstcn) +- pass through api ctx to provisionerdserver (#10259) (@johnstcn) +- ensure empty string error shows default message (#10196) (@Kira-Pilot) +- display empty component when workspace has no parameters (#10286) (@BrunoQuaresma) +- do not return next page if the current size is lower than the limit (#10287) (@BrunoQuaresma) + +### Documentation + +- Add [Icons](https://coder.com/docs/v2/latest/templates/icons). + in the template documentation (#10230) (@aslilac) + +Compare: [`v2.3.0...v2.3.1`](https://github.com/coder/coder/compare/v2.3.0...v2.3.1) + +## Container image + +- `docker pull ghcr.io/coder/coder:v2.3.1` + +## 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 d78a3baf3c64cb647c50f0e6f4dbb7f6c0d68df5 Mon Sep 17 00:00:00 2001 From: Atif Ali Date: Tue, 17 Oct 2023 12:57:21 +0000 Subject: [PATCH 02/12] fmt --- docs/changelogs/v2.3.1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/changelogs/v2.3.1.md b/docs/changelogs/v2.3.1.md index 5048f97f25738..08da65c340700 100644 --- a/docs/changelogs/v2.3.1.md +++ b/docs/changelogs/v2.3.1.md @@ -10,7 +10,7 @@ Icon selector -Both of these features makes it easier to find and use icons the builtin icons. For more information, see [Icons](https://coder.com/docs/v2/latest/templates/icons). +Both of these features makes it easier to find and use the builtin icons. For more information, see [Icons](https://coder.com/docs/v2/latest/templates/icons). ### Features From d6b397fa28f7c818b9bf71473bd4a917cf934a74 Mon Sep 17 00:00:00 2001 From: Atif Ali Date: Tue, 17 Oct 2023 12:59:19 +0000 Subject: [PATCH 03/12] explain --- docs/changelogs/v2.3.1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/changelogs/v2.3.1.md b/docs/changelogs/v2.3.1.md index 08da65c340700..6dd23fe4c8091 100644 --- a/docs/changelogs/v2.3.1.md +++ b/docs/changelogs/v2.3.1.md @@ -2,7 +2,7 @@ ### Important Features -- We added a new builtin icons page. +- We added a new builtin icons page that is available at `CODER_ACCESS_URL/icons`. e.g. `https://coder.mycompany.com/icons`. Builtin icons page From bee18121be0cd9eb51e6cb68a645a71051f530d1 Mon Sep 17 00:00:00 2001 From: Atif Ali Date: Tue, 17 Oct 2023 13:08:19 +0000 Subject: [PATCH 04/12] simplify --- docs/changelogs/v2.3.1.md | 56 +++++++++++++++++++-------------------- 1 file changed, 27 insertions(+), 29 deletions(-) diff --git a/docs/changelogs/v2.3.1.md b/docs/changelogs/v2.3.1.md index 6dd23fe4c8091..7dc2c905b0945 100644 --- a/docs/changelogs/v2.3.1.md +++ b/docs/changelogs/v2.3.1.md @@ -1,48 +1,46 @@ +Here's the changelog with improved formatting and clarity. The changes focus on readability and structure. + +--- + ## Changelog ### Important Features -- We added a new builtin icons page that is available at `CODER_ACCESS_URL/icons`. e.g. `https://coder.mycompany.com/icons`. +#### New Builtin Icons Page - Builtin icons page +- **URL**: `CODER_ACCESS_URL/icons` e.g., `https://coder.mycompany.com/icons` + ![Builtin icons page](../images/icons-gallery.png) -- We added icon selector to the emoji picker. +#### Icon Selector in Emoji Picker - Icon selector +![Icon selector](https://user-images.githubusercontent.com/418348/273346591-53837fd8-f3ce-4a71-b73e-bda9a62bb7c3.png) -Both of these features makes it easier to find and use the builtin icons. For more information, see [Icons](https://coder.com/docs/v2/latest/templates/icons). +**Impact**: Both features improve usability in finding and using builtin icons. +**Docs**: [Icons Documentation](https://coder.com/docs/v2/latest/templates/icons) ### Features -- Expose user seat limits as Prometheus metrics (#10169) (@mtojek) -- Now you can control autostart days for templates (#10226) (#10263) (@Emyrk) -- Aadd support for sending batched agent metadata (#10223) (#10224) (@mafredri) -- Add extraTemplates to provisioners Helm chart (#10256) (@johnstcn) -- Only show `Running`, `Stopped`, `Failed` and `Pending` status for workspace filtering (#10283) (@BrunoQuaresma) - -### Bug fixes +- **Expose User Seat Limits**: Prometheus metrics (#10169) (@mtojek) +- **Control Autostart Days**: For templates (#10226, #10263) (@Emyrk) +- **Batched Agent Metadata**: Add support (#10223, #10224) (@mafredri) +- **Helm Chart Update**: ExtraTemplates in provisioners (#10256) (@johnstcn) +- **Workspace Filtering**: Limit to `Running`, `Stopped`, `Failed`, `Pending` (#10283) (@BrunoQuaresma) -- Use UTF-8 encoding with screen (#10190) (@code-asher) -- update create workspace button to recognize template names + display names (#10233) (@Parkreiner) -- display health alert in `DeploymentBannerView` (#10193) (@aslilac) -- send metadata in batches (#10225) (@mafredri) -- make activitybump aware of default template ttl (#10253) (@johnstcn) -- pass through api ctx to provisionerdserver (#10259) (@johnstcn) -- ensure empty string error shows default message (#10196) (@Kira-Pilot) -- display empty component when workspace has no parameters (#10286) (@BrunoQuaresma) -- do not return next page if the current size is lower than the limit (#10287) (@BrunoQuaresma) +### Bug Fixes -### Documentation +- **Screen Encoding**: Fixes an issue with web terminal rendering by using UTF-8 (#10190) (@code-asher) +- **Workspace Names**: Display template names even if no display name is set (#10233) (@Parkreiner) +- **API Context**: Pass through to provisionerdserver (#10259) (@johnstcn) +- **Error Messaging**: Show a default error message (#10196) (@Kira-Pilot) -- Add [Icons](https://coder.com/docs/v2/latest/templates/icons). - in the template documentation (#10230) (@aslilac) +### Container Image -Compare: [`v2.3.0...v2.3.1`](https://github.com/coder/coder/compare/v2.3.0...v2.3.1) +- `docker pull ghcr.io/coder/coder:v2.3.1` -## Container image +### Install/Upgrade -- `docker pull ghcr.io/coder/coder:v2.3.1` +- **Docs**: [Install](https://coder.com/docs/v2/latest/install) | [Upgrade](https://coder.com/docs/v2/latest/admin/upgrade) -## 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. +**Compare**: [`v2.3.0...v2.3.1`](https://github.com/coder/coder/compare/v2.3.0...v2.3.1) From 4019558fb40fce67e66e06e3a8d500bc468225aa Mon Sep 17 00:00:00 2001 From: Atif Ali Date: Tue, 17 Oct 2023 13:55:02 +0000 Subject: [PATCH 05/12] update --- docs/changelogs/v2.3.1.md | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/docs/changelogs/v2.3.1.md b/docs/changelogs/v2.3.1.md index 7dc2c905b0945..958c90179147e 100644 --- a/docs/changelogs/v2.3.1.md +++ b/docs/changelogs/v2.3.1.md @@ -4,20 +4,6 @@ Here's the changelog with improved formatting and clarity. The changes focus on ## Changelog -### Important Features - -#### New Builtin Icons Page - -- **URL**: `CODER_ACCESS_URL/icons` e.g., `https://coder.mycompany.com/icons` - ![Builtin icons page](../images/icons-gallery.png) - -#### Icon Selector in Emoji Picker - -![Icon selector](https://user-images.githubusercontent.com/418348/273346591-53837fd8-f3ce-4a71-b73e-bda9a62bb7c3.png) - -**Impact**: Both features improve usability in finding and using builtin icons. -**Docs**: [Icons Documentation](https://coder.com/docs/v2/latest/templates/icons) - ### Features - **Expose User Seat Limits**: Prometheus metrics (#10169) (@mtojek) @@ -26,6 +12,10 @@ Here's the changelog with improved formatting and clarity. The changes focus on - **Helm Chart Update**: ExtraTemplates in provisioners (#10256) (@johnstcn) - **Workspace Filtering**: Limit to `Running`, `Stopped`, `Failed`, `Pending` (#10283) (@BrunoQuaresma) +### Documentation + +- **Docs**: [Icons Documentation](https://coder.com/docs/v2/latest/templates/icons) + ### Bug Fixes - **Screen Encoding**: Fixes an issue with web terminal rendering by using UTF-8 (#10190) (@code-asher) From 337d989edf9704b29e4c04399286a63fa3d3232a Mon Sep 17 00:00:00 2001 From: Atif Ali Date: Tue, 17 Oct 2023 14:00:00 +0000 Subject: [PATCH 06/12] simplify --- docs/changelogs/v2.3.1.md | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/docs/changelogs/v2.3.1.md b/docs/changelogs/v2.3.1.md index 958c90179147e..4b856ee4cc9d3 100644 --- a/docs/changelogs/v2.3.1.md +++ b/docs/changelogs/v2.3.1.md @@ -4,24 +4,21 @@ Here's the changelog with improved formatting and clarity. The changes focus on ## Changelog -### Features +### Important Features -- **Expose User Seat Limits**: Prometheus metrics (#10169) (@mtojek) -- **Control Autostart Days**: For templates (#10226, #10263) (@Emyrk) -- **Batched Agent Metadata**: Add support (#10223, #10224) (@mafredri) -- **Helm Chart Update**: ExtraTemplates in provisioners (#10256) (@johnstcn) -- **Workspace Filtering**: Limit to `Running`, `Stopped`, `Failed`, `Pending` (#10283) (@BrunoQuaresma) +- Expose user seat limits in Prometheus metrics (#10169) (@mtojek) +- Template admins can pick which days can be used for autostart (#10226, #10263) (@Emyrk) +- Add ExtraTemplates in provisioners Helm chart (#10256) (@johnstcn) +- Limit workspace filtering to `Running`, `Stopped`, `Failed`, `Pending` states (#10283) (@BrunoQuaresma) ### Documentation - **Docs**: [Icons Documentation](https://coder.com/docs/v2/latest/templates/icons) -### Bug Fixes +### Important Bug Fixes -- **Screen Encoding**: Fixes an issue with web terminal rendering by using UTF-8 (#10190) (@code-asher) -- **Workspace Names**: Display template names even if no display name is set (#10233) (@Parkreiner) -- **API Context**: Pass through to provisionerdserver (#10259) (@johnstcn) -- **Error Messaging**: Show a default error message (#10196) (@Kira-Pilot) +- Fixes an issue with web terminal rendering by using UTF-8 (#10190) (@code-asher) +- Display template names even if no display name is set (#10233) (@Parkreiner) ### Container Image From 5f715de890e25d68cceae702992928e1de100e79 Mon Sep 17 00:00:00 2001 From: Atif Ali Date: Tue, 17 Oct 2023 14:00:48 +0000 Subject: [PATCH 07/12] cleanup --- docs/changelogs/v2.3.1.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/docs/changelogs/v2.3.1.md b/docs/changelogs/v2.3.1.md index 4b856ee4cc9d3..589bbbc6b68ce 100644 --- a/docs/changelogs/v2.3.1.md +++ b/docs/changelogs/v2.3.1.md @@ -1,7 +1,3 @@ -Here's the changelog with improved formatting and clarity. The changes focus on readability and structure. - ---- - ## Changelog ### Important Features From 48fb43cc79d711f9ff15b7831f495e688aff9892 Mon Sep 17 00:00:00 2001 From: Atif Ali Date: Tue, 17 Oct 2023 14:46:39 +0000 Subject: [PATCH 08/12] refresh --- docs/changelogs/temp.md | 29 ++++++++++++++ docs/changelogs/v2.3.1.md | 81 +++++++++++++++++++++++++++++++-------- 2 files changed, 95 insertions(+), 15 deletions(-) create mode 100644 docs/changelogs/temp.md diff --git a/docs/changelogs/temp.md b/docs/changelogs/temp.md new file mode 100644 index 0000000000000..589bbbc6b68ce --- /dev/null +++ b/docs/changelogs/temp.md @@ -0,0 +1,29 @@ +## Changelog + +### Important Features + +- Expose user seat limits in Prometheus metrics (#10169) (@mtojek) +- Template admins can pick which days can be used for autostart (#10226, #10263) (@Emyrk) +- Add ExtraTemplates in provisioners Helm chart (#10256) (@johnstcn) +- Limit workspace filtering to `Running`, `Stopped`, `Failed`, `Pending` states (#10283) (@BrunoQuaresma) + +### Documentation + +- **Docs**: [Icons Documentation](https://coder.com/docs/v2/latest/templates/icons) + +### Important Bug Fixes + +- Fixes an issue with web terminal rendering by using UTF-8 (#10190) (@code-asher) +- Display template names even if no display name is set (#10233) (@Parkreiner) + +### Container Image + +- `docker pull ghcr.io/coder/coder:v2.3.1` + +### Install/Upgrade + +- **Docs**: [Install](https://coder.com/docs/v2/latest/install) | [Upgrade](https://coder.com/docs/v2/latest/admin/upgrade) + +--- + +**Compare**: [`v2.3.0...v2.3.1`](https://github.com/coder/coder/compare/v2.3.0...v2.3.1) diff --git a/docs/changelogs/v2.3.1.md b/docs/changelogs/v2.3.1.md index 589bbbc6b68ce..e83281f0ca0e5 100644 --- a/docs/changelogs/v2.3.1.md +++ b/docs/changelogs/v2.3.1.md @@ -1,29 +1,80 @@ ## Changelog -### Important Features +### Features -- Expose user seat limits in Prometheus metrics (#10169) (@mtojek) -- Template admins can pick which days can be used for autostart (#10226, #10263) (@Emyrk) -- Add ExtraTemplates in provisioners Helm chart (#10256) (@johnstcn) -- Limit workspace filtering to `Running`, `Stopped`, `Failed`, `Pending` states (#10283) (@BrunoQuaresma) +- 2a4ac2a53 feat: expose user seat limits as Prometheus metrics (#10169) (@mtojek) +- 39c0539d4 feat: add controls to template for determining startup days (#10226) (@Emyrk) +- 5a90228c6 feat: fix 404 on the first app loads when unauthenticated (#10262) (@Emyrk) +- 6ebe9b040 feat: add UI for autostart workspace days (#10263) (@Emyrk) +- 7eeba15d1 feat(coderd): add support for sending batched agent metadata (#10223) (@mafredri) +- 4857d4bd5 feat(codersdk/agentsdk): use new agent metadata batch endpoint (#10224) (@mafredri) +- 1be24dcb5 feat(helm/provisioner): add extraTemplates (#10256) (@johnstcn) +- e5198a25a feat(scaletest): annotate scaletest pod when scaletest is in progress (#10235) (@johnstcn) +- 493e2bd2a feat(scaletest/templates): add repo branch parameter (#10279) (@mafredri) +- 3c49290dd feat(scaletest/templates): add comment parameter (#10285) (@mafredri) +- 8ffe0e22b feat(scaletest/templates): gather pod logs at the end of a scale test (#10288) (@mafredri) +- 43f26dfec feat(scaletest/templates): run all scenarios even on failure (#10290) (@mafredri) +- f64b9cab9 feat(site): decrease the number of statuses in the workspaces filter (#10283) (@BrunoQuaresma) + +### Bug fixes + +- a9077812e fix: use UTF-8 encoding with screen (#10190) (@code-asher) +- 9bf3b35bb fix: update create workspace button to recognize template names+display names (#10233) (@Parkreiner) +- cbc0c3979 fix: display health alert in `DeploymentBannerView` (#10193) (@aslilac) +- 76c65b1e1 fix(agent): send metadata in batches (#10225) (@mafredri) +- 1e75762cb fix(cli): scaletest: create-worksapces: remove invalid character for kubernetes provider in implicit plan (#10228) (@johnstcn) +- d56f49f61 fix(coderd): make activitybump aware of default template ttl (#10253) (@johnstcn) +- 6875faf23 fix(coderd/provisionerdserver): pass through api ctx to provisionerdserver (#10259) (@johnstcn) +- dd86100f3 fix(scaletest): fix flake in Test_Runner/Cleanup (#10252) (@johnstcn) +- 7c6687813 fix(site): ensure empty string error shows default message (#10196) (@Kira-Pilot) +- 01792f064 fix(site): display empty component when workspace has no parameters (#10286) (@BrunoQuaresma) +- 8efa1239e fix(site): do not return next page if the current size is lower than the limit (#10287) (@BrunoQuaresma) +- 4240200b5 fix(site): fix state used to check if creating was loading (#10296) (@BrunoQuaresma) ### Documentation -- **Docs**: [Icons Documentation](https://coder.com/docs/v2/latest/templates/icons) +- 5fc9ff29d docs: mention /icons in the template documentation (#10230) (@aslilac) -### Important Bug Fixes +### Tests -- Fixes an issue with web terminal rendering by using UTF-8 (#10190) (@code-asher) -- Display template names even if no display name is set (#10233) (@Parkreiner) +- 782c22a29 test(coderd/database/dbtestutil): allow access to `*sql.DB` (#10238) (@mafredri) -### Container Image +### Continuous integration -- `docker pull ghcr.io/coder/coder:v2.3.1` +- ab7dd24d9 ci: bump the github-actions group with 2 updates (#10250) (@app/dependabot) + +### Chores + +- 6ef1beec1 chore: recrop some icons for more consistent sizing (#10229) (@aslilac) +- 5f0457f16 chore: bump golang.org/x/net from 0.16.0 to 0.17.0 (#10232) (@app/dependabot) +- 88605b9d0 chore: add display name to member role (#10239) (@Emyrk) +- 13036dd08 chore: bump google.golang.org/api from 0.145.0 to 0.147.0 (#10249) (@app/dependabot) +- 1b1ab97c2 chore: bump github.com/google/go-cmp from 0.5.9 to 0.6.0 (#10248) (@app/dependabot) +- 9a0aac88e chore: fix broken links in docs (#10291) (@bpmct) +- eaea918a5 chore: use emotion for styling (pt. 5) (#10261) (@aslilac) +- 2acf195b1 chore: bump @babel/traverse from 7.22.11 to 7.23.2 in /site (#10295) (@app/dependabot) +- b5e5b39de chore: bump @babel/traverse from 7.22.8 to 7.23.2 in /offlinedocs (#10294) (@app/dependabot) +- 98b6c8bcb chore(coderd): report full license in telemetry (#10258) (@ammario) +- 7df40b85f chore(coderd/coderdtest): use `testing.TB` for use in benchmarks (#10237) (@mafredri) +- def980b97 chore(docs): fix syntax highlighting (#10247) (@matifali) +- 3adf86b60 chore(dogfood): use `coder_extrenal_auth` over deprecated `coder_git_auth` (#10208) (@matifali) +- 59ae69b7f chore(enterprise/cli): fix test flake in TestServerDBCrypt (#10222) (@johnstcn) +- 5be4b1237 chore(site): refactor AuthProvider to not use authXService (#10184) (@BrunoQuaresma) +- 301c045aa chore(site): remove create workspace xservice (#10217) (@BrunoQuaresma) +- 2029543eb chore(site): clarify autostop description (#10260) (@stirby) -### Install/Upgrade +### Other changes + +- 570f963ae clarify external auth regex (#10243) (@ericpaulsen) +- a67a5a810 Prevent terminal being created twice (#10200) (@code-asher) + +Compare: [`v2.3.0...v2.3.1`](https://github.com/coder/coder/compare/v2.3.0...v2.3.1) + +## Container image + +- `docker pull ghcr.io/coder/coder:v2.3.1` -- **Docs**: [Install](https://coder.com/docs/v2/latest/install) | [Upgrade](https://coder.com/docs/v2/latest/admin/upgrade) +## 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. -**Compare**: [`v2.3.0...v2.3.1`](https://github.com/coder/coder/compare/v2.3.0...v2.3.1) From ab95b1944c7ca182ecab6058c3d5f1964f33fbc5 Mon Sep 17 00:00:00 2001 From: Atif Ali Date: Tue, 17 Oct 2023 14:55:13 +0000 Subject: [PATCH 09/12] update --- docs/changelogs/temp.md | 41 ++++++++++++++++++++++++---------- docs/changelogs/v2.3.1.md | 46 +++++++++++++++++---------------------- 2 files changed, 49 insertions(+), 38 deletions(-) diff --git a/docs/changelogs/temp.md b/docs/changelogs/temp.md index 589bbbc6b68ce..c3bf0ea6b68ff 100644 --- a/docs/changelogs/temp.md +++ b/docs/changelogs/temp.md @@ -1,29 +1,46 @@ ## Changelog -### Important Features +### Features - Expose user seat limits in Prometheus metrics (#10169) (@mtojek) - Template admins can pick which days can be used for autostart (#10226, #10263) (@Emyrk) +- feat: fix 404 on the first app loads when unauthenticated (#10262) (@Emyrk) +- feat(coderd): add support for sending batched agent metadata (#10223) (@mafredri) +- feat(codersdk/agentsdk): use new agent metadata batch endpoint (#10224) (@mafredri) - Add ExtraTemplates in provisioners Helm chart (#10256) (@johnstcn) - Limit workspace filtering to `Running`, `Stopped`, `Failed`, `Pending` states (#10283) (@BrunoQuaresma) -### Documentation - -- **Docs**: [Icons Documentation](https://coder.com/docs/v2/latest/templates/icons) - -### Important Bug Fixes +### Bug fixes - Fixes an issue with web terminal rendering by using UTF-8 (#10190) (@code-asher) - Display template names even if no display name is set (#10233) (@Parkreiner) +- fix: display health alert in `DeploymentBannerView` (#10193) (@aslilac) +- fix(agent): send metadata in batches (#10225) (@mafredri) +- fix(cli): scaletest: create-worksapces: remove invalid character for kubernetes provider in implicit plan (#10228) (@johnstcn) +- fix(coderd): make activitybump aware of default template ttl (#10253) (@johnstcn) +- fix(coderd/provisionerdserver): pass through api ctx to provisionerdserver (#10259) (@johnstcn) +- fix(scaletest): fix flake in Test_Runner/Cleanup (#10252) (@johnstcn) +- fix(site): ensure empty string error shows default message (#10196) (@Kira-Pilot) +- fix(site): display empty component when workspace has no parameters (#10286) (@BrunoQuaresma) +- fix(site): do not return next page if the current size is lower than the limit (#10287) (@BrunoQuaresma) +- ix(site): fix state used to check if creating was loading (#10296) (@BrunoQuaresma) -### Container Image +### Documentation -- `docker pull ghcr.io/coder/coder:v2.3.1` +- Add builtin [Icons Documentation](https://coder.com/docs/v2/latest/templates/icons) +- Reorganize [Template Docs](https://coder.com/docs/v2/latest/templates) (#10297) (@matifali) -### Install/Upgrade +### Other changes -- **Docs**: [Install](https://coder.com/docs/v2/latest/install) | [Upgrade](https://coder.com/docs/v2/latest/admin/upgrade) +- Clarify external auth regex (#10243) (@ericpaulsen) +- Prevent terminal being created twice (#10200) (@code-asher) + +Compare: [`v2.3.0...v2.3.1`](https://github.com/coder/coder/compare/v2.3.0...v2.3.1) + +## Container image + +- `docker pull ghcr.io/coder/coder:v2.3.1` ---- +## Install/upgrade -**Compare**: [`v2.3.0...v2.3.1`](https://github.com/coder/coder/compare/v2.3.0...v2.3.1) +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. diff --git a/docs/changelogs/v2.3.1.md b/docs/changelogs/v2.3.1.md index e83281f0ca0e5..03abbf353a53d 100644 --- a/docs/changelogs/v2.3.1.md +++ b/docs/changelogs/v2.3.1.md @@ -2,38 +2,33 @@ ### Features -- 2a4ac2a53 feat: expose user seat limits as Prometheus metrics (#10169) (@mtojek) -- 39c0539d4 feat: add controls to template for determining startup days (#10226) (@Emyrk) -- 5a90228c6 feat: fix 404 on the first app loads when unauthenticated (#10262) (@Emyrk) -- 6ebe9b040 feat: add UI for autostart workspace days (#10263) (@Emyrk) -- 7eeba15d1 feat(coderd): add support for sending batched agent metadata (#10223) (@mafredri) -- 4857d4bd5 feat(codersdk/agentsdk): use new agent metadata batch endpoint (#10224) (@mafredri) -- 1be24dcb5 feat(helm/provisioner): add extraTemplates (#10256) (@johnstcn) -- e5198a25a feat(scaletest): annotate scaletest pod when scaletest is in progress (#10235) (@johnstcn) -- 493e2bd2a feat(scaletest/templates): add repo branch parameter (#10279) (@mafredri) -- 3c49290dd feat(scaletest/templates): add comment parameter (#10285) (@mafredri) -- 8ffe0e22b feat(scaletest/templates): gather pod logs at the end of a scale test (#10288) (@mafredri) -- 43f26dfec feat(scaletest/templates): run all scenarios even on failure (#10290) (@mafredri) -- f64b9cab9 feat(site): decrease the number of statuses in the workspaces filter (#10283) (@BrunoQuaresma) +- Expose user seat limits in Prometheus metrics (#10169) (@mtojek) +- Template admins can pick which days can be used for autostart (#10226, #10263) (@Emyrk) +- feat: fix 404 on the first app loads when unauthenticated (#10262) (@Emyrk) +- feat(coderd): add support for sending batched agent metadata (#10223) (@mafredri) +- feat(codersdk/agentsdk): use new agent metadata batch endpoint (#10224) (@mafredri) +- Add ExtraTemplates in provisioners Helm chart (#10256) (@johnstcn) +- Limit workspace filtering to `Running`, `Stopped`, `Failed`, `Pending` states (#10283) (@BrunoQuaresma) ### Bug fixes -- a9077812e fix: use UTF-8 encoding with screen (#10190) (@code-asher) -- 9bf3b35bb fix: update create workspace button to recognize template names+display names (#10233) (@Parkreiner) -- cbc0c3979 fix: display health alert in `DeploymentBannerView` (#10193) (@aslilac) -- 76c65b1e1 fix(agent): send metadata in batches (#10225) (@mafredri) -- 1e75762cb fix(cli): scaletest: create-worksapces: remove invalid character for kubernetes provider in implicit plan (#10228) (@johnstcn) -- d56f49f61 fix(coderd): make activitybump aware of default template ttl (#10253) (@johnstcn) -- 6875faf23 fix(coderd/provisionerdserver): pass through api ctx to provisionerdserver (#10259) (@johnstcn) -- dd86100f3 fix(scaletest): fix flake in Test_Runner/Cleanup (#10252) (@johnstcn) -- 7c6687813 fix(site): ensure empty string error shows default message (#10196) (@Kira-Pilot) -- 01792f064 fix(site): display empty component when workspace has no parameters (#10286) (@BrunoQuaresma) -- 8efa1239e fix(site): do not return next page if the current size is lower than the limit (#10287) (@BrunoQuaresma) -- 4240200b5 fix(site): fix state used to check if creating was loading (#10296) (@BrunoQuaresma) +- Fixes an issue with web terminal rendering by using UTF-8 (#10190) (@code-asher) +- Display template names even if no display name is set (#10233) (@Parkreiner) +- fix: display health alert in `DeploymentBannerView` (#10193) (@aslilac) +- fix(agent): send metadata in batches (#10225) (@mafredri) +- fix(cli): scaletest: create-worksapces: remove invalid character for kubernetes provider in implicit plan (#10228) (@johnstcn) +- fix(coderd): make activitybump aware of default template ttl (#10253) (@johnstcn) +- fix(coderd/provisionerdserver): pass through api ctx to provisionerdserver (#10259) (@johnstcn) +- fix(scaletest): fix flake in Test_Runner/Cleanup (#10252) (@johnstcn) +- fix(site): ensure empty string error shows default message (#10196) (@Kira-Pilot) +- fix(site): display empty component when workspace has no parameters (#10286) (@BrunoQuaresma) +- fix(site): do not return next page if the current size is lower than the limit (#10287) (@BrunoQuaresma) +- ix(site): fix state used to check if creating was loading (#10296) (@BrunoQuaresma) ### Documentation - 5fc9ff29d docs: mention /icons in the template documentation (#10230) (@aslilac) +- a49e6b88f docs: reorganize template docs (#10297) (@matifali) ### Tests @@ -77,4 +72,3 @@ Compare: [`v2.3.0...v2.3.1`](https://github.com/coder/coder/compare/v2.3.0...v2. ## 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 f63e96ea405e8551ae3a03cdbedfbdff100f5e61 Mon Sep 17 00:00:00 2001 From: Atif Ali Date: Tue, 17 Oct 2023 14:56:05 +0000 Subject: [PATCH 10/12] cleanup and fmt --- docs/changelogs/temp.md | 46 ----------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 docs/changelogs/temp.md diff --git a/docs/changelogs/temp.md b/docs/changelogs/temp.md deleted file mode 100644 index c3bf0ea6b68ff..0000000000000 --- a/docs/changelogs/temp.md +++ /dev/null @@ -1,46 +0,0 @@ -## Changelog - -### Features - -- Expose user seat limits in Prometheus metrics (#10169) (@mtojek) -- Template admins can pick which days can be used for autostart (#10226, #10263) (@Emyrk) -- feat: fix 404 on the first app loads when unauthenticated (#10262) (@Emyrk) -- feat(coderd): add support for sending batched agent metadata (#10223) (@mafredri) -- feat(codersdk/agentsdk): use new agent metadata batch endpoint (#10224) (@mafredri) -- Add ExtraTemplates in provisioners Helm chart (#10256) (@johnstcn) -- Limit workspace filtering to `Running`, `Stopped`, `Failed`, `Pending` states (#10283) (@BrunoQuaresma) - -### Bug fixes - -- Fixes an issue with web terminal rendering by using UTF-8 (#10190) (@code-asher) -- Display template names even if no display name is set (#10233) (@Parkreiner) -- fix: display health alert in `DeploymentBannerView` (#10193) (@aslilac) -- fix(agent): send metadata in batches (#10225) (@mafredri) -- fix(cli): scaletest: create-worksapces: remove invalid character for kubernetes provider in implicit plan (#10228) (@johnstcn) -- fix(coderd): make activitybump aware of default template ttl (#10253) (@johnstcn) -- fix(coderd/provisionerdserver): pass through api ctx to provisionerdserver (#10259) (@johnstcn) -- fix(scaletest): fix flake in Test_Runner/Cleanup (#10252) (@johnstcn) -- fix(site): ensure empty string error shows default message (#10196) (@Kira-Pilot) -- fix(site): display empty component when workspace has no parameters (#10286) (@BrunoQuaresma) -- fix(site): do not return next page if the current size is lower than the limit (#10287) (@BrunoQuaresma) -- ix(site): fix state used to check if creating was loading (#10296) (@BrunoQuaresma) - -### Documentation - -- Add builtin [Icons Documentation](https://coder.com/docs/v2/latest/templates/icons) -- Reorganize [Template Docs](https://coder.com/docs/v2/latest/templates) (#10297) (@matifali) - -### Other changes - -- Clarify external auth regex (#10243) (@ericpaulsen) -- Prevent terminal being created twice (#10200) (@code-asher) - -Compare: [`v2.3.0...v2.3.1`](https://github.com/coder/coder/compare/v2.3.0...v2.3.1) - -## Container image - -- `docker pull ghcr.io/coder/coder:v2.3.1` - -## 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 ff629cdf8aaa4f778e63cee332ac5338a21715a1 Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Tue, 17 Oct 2023 18:17:49 +0300 Subject: [PATCH 11/12] Update v2.3.1.md cleanup --- docs/changelogs/v2.3.1.md | 36 ++++-------------------------------- 1 file changed, 4 insertions(+), 32 deletions(-) diff --git a/docs/changelogs/v2.3.1.md b/docs/changelogs/v2.3.1.md index 03abbf353a53d..21cedcf93243f 100644 --- a/docs/changelogs/v2.3.1.md +++ b/docs/changelogs/v2.3.1.md @@ -27,41 +27,13 @@ ### Documentation -- 5fc9ff29d docs: mention /icons in the template documentation (#10230) (@aslilac) -- a49e6b88f docs: reorganize template docs (#10297) (@matifali) - -### Tests - -- 782c22a29 test(coderd/database/dbtestutil): allow access to `*sql.DB` (#10238) (@mafredri) - -### Continuous integration - -- ab7dd24d9 ci: bump the github-actions group with 2 updates (#10250) (@app/dependabot) - -### Chores - -- 6ef1beec1 chore: recrop some icons for more consistent sizing (#10229) (@aslilac) -- 5f0457f16 chore: bump golang.org/x/net from 0.16.0 to 0.17.0 (#10232) (@app/dependabot) -- 88605b9d0 chore: add display name to member role (#10239) (@Emyrk) -- 13036dd08 chore: bump google.golang.org/api from 0.145.0 to 0.147.0 (#10249) (@app/dependabot) -- 1b1ab97c2 chore: bump github.com/google/go-cmp from 0.5.9 to 0.6.0 (#10248) (@app/dependabot) -- 9a0aac88e chore: fix broken links in docs (#10291) (@bpmct) -- eaea918a5 chore: use emotion for styling (pt. 5) (#10261) (@aslilac) -- 2acf195b1 chore: bump @babel/traverse from 7.22.11 to 7.23.2 in /site (#10295) (@app/dependabot) -- b5e5b39de chore: bump @babel/traverse from 7.22.8 to 7.23.2 in /offlinedocs (#10294) (@app/dependabot) -- 98b6c8bcb chore(coderd): report full license in telemetry (#10258) (@ammario) -- 7df40b85f chore(coderd/coderdtest): use `testing.TB` for use in benchmarks (#10237) (@mafredri) -- def980b97 chore(docs): fix syntax highlighting (#10247) (@matifali) -- 3adf86b60 chore(dogfood): use `coder_extrenal_auth` over deprecated `coder_git_auth` (#10208) (@matifali) -- 59ae69b7f chore(enterprise/cli): fix test flake in TestServerDBCrypt (#10222) (@johnstcn) -- 5be4b1237 chore(site): refactor AuthProvider to not use authXService (#10184) (@BrunoQuaresma) -- 301c045aa chore(site): remove create workspace xservice (#10217) (@BrunoQuaresma) -- 2029543eb chore(site): clarify autostop description (#10260) (@stirby) +- Mention /icons in the template documentation (#10230) (@aslilac) +- Reorganize template docs (#10297) (@matifali) ### Other changes -- 570f963ae clarify external auth regex (#10243) (@ericpaulsen) -- a67a5a810 Prevent terminal being created twice (#10200) (@code-asher) +- Clarify external auth regex (#10243) (@ericpaulsen) +- Prevent terminal being created twice (#10200) (@code-asher) Compare: [`v2.3.0...v2.3.1`](https://github.com/coder/coder/compare/v2.3.0...v2.3.1) From 56e3d6c4686a6f9f4305d229ae4d7b6c4a121d1d Mon Sep 17 00:00:00 2001 From: Ben Date: Tue, 17 Oct 2023 21:42:27 +0000 Subject: [PATCH 12/12] add new commits --- docs/changelogs/v2.3.1.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/changelogs/v2.3.1.md b/docs/changelogs/v2.3.1.md index 21cedcf93243f..35f9f4dd45a27 100644 --- a/docs/changelogs/v2.3.1.md +++ b/docs/changelogs/v2.3.1.md @@ -9,6 +9,7 @@ - feat(codersdk/agentsdk): use new agent metadata batch endpoint (#10224) (@mafredri) - Add ExtraTemplates in provisioners Helm chart (#10256) (@johnstcn) - Limit workspace filtering to `Running`, `Stopped`, `Failed`, `Pending` states (#10283) (@BrunoQuaresma) +- Add all safe experiments to the deployment page (#10276) (@Kira-Pilot) ### Bug fixes @@ -23,7 +24,9 @@ - fix(site): ensure empty string error shows default message (#10196) (@Kira-Pilot) - fix(site): display empty component when workspace has no parameters (#10286) (@BrunoQuaresma) - fix(site): do not return next page if the current size is lower than the limit (#10287) (@BrunoQuaresma) -- ix(site): fix state used to check if creating was loading (#10296) (@BrunoQuaresma) +- fix(site): fix state used to check if creating was loading (#10296) (@BrunoQuaresma) +- fix: prevent metadata queries from short-circuting (#10312) (@Parkreiner) +- fix: set K8s deployment strategy to Recreate (#10321) ### Documentation