Skip to content

Commit 6e54bc7

Browse files
Merge branch 'main' into patch-20
2 parents 606293f + 0eed0e7 commit 6e54bc7

File tree

3 files changed

+18
-5
lines changed

3 files changed

+18
-5
lines changed

replacements.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"CLI_VERSION": "2.6.10"
2+
"CLI_VERSION": "2.7.0"
33
}

runtime/reference/cli/_commands_reference.json

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"subcommands": [
2525
{
2626
"name": "run",
27-
"about": "Run a JavaScript or TypeScript program, or a task or script.\n\nBy default all programs are run in sandbox without access to disk, network or ability to spawn subprocesses.\n \u001b[38;5;245mdeno run https://examples.deno.land/hello-world.ts\u001b[39m\n\nGrant permission to read from disk and listen to network:\n \u001b[38;5;245mdeno run --allow-read --allow-net jsr:@std/http/file-server\u001b[39m\n\nGrant permission to read allow-listed files from disk:\n \u001b[38;5;245mdeno run --allow-read=/etc jsr:@std/http/file-server\u001b[39m\n\nGrant all permissions:\n \u001b[38;5;245mdeno run -A jsr:@std/http/file-server\u001b[39m\n\nSpecifying the filename '-' to read the file from stdin.\n \u001b[38;5;245mcurl https://examples.deno.land/hello-world.ts | deno run -\u001b[39m\n\n\u001b[33mRead more:\u001b[39m \u001b[36mhttps://docs.deno.com/go/run\u001b[39m",
27+
"about": "Run a JavaScript or TypeScript program, or a task or script.\n\nBy default all programs are run in sandbox without access to disk, network or ability to spawn subprocesses.\n \u001b[38;5;245mdeno run https://docs.deno.com/hello_world.ts\u001b[39m\n\nGrant permission to read from disk and listen to network:\n \u001b[38;5;245mdeno run --allow-read --allow-net jsr:@std/http/file-server\u001b[39m\n\nGrant permission to read allow-listed files from disk:\n \u001b[38;5;245mdeno run --allow-read=/etc jsr:@std/http/file-server\u001b[39m\n\nGrant all permissions:\n \u001b[38;5;245mdeno run -A jsr:@std/http/file-server\u001b[39m\n\nSpecifying the filename '-' to read the file from stdin.\n \u001b[38;5;245mcurl https://docs.deno.com/hello_world.ts | deno run -\u001b[39m\n\n\u001b[33mRead more:\u001b[39m \u001b[36mhttps://docs.deno.com/go/run\u001b[39m",
2828
"args": [
2929
{
3030
"name": "unstable-bare-node-builtins",
@@ -5064,6 +5064,15 @@
50645064
"help_heading": null,
50655065
"usage": "--force"
50665066
},
5067+
{
5068+
"name": "compile",
5069+
"short": null,
5070+
"long": "compile",
5071+
"required": false,
5072+
"help": "Install the script as a compiled executable",
5073+
"help_heading": null,
5074+
"usage": "--compile"
5075+
},
50675076
{
50685077
"name": "global",
50695078
"short": "g",
@@ -8224,6 +8233,11 @@
82248233
"description": "URL to use for the npm registry.",
82258234
"example": null
82268235
},
8236+
{
8237+
"name": "SSLKEYLOGFILE",
8238+
"description": "Write TLS session keys to the specified file in NSS Key Log format\nfor debugging encrypted traffic with tools like Wireshark.",
8239+
"example": null
8240+
},
82278241
{
82288242
"name": "DENO_TRUST_PROXY_HEADERS",
82298243
"description": "If specified, removes X-deno-client-address header when serving HTTP.",

runtime/reference/ts_config_migration.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -164,17 +164,16 @@ and any other notes about that option:
164164
| `noImplicitThis` | `true` | |
165165
| `noImplicitUseStrict` | `true` | |
166166
| `noStrictGenericChecks` | `false` | |
167+
| `noUncheckedIndexedAccess` | `false` | |
167168
| `noUnusedLocals` | `false` | |
168169
| `noUnusedParameters` | `false` | |
169-
| `noUncheckedIndexedAccess` | `false` | |
170170
| `paths` | `{}` | |
171171
| `rootDirs` | `null` | |
172172
| `strict` | `true` | |
173-
| `strict` | `true` | |
174173
| `strictBindCallApply` | `true` | |
175174
| `strictFunctionTypes` | `true` | |
176-
| `strictPropertyInitialization` | `true` | |
177175
| `strictNullChecks` | `true` | |
176+
| `strictPropertyInitialization` | `true` | |
178177
| `suppressExcessPropertyErrors` | `false` | |
179178
| `suppressImplicitAnyIndexErrors` | `false` | |
180179
| `useUnknownInCatchVariables` | `true` | |

0 commit comments

Comments
 (0)