Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 66019ef

Browse files
authored
docs: add v2.1.6 changelog (coder#9538)
1 parent d85c354 commit 66019ef

File tree

2 files changed

+76
-3
lines changed

2 files changed

+76
-3
lines changed

docs/changelogs/README.md

+3-3
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

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

0 commit comments

Comments
 (0)