Skip to content

Commit da1aaed

Browse files
committed
v1.3.7
1 parent 44f4f08 commit da1aaed

File tree

2 files changed

+14
-4
lines changed

2 files changed

+14
-4
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
## Unreleased
44

5+
## [v1.3.7](https://github.com/coder/vscode-coder/releases/tag/v1.3.7) (2024-11-04)
6+
7+
### Added
8+
9+
- New setting `coder.tlsAltHost` to configure an alternative hostname to use for
10+
TLS verification. This is useful when the hostname in the certificate does not
11+
match the hostname used to connect.
12+
13+
## [v1.3.6](https://github.com/coder/vscode-coder/releases/tag/v1.3.6) (2024-11-04)
14+
515
### Added
616

717
- Default URL setting that takes precedence over CODER_URL.

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"displayName": "Coder",
55
"description": "Open any workspace with a single click.",
66
"repository": "https://github.com/coder/vscode-coder",
7-
"version": "1.3.6",
7+
"version": "1.3.7",
88
"engines": {
99
"vscode": "^1.73.0"
1010
},
@@ -74,17 +74,17 @@
7474
"default": ""
7575
},
7676
"coder.tlsCertFile": {
77-
"markdownDescription": "Path to file for TLS client cert. When specified, token authorization will be skipped.",
77+
"markdownDescription": "Path to file for TLS client cert. When specified, token authorization will be skipped. `http.proxySupport` must be set to `on` or `off`, otherwise VS Code will override the proxy agent set by the plugin.",
7878
"type": "string",
7979
"default": ""
8080
},
8181
"coder.tlsKeyFile": {
82-
"markdownDescription": "Path to file for TLS client key. When specified, token authorization will be skipped.",
82+
"markdownDescription": "Path to file for TLS client key. When specified, token authorization will be skipped. `http.proxySupport` must be set to `on` or `off`, otherwise VS Code will override the proxy agent set by the plugin.",
8383
"type": "string",
8484
"default": ""
8585
},
8686
"coder.tlsCaFile": {
87-
"markdownDescription": "Path to file for TLS certificate authority.",
87+
"markdownDescription": "Path to file for TLS certificate authority. `http.proxySupport` must be set to `on` or `off`, otherwise VS Code will override the proxy agent set by the plugin.",
8888
"type": "string",
8989
"default": ""
9090
},

0 commit comments

Comments
 (0)