Skip to content

Commit 5e046f7

Browse files
authored
Merge branch 'main' into proxy-path-fixes
2 parents ba87ecc + 6a2740f commit 5e046f7

File tree

6 files changed

+13
-15
lines changed

6 files changed

+13
-15
lines changed

.github/workflows/ci.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ jobs:
428428
uses: actions/checkout@v2
429429
- name: Run Trivy vulnerability scanner in repo mode
430430
#Commit SHA for v0.0.17
431-
uses: aquasecurity/trivy-action@2a2157eb22c08c9a1fac99263430307b8d1bc7a2
431+
uses: aquasecurity/trivy-action@0769bbf0d2a77b3c15b3b57fbcdd2edd25a1c3f0
432432
with:
433433
scan-type: "fs"
434434
scan-ref: "."

docs/README.md

-4
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,6 @@ code-server.
5656
We also have an in-depth [setup and
5757
configuration](https://coder.com/docs/code-server/latest/guide) guide.
5858

59-
## TLS and authentication (beta)
60-
61-
To add TLS and authentication out of the box, use [code-server --link](https://coder.com/docs/code-server/latest/link).
62-
6359
## Questions?
6460

6561
See answers to [frequently asked

docs/link.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# code-server --link
22

3-
Run code-server with the beta flag `--link` and you'll get TLS, authentication, and a dedicated URL
3+
> Note: This feature is no longer recommended due to instability. Stay tuned for a revised version.
4+
5+
Run code-server with the flag `--link` and you'll get TLS, authentication, and a dedicated URL
46
for accessing your IDE out of the box.
57

68
```console

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
"eslint-plugin-import": "^2.18.2",
6161
"eslint-plugin-prettier": "^4.0.0",
6262
"prettier": "^2.2.1",
63-
"prettier-plugin-sh": "^0.7.1",
63+
"prettier-plugin-sh": "^0.8.0",
6464
"shellcheck": "^1.0.0",
6565
"stylelint": "^13.0.0",
6666
"stylelint-config-recommended": "^5.0.0",

src/node/cli.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,9 @@ interface Option<T> {
104104
description?: string
105105

106106
/**
107-
* If marked as beta, the option is marked as beta in help.
107+
* If marked as deprecated, the option is marked as deprecated in help.
108108
*/
109-
beta?: boolean
109+
deprecated?: boolean
110110
}
111111

112112
type OptionType<T> = T extends boolean
@@ -230,7 +230,7 @@ const options: Options<Required<UserProvidedArgs>> = {
230230
https://hostname-username.cdr.co at which you can easily access your code-server instance.
231231
Authorization is done via GitHub.
232232
`,
233-
beta: true,
233+
deprecated: true,
234234
},
235235
}
236236

@@ -253,7 +253,7 @@ export const optionDescriptions = (): string[] => {
253253
.map((line, i) => {
254254
line = line.trim()
255255
if (i === 0) {
256-
return " ".repeat(widths.long - k.length) + (v.beta ? "(beta) " : "") + line
256+
return " ".repeat(widths.long - k.length) + (v.deprecated ? "(deprecated) " : "") + line
257257
}
258258
return " ".repeat(widths.long + widths.short + 6) + line
259259
})

yarn.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -3441,10 +3441,10 @@ prettier-linter-helpers@^1.0.0:
34413441
dependencies:
34423442
fast-diff "^1.1.2"
34433443

3444-
prettier-plugin-sh@^0.7.1:
3445-
version "0.7.1"
3446-
resolved "https://registry.yarnpkg.com/prettier-plugin-sh/-/prettier-plugin-sh-0.7.1.tgz#a2d38de10e55919ea945a6e72c4815b16d6614ad"
3447-
integrity sha512-2MWRdGOSz0yf/z2kTKF1AqxDuH9MZD8faoDAz5ySGphxssi9oyM3Ys+jp7AfqsCXvGUDbRA4EJOlKS0yZKAW6w==
3444+
prettier-plugin-sh@^0.8.0:
3445+
version "0.8.1"
3446+
resolved "https://registry.yarnpkg.com/prettier-plugin-sh/-/prettier-plugin-sh-0.8.1.tgz#50698d95f2006c1b3eae570d430c3c1c05a31327"
3447+
integrity sha512-tz0g6y+ZaJF0PWaa1F7vhCv4nLgYYl2zYzYU4XJFD1McoY0oHI+l2osvXqv1s5yQdtjdlzKszN6VY7WTaw2Gqw==
34483448
dependencies:
34493449
mvdan-sh "^0.5.0"
34503450

0 commit comments

Comments
 (0)