Deno 1.3.1 发布,基于 V8 的 TypeScript 运行时
Deno 1.3.1 现已发布,该版本更新内容如下:
- 修复:解析文件 URL 时允许 isolated“%”(#7108)
- 修复:Blob.arrayBuffer 返回 Uint8Array(#7086)
- 修复:带有破折号的 CLI 参数解析(#7039)
- 修复:从任何有效的 bodySource 创建 body 流(#7128)
- 修复:细化权限请求/撤销(#7074)
- 修复:URLSearchParams 中的多个空格的处理(#7068)
- core:启用 WebAssembly.instantiateStreaming(#7043)
- core:添加缺少的 HeapLimits 导出(#7047)
- upgrade:swc_ecmascript、deno_lintdprint(#7098)
Changes in std version 0.66.0:
- BREAKING(std/datetime):删除 currentDayOfYear(#7059)
- feat(std/node):添加 basic asserts(#7091)
- feat(std/datetime):泛化解析器,添加 formatter(#6619)
- fix(std/node):Misnamed assert exports(#7123)
- fix(std/encoding/toml):阻止 TOML 解析器检测字符串中的数字。(#7064)
- fix(std/encoding/csv):改进 ParseError 上的错误消息(#7057)
Install / Upgrade
Using Deno:
deno upgrade --version 1.3.1
With Shell:
curl -fsSL https://deno.land/x/install/install.sh | sh -s v1.3.1
With PowerShell:
$v="1.3.1"; iwr https://deno.land/x/install/install.ps1 -useb | iex