File tree 6 files changed +13
-15
lines changed
6 files changed +13
-15
lines changed Original file line number Diff line number Diff line change @@ -428,7 +428,7 @@ jobs:
428
428
uses : actions/checkout@v2
429
429
- name : Run Trivy vulnerability scanner in repo mode
430
430
# Commit SHA for v0.0.17
431
- uses : aquasecurity/trivy-action@2a2157eb22c08c9a1fac99263430307b8d1bc7a2
431
+ uses : aquasecurity/trivy-action@0769bbf0d2a77b3c15b3b57fbcdd2edd25a1c3f0
432
432
with :
433
433
scan-type : " fs"
434
434
scan-ref : " ."
Original file line number Diff line number Diff line change @@ -56,10 +56,6 @@ code-server.
56
56
We also have an in-depth [ setup and
57
57
configuration] ( https://coder.com/docs/code-server/latest/guide ) guide.
58
58
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
-
63
59
## Questions?
64
60
65
61
See answers to [ frequently asked
Original file line number Diff line number Diff line change 1
1
# code-server --link
2
2
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
4
6
for accessing your IDE out of the box.
5
7
6
8
``` console
Original file line number Diff line number Diff line change 60
60
"eslint-plugin-import" : " ^2.18.2" ,
61
61
"eslint-plugin-prettier" : " ^4.0.0" ,
62
62
"prettier" : " ^2.2.1" ,
63
- "prettier-plugin-sh" : " ^0.7.1 " ,
63
+ "prettier-plugin-sh" : " ^0.8.0 " ,
64
64
"shellcheck" : " ^1.0.0" ,
65
65
"stylelint" : " ^13.0.0" ,
66
66
"stylelint-config-recommended" : " ^5.0.0" ,
Original file line number Diff line number Diff line change @@ -104,9 +104,9 @@ interface Option<T> {
104
104
description ?: string
105
105
106
106
/**
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.
108
108
*/
109
- beta ?: boolean
109
+ deprecated ?: boolean
110
110
}
111
111
112
112
type OptionType < T > = T extends boolean
@@ -230,7 +230,7 @@ const options: Options<Required<UserProvidedArgs>> = {
230
230
https://hostname-username.cdr.co at which you can easily access your code-server instance.
231
231
Authorization is done via GitHub.
232
232
` ,
233
- beta : true ,
233
+ deprecated : true ,
234
234
} ,
235
235
}
236
236
@@ -253,7 +253,7 @@ export const optionDescriptions = (): string[] => {
253
253
. map ( ( line , i ) => {
254
254
line = line . trim ( )
255
255
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
257
257
}
258
258
return " " . repeat ( widths . long + widths . short + 6 ) + line
259
259
} )
Original file line number Diff line number Diff line change @@ -3441,10 +3441,10 @@ prettier-linter-helpers@^1.0.0:
3441
3441
dependencies :
3442
3442
fast-diff "^1.1.2"
3443
3443
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 ==
3448
3448
dependencies :
3449
3449
mvdan-sh "^0.5.0"
3450
3450
You can’t perform that action at this time.
0 commit comments