Skip to content

WAC release fixups #230

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 2 commits into from
Mar 31, 2021
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
12 changes: 6 additions & 6 deletions changelog/1.17.2.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,26 +15,26 @@ There are no breaking changes in 1.17.2.
- web: New page available via **Admin** > **Templates** for creating an
embeddable quickstart button.
- web: New options available when clicking **New Environment** from the
**Environments** page
**Environments** page.
- web: **workspace template** information is now displayed on the
**Environments** page for environments built from a template.
- web: Added _Cordon_ and _Uncordon_ actions to _Provider_ audit logs
- web: Added _Cordon_ and _Uncordon_ actions to _Provider_ audit logs.

### Bug Fixes 🐛

- infra: Fixes an issue whereby using `coder/configure` to create Dev URLs would
fail
fail.
- infra: Fixes an issue authenticating using OpenID Connect Identity Providers
(IdPs) that omit name information, such as GitLab. In this case, Coder will
use the email address as the user's name.
- infra: Improved validation for environment names. Previously, a long
environment name may have caused build errors.
- web: The Dev URLs card on the **Environments** page now refreshes after an
environment finishes building
environment finishes building.
- jetbrains: Fixed an issue whereby Jetbrains IDE processes would start and
always run. They now start on request when opening Jetbrains IDEs.
- web: Improved reliability of the workspace provider ping indicator
- web: Fixed incorrect timestamps in an image's _Available Tags_ table
- web: Improved reliability of the workspace provider ping indicator.
- web: Fixed incorrect timestamps in an image's _Available Tags_ table.

### Security Updates 🔐

Expand Down
21 changes: 11 additions & 10 deletions environments/workspaces-as-code/templates.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,16 +46,17 @@ workspace:
effect: NoExecute
tolerationSeconds: 3600
configure:
- name: "install curl"
run: |
apt update
apt install -y curl
- name: "install Go binary"
run: "go install"
directory: /home/coder/go/src/github.com/my-project
shell: "bash"
env:
GOPATH: /home/coder/go
start:
- name: "install curl"
run: |
apt update
apt install -y curl
- name: "install Go binary"
run: "go install"
directory: /home/coder/go/src/github.com/my-project
shell: "bash"
env:
GOPATH: /home/coder/go
```

## Workspace template fields
Expand Down