News | Deno v1.3.0 released

Deno released the v1.3.0 version on 2020.08.13. Chinese users can install Deno v1.3.0 using the following command:

Linux / macOS :

curl -fsSL https://x.deno.js.cn/install.sh | sh -s v1.3.0

Windows:

$v="1.3.0"; iwr https://x.deno.js.cn/install.ps1 -useb | iex

Changes in Deno CLI:

  • Feature: Add "--no-check" option to deno install command (#6948)

  • Feature: Add "--ignore" option to deno lint command (#6934)

  • Feature: Add "--json" option to deno lint command (#6940)

  • Feature: Add "--reload" option to deno bundle command (#6996)

  • Feature: Add "--reload" option to deno info command (#7009)

  • Characteristics: FileReader API (# 6673)

  • 特性: Handle imports in deno doc (#6987)

  • Characteristics: Stabilize Deno.mainModule (# 6993)

  • 特性: Support file URLs in Deno.run for executable (#6994)

  • 修复: console.log should see color codes when grouping occurs (#7000)

  • 修复: URLSearchParams.toString() behaviour is different from browsers (#7017)

  • 修复: Remove @ts-expect-error directives (#7024)

  • 修复(unstable): Add missing globals to diagnostics (#6988)

  • 重构(doc): Remove detailed / summary distinction (#6818)

  • 核心: Memory limits & callbacks (#6914)

  • Upgrade: TypeScript to 3.9.7 (#7036)

  • Upgrade: Rust crates (#7034, #7040)

Changes in Deno Standard Modules v0.65.0:

  • 特性(std/http): Add TLS serve abilities to file_server (#6962)

  • 特性(std/http): Add --no-dir-listing flag to file_server (#6808)

  • Features (std/node): Add util.inspect (#6833)

  • 修复: Make std work with isolatedModules (#7016)

related articles

Guess you like

Origin blog.csdn.net/vCa54Lu0KV27w8ZZBd/article/details/108015924