Skip to content

Commit b5a4f78

Browse files
authored
chore: add changelog for 1.36.0 (coder#1154)
1 parent f233d02 commit b5a4f78

File tree

3 files changed

+55
-1
lines changed

3 files changed

+55
-1
lines changed

admin/prometheus.md

+6
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,12 @@ Below is a list of the various metrics emitted by Coder's Prometheus endpoint:
4444
| `coderd_api_requests_processed_total` | `counter` | The total number of processed API requests |
4545
| `coderd_api_websocket_durations_ms` | `histogram` | Websocket duration distribution of requests in milliseconds |
4646
| `coderd_background_workspace_build_duration_s` | `histogram` | Duration distribution of workspace builds in seconds |
47+
| `coderd_backgroundjob_completed_total` | `counter` | Total number of jobs completed since startup. |
48+
| `coderd_backgroundjob_current_enqueued_jobs` | `gauge` | Current number of enqueued and not started background jobs. |
49+
| `coderd_backgroundjob_enqueue_time_seconds` | `histogram` | Histogram of total time taken by job type to transition from Enqueue to Running. |
50+
| `coderd_backgroundjob_enqueued_total` | `counter` | Total number of jobs enqueued. |
51+
| `coderd_backgroundjob_execution_time_seconds` | `histogram` | Histogram of total time taken by job type to transition from Running to Completed. |
52+
| `coderd_backgroundjob_started_total` | `counter` | Total number of jobs started. |
4753
| `coderd_db_sql_queries_executed_total` | `counter` | The total number of executed SQL queries |
4854
| `coderd_db_sql_query_latencies_ms` | `histogram` | Latency distribution of SQL queries in milliseconds |
4955
| `coderd_license_expires_at_unix` | `gauge` | Unix timestamp of the license expiry date. |

changelog/1.36.0.md

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
---
2+
title: "1.36.0"
3+
description: "Released on 10/26/2022"
4+
---
5+
6+
### Breaking changes ❗
7+
8+
There are no breaking changes in 1.36.0
9+
10+
### Features ✨
11+
12+
- infra: Allowed older verions of curl for self-contained builds.
13+
- infra: Allowed workspace template builds even if user does not have permission
14+
to add webhooks on their git repo.
15+
- infra: Broke out API request latency Prometheus metrics by route.
16+
- infra: Added Prometheus metrics around background job execution.
17+
- infra: Added support for cached CVMs with 5.15 and 5.16 kernel versions.
18+
19+
### Bug fixes 🐛
20+
21+
- web: Fixed the "back to site" button that appears when trying to access an IDE
22+
on a workspace that has shut off.
23+
- infra: Fixed a goroutine leak.
24+
- web: Fixed relative links on embedded docs.
25+
- infra: Large numbers of concurrent workspace builds are distributed more
26+
evenly amongst multiple coderd replicas.
27+
- web: Allow org members to view activity metrics.
28+
- infra: Fix SSH connections not being audit logged.
29+
- infra: Fixed an issue where temporary pods created during build did not have
30+
templates applied.
31+
- infra: Fixed an issue where the hostname was set to `workspace` for CVM
32+
workspaces irrespective of the workspace name.
33+
34+
### Security updates 🔐
35+
36+
- infra: Fixed an issued where Coder services inside the workspace could be
37+
reached via the network from outside in some environments.
38+
39+
### Known Issues ℹ️
40+
41+
- On AWS EKS, cached CVMs are known to not work with more recent versions of the
42+
`Ubuntu2004` AMI family that include kernel version `5.15-aws`. Workaround:
43+
roll back to a version that includes an earlier kernel version (for example,
44+
`ubuntu-eks/k8s_1.22/images/hvm-ssd/ubuntu-focal-20.04-amd64-server-20220706`)
45+
or build a custom AMI with the generic kernel.

manifest.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"versions": ["v1.35", "v1.34", "v1.33", "v1.32", "v1.31", "v1.30"],
2+
"versions": ["v1.36", "v1.35", "v1.34", "v1.33", "v1.32", "v1.31", "v1.30"],
33
"routes": [
44
{
55
"path": "./index.md",
@@ -584,6 +584,9 @@
584584
"path": "./changelog/index.md",
585585
"icon_path": "./assets/images/icons/paper.svg",
586586
"children": [
587+
{
588+
"path": "./changelog/1.36.0.md"
589+
},
587590
{
588591
"path": "./changelog/1.35.0.md",
589592
"children": [

0 commit comments

Comments
 (0)