News | Deno v1.3.3 released

Deno released v1.3.3 on 2020.09.04. Chinese users can install Deno v1.3.3 using the following command:

Linux / macOS :

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

Windows:

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


Changes in Deno CLI:

  • Feature (unstable): Add  Deno.futime sum  Deno.futimeSync (#7266)

  • Feature (unstable): Run deno lint command to read content from stdin (#7263)

  • Fix: Don't expose  globalThis.__bootstrap (#7344)

  • 修复: Handle bad redirects more gracefully (#7342)

  • 修复: Handling of + character in URLSearchParams (#7314)

  • 修复: Regex for TS refereces and deno-types (#7333)

  • Fix: Modify the maximum number of thread pools to  31 (#7290)

  • Fix: Support missing features in  --no-check (#7289)

  • 修复: Use millisecond precision for Deno.futime and Deno.utime (#7299)

  • 修复: Use upstream type definitions for WebAssembly (#7216)

  • Refactoring: Compiler config in Rust (#7228  1 )

  • Refactoring: Support env_logger / RUST_LOG (#7142)

  • 重构: Support multiline diagnostics in linter (#7303)

  • 重构: Use dependency analyzer from SWC (#7334)

  • Upgrade: rust 1.46.0 (#7251)

  • Upgrade: swc, deno_doc, deno_lint, dprint (#7276, #7332)

Changes in Deno Standard Modules v0.68.0:

  • 重构(std/uuid): remove dependency on isString from std/node (#7273)

related articles

Guess you like

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