Skip to content

Commit c1ff560

Browse files
committed
docs: add v2.1.6 changelog
1 parent d85c354 commit c1ff560

File tree

2 files changed

+61
-3
lines changed

2 files changed

+61
-3
lines changed

docs/changelogs/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ Run this command to generate release notes:
1212
export CODER_IGNORE_MISSING_COMMIT_METADATA=1
1313
export BRANCH=main
1414
./scripts/release/generate_release_notes.sh \
15-
--old-version=v2.1.4 \
16-
--new-version=v2.1.5 \
15+
--old-version=v2.1.5 \
16+
--new-version=v2.1.6 \
1717
--ref=$(git rev-parse --short "${ref:-origin/$BRANCH}") \
18-
> ./docs/changelogs/v2.1.5.md
18+
> ./docs/changelogs/v2.1.6.md
1919
```

docs/changelogs/v2.1.5.md

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
## Changelog
2+
3+
### Important changes
4+
5+
- Removed `coder reset-password` from slim binary (#9520) (@mafredri)
6+
- VS Code Insiders is no longer a default [display app](https://registry.terraform.io/providers/coder/coder/latest/docs/resources/agent#nested-schema-for-display_apps). Keep reading for more details.
7+
8+
### Features
9+
10+
- You can install Coder with [Homebrew](https://formulae.brew.sh/formula/coder#default) (#9414) (@aslilac). Our [install script](https://coder.com/docs/v2/latest/install/install.sh) will also use Homebrew, if present on your machine.
11+
- You can show/hide specific [display apps](https://registry.terraform.io/providers/coder/coder/latest/docs/resources/agent#nested-schema-for-display_apps) in your template, such as VS Code (Insiders), web terminal, SSH, etc. (#9100) (@sreya)
12+
To add VS Code insiders into your template, you can set:
13+
```hcl
14+
display_apps {
15+
vscode_insiders = true
16+
}
17+
```
18+
![Add insiders](https://user-images.githubusercontent.com/4856196/263852602-94a5cb56-b7c3-48cb-928a-3b5e0f4e964b.png)
19+
- eded7a4b8 feat: create a workspace from any template version (#9471) (@aslilac)
20+
- 79cd6047d feat: add boringcrypto builds for linux (#9528) (@spikecurtis)
21+
- 16ef97a06 feat(cli): add DataDog Go tracer (#9411) (@ammario)
22+
- 796a9754a feat(enterprise/audit): add user object to slog exporter (#9456) (@coadler)
23+
- 2399063a5 feat(site): make workspace batch deletion GA (#9313) (@BrunoQuaresma)
24+
25+
### Bug fixes
26+
27+
- Expired OIDC tokens will now redirect to login page (#9442) (@Emyrk)
28+
- Avoid redirect loop on workspace proxies (#9389) (@deansheather)
29+
- Stop dropping error log on context canceled after heartbeat (#9427) (@spikecurtis)
30+
- Fix null pointer on external provisioner daemons with daily_cost (#9401) (@spikecurtis)
31+
- Hide OIDC and Github auth settings when they are disabled (#9447) (@aslilac)
32+
- Generate username with uuid to prevent collision (#9496) (@kylecarbs)
33+
- Make 'NoRefresh' honor unlimited tokens in gitauth (#9472) (@Emyrk)
34+
- Dotfiles: add an exception for `.gitconfig` (#9515) (@matifali)
35+
- Close batcher to force flush before asserting agent stats (#9465) (@johnstcn)
36+
- Ensure audit log json fields are formatted correctly (#9397) (@coadler)
37+
- Correctly set default tags for PSK auth (#9436) (@johnstcn)
38+
- Remove reference to non-existent local variable (#9448) (@denbeigh2000)
39+
- Remove checkbox from ws table loader (#9441) (@BrunoQuaresma)
40+
- Fix workspace parameters update when having immutable parameters (#9500) (@BrunoQuaresma)
41+
- Re-add keepalives to tailnet (#9410) (@coadler)
42+
43+
### Documentation
44+
45+
- Add [JetBrains Gateway Offline Mode](https://coder.com/docs/v2/latest/ides/gateway#jetbrains-gateway-in-an-offline-environment) config steps (#9388) (@ericpaulsen)
46+
- Describe [dynamic options and locals for parameters](https://github.com/coder/coder/tree/main/examples/parameters-dynamic-options) (#9429) (@mtojek)
47+
- Add macOS installation page (#9443) (@aslilac)
48+
- Explain why coder port-forward is more performant than dashboard and sshd (#9494) (@sharkymark)
49+
- Add `CODER_TLS_ADDRESS` to documentation for TLS setup (#9503) (@RaineAllDay)
50+
51+
## Container image
52+
53+
- `docker pull ghcr.io/coder/coder:v2.1.5`
54+
55+
## Install/upgrade
56+
57+
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.
58+

0 commit comments

Comments
 (0)