From 4d5f83be9899bdd6e4585f851b504859deb0e3fa Mon Sep 17 00:00:00 2001 From: Jon Ayers Date: Wed, 24 May 2023 22:01:53 +0000 Subject: [PATCH 1/3] chore: add changelog for 1.43.0 --- changelog/1.43.0.md | 28 ++++++++++++++++++++++++++++ manifest.json | 7 +++++++ 2 files changed, 35 insertions(+) create mode 100644 changelog/1.43.0.md diff --git a/changelog/1.43.0.md b/changelog/1.43.0.md new file mode 100644 index 00000000..f124e213 --- /dev/null +++ b/changelog/1.43.0.md @@ -0,0 +1,28 @@ +--- +title: "1.43.0" +description: "Released on 05/24/2023" +--- + +### Breaking changes ❗ + +There are no breaking changes in 1.43.0. + +### Features ✨ + +- web: Added the ability to modify the default role for new users in an + organization. The default role can be updated in the "Edit Organization" page. + +### Bug fixes 🐛 + +- web: Fixed an issue where the autostart time was getting misinterpreted due to + a timezone conversion. +- web: Fixed some styling issues in the "Edit Organization" page. +- infra: Fixed an issue where attempting to access a public Dev URL could result + in a 500. +- infra: Improved SSH PTY handling. +- infra: Added cgroup-v2 support for setting CPU quota and period in envbox. + +### Security updates 🔐 + +- Updated code-server to 4.13.0 to fix some vulnerabilities in transitive + dependencies (CVE-2023-30547, CVE-2023-29199, CVE-2023-29017). diff --git a/manifest.json b/manifest.json index 612a256e..e3e49ffb 100644 --- a/manifest.json +++ b/manifest.json @@ -1,5 +1,6 @@ { "versions": [ + "v1.43", "v1.42", "v1.41", "v1.40", @@ -1125,6 +1126,12 @@ "path": "./changelog/index.md", "icon_path": "./assets/images/icons/paper.svg", "children": [ + { + "path": "./changelog/1.43.0.md", + "title": "1.43.0", + "description": "Released on 05/24/2023", + "children": [] + }, { "path": "./changelog/1.42.0.md", "title": "1.42.0", From b7e268e3a3c38c1c06a2b45a8408fa2ba127f757 Mon Sep 17 00:00:00 2001 From: Cian Johnston Date: Thu, 25 May 2023 08:07:55 -0700 Subject: [PATCH 2/3] chore: update changelog for 1.43.0, add note regarding bitbucket perms (#1274) --- admin/git.md | 4 +++- changelog/1.43.0.md | 5 +++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/admin/git.md b/admin/git.md index db18629a..22349b36 100644 --- a/admin/git.md +++ b/admin/git.md @@ -103,7 +103,9 @@ Click _Continue_. - Enter a unique name for the link, e.g. "Coder" - Set **Redirect URL** to `[your-coder-domain]/oauth/callback` (e.g. `https://coder.domain.com/oauth/callback`) -- In **Application permissions**, under **Account**, enable _Write_ permission +- In **Application permissions**, enable the following: + - **Account: Write** (required to add SSH keys) + - **Repositories: Admin** (required to clone repositories and create webhooks) Click _Save_ and enter the generated **Client ID** and **Client Secret**. diff --git a/changelog/1.43.0.md b/changelog/1.43.0.md index f124e213..fa0ae466 100644 --- a/changelog/1.43.0.md +++ b/changelog/1.43.0.md @@ -21,6 +21,11 @@ There are no breaking changes in 1.43.0. in a 500. - infra: Improved SSH PTY handling. - infra: Added cgroup-v2 support for setting CPU quota and period in envbox. +- infra: Fixed an issue with the Bitbucket Server (v7.20+) integration where + Coder would fail to fetch a workspace template with a 401 error. + > Note: users will need to re-link their Bitbucket Server account to Coder for + > this fix to take effect. If you do not use workspace templates, you can + > ignore this message. ### Security updates 🔐 From caa1a3cb52a23305f167db9691a692377919bffb Mon Sep 17 00:00:00 2001 From: Cian Johnston Date: Thu, 25 May 2023 16:55:53 +0100 Subject: [PATCH 3/3] call out changes to bitbucket requirements --- changelog/1.43.0.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/changelog/1.43.0.md b/changelog/1.43.0.md index fa0ae466..ca20aefc 100644 --- a/changelog/1.43.0.md +++ b/changelog/1.43.0.md @@ -5,7 +5,10 @@ description: "Released on 05/24/2023" ### Breaking changes ❗ -There are no breaking changes in 1.43.0. +- The Bitbucket Server integration for version 7.20 and above now requires the + `REPO_ADMIN` permission. See [Git integration](../admin/git.md) for more + information. Users will need to re-link their Bitbucket Server account to + Coder for this fix to take effect. ### Features ✨ @@ -23,9 +26,6 @@ There are no breaking changes in 1.43.0. - infra: Added cgroup-v2 support for setting CPU quota and period in envbox. - infra: Fixed an issue with the Bitbucket Server (v7.20+) integration where Coder would fail to fetch a workspace template with a 401 error. - > Note: users will need to re-link their Bitbucket Server account to Coder for - > this fix to take effect. If you do not use workspace templates, you can - > ignore this message. ### Security updates 🔐