Skip to content

chore: merge v1.43 into main #1275

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
May 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion admin/git.md
Original file line number Diff line number Diff line change
Expand Up @@ -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**.

Expand Down
33 changes: 33 additions & 0 deletions changelog/1.43.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
title: "1.43.0"
description: "Released on 05/24/2023"
---

### Breaking changes ❗

- 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 ✨

- 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.
- infra: Fixed an issue with the Bitbucket Server (v7.20+) integration where
Coder would fail to fetch a workspace template with a 401 error.

### 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).
7 changes: 7 additions & 0 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"versions": [
"v1.43",
"v1.42",
"v1.41",
"v1.40",
Expand Down Expand Up @@ -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",
Expand Down