diff --git a/changelog/1.35.0.md b/changelog/1.35.0.md new file mode 100644 index 000000000..525970877 --- /dev/null +++ b/changelog/1.35.0.md @@ -0,0 +1,43 @@ +--- +title: "1.35.0" +description: "Released on TBD" +--- + +### Breaking changes ❗ + +There are no breaking changes in 1.35.0. + +### Features ✨ + +- infra: Coder now supports reading the database password from a file (specified + by environment variable `DB_PASSWORD_PATH`) instead of directly from an + environment variable. This is configurable via the Helm option + `postgres.noPasswordEnv`. +- infra: Workspace templates now allow specifying seccomp profiles for workspace + pods. + +### Bug fixes 🐛 + +- web: Fixed an issue where non-Admin users were unable to create "Open in + Coder" buttons. +- web: Fixed broken links in the offline docs. +- web: Added a workaround for an issue in Projector where the IDE would crash + when running a unit test + [(IDEA-300226](https://youtrack.jetbrains.com/issue/IDEA-300226)). +- web: Fixed an issue where custom font glyphs were not being rendered correctly + in the web terminal. +- web: `coderd` now automatically reloads TLS certificates without a restart. +- web: fixed an issue blocking the usage of Server-Sent Events (SSE). +- infra: Improved connection caching logic. +- infra: Fixed an issue where building multiple workspaces in parallel would + result in excessive queuing. +- infra: Improved logging of workspace builds and websocket connection errors. + +### Security updates 🔐 + +There are no security updates in 1.35. + +### Notes â„šī¸ + +- Our bundled version of JetBrains Projector is now built with JDK 17 to match + the version used by more recent Jetbrains IDEs. diff --git a/manifest.json b/manifest.json index 090563ffe..567232216 100644 --- a/manifest.json +++ b/manifest.json @@ -1,5 +1,5 @@ { - "versions": ["v1.34", "v1.33", "v1.32", "v1.31", "v1.30"], + "versions": ["v1.35", "v1.34", "v1.33", "v1.32", "v1.31", "v1.30"], "routes": [ { "path": "./index.md", @@ -575,6 +575,9 @@ { "path": "./changelog/index.md", "children": [ + { + "path": "./changelog/1.35.0.md" + }, { "path": "./changelog/1.34.0.md" },