mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 20:38:55 +00:00
v0.17.0
This commit is contained in:
parent
5c7c876a71
commit
82588ec09c
20
Cargo.lock
generated
20
Cargo.lock
generated
@ -253,7 +253,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno"
|
||||
version = "0.16.0"
|
||||
version = "0.17.0"
|
||||
dependencies = [
|
||||
"futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
@ -266,14 +266,14 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno_cli"
|
||||
version = "0.16.0"
|
||||
version = "0.17.0"
|
||||
dependencies = [
|
||||
"ansi_term 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"deno 0.16.0",
|
||||
"deno_cli_snapshots 0.0.3",
|
||||
"deno_typescript 0.0.3",
|
||||
"deno 0.17.0",
|
||||
"deno_cli_snapshots 0.17.0",
|
||||
"deno_typescript 0.17.0",
|
||||
"dirs 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"fwdansi 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
@ -312,17 +312,17 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno_cli_snapshots"
|
||||
version = "0.0.3"
|
||||
version = "0.17.0"
|
||||
dependencies = [
|
||||
"deno 0.16.0",
|
||||
"deno_typescript 0.0.3",
|
||||
"deno 0.17.0",
|
||||
"deno_typescript 0.17.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "deno_typescript"
|
||||
version = "0.0.3"
|
||||
version = "0.17.0"
|
||||
dependencies = [
|
||||
"deno 0.16.0",
|
||||
"deno 0.17.0",
|
||||
"serde 1.0.99 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
]
|
||||
|
28
Releases.md
28
Releases.md
@ -6,6 +6,34 @@ https://github.com/denoland/deno/releases
|
||||
We also have one-line install commands at
|
||||
https://github.com/denoland/deno_install
|
||||
|
||||
### v0.17.0 / 2019.09.04
|
||||
|
||||
In deno:
|
||||
|
||||
- feat: Add window.queueMicrotask (#2844)
|
||||
- feat: Support HTTP proxies in fetch (#2822)
|
||||
- feat: Support `_` and `_error` in REPL (#2845, #2843)
|
||||
- feat: add statusText for fetch (#2851)
|
||||
- feat: implement Addr interface (#2821)
|
||||
- fix: Improve error stacks for async ops (#2820)
|
||||
- fix: add console.dirxml (#2835)
|
||||
- fix: do not export `isConsoleInstance` (#2850)
|
||||
- fix: set/clearTimeout's params should not be bigint (#2834, #2838)
|
||||
- fix: shared queue requires aligned buffer (#2816)
|
||||
- refactor: Remove Node build dependency and change how internal V8 snapshots
|
||||
are built (#2825, #2827, #2826, #2826)
|
||||
- refactor: Remove flatbuffers (#2818, #2819, #2817, #2812, #2815, #2799)
|
||||
- regression: Introduce regression in fetch's Request/Response stream API to
|
||||
support larger refactor (#2826)
|
||||
|
||||
In deno_std:
|
||||
|
||||
- fix: better paths handling in test runner (denoland/deno_std#574)
|
||||
- fix: avoid prototype builtin `hasOwnProperty` (denoland/deno_std#577)
|
||||
- fix: boolean regexp (denoland/deno_std#582)
|
||||
- fix: printf should use padEnd and padStart (denoland/deno_std#583)
|
||||
- fix: ws should use crypto getRandomValues (denoland/deno_std#584)
|
||||
|
||||
### v0.16.0 / 2019.08.22
|
||||
|
||||
In deno:
|
||||
|
@ -12,7 +12,7 @@ path = "main.rs"
|
||||
|
||||
[package]
|
||||
name = "deno_cli"
|
||||
version = "0.16.0"
|
||||
version = "0.17.0"
|
||||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "deno_cli_snapshots"
|
||||
version = "0.0.3"
|
||||
version = "0.17.0"
|
||||
license = "MIT"
|
||||
authors = ["Ryan Dahl <ry@tinyclouds.org>"]
|
||||
edition = "2018"
|
||||
@ -14,5 +14,5 @@ path = "lib.rs"
|
||||
deno = { path = "../core" }
|
||||
|
||||
[build-dependencies]
|
||||
deno_typescript = { path = "../deno_typescript", version = "0.0.3" }
|
||||
deno_typescript = { path = "../deno_typescript" }
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
[package]
|
||||
name = "deno"
|
||||
version = "0.16.0"
|
||||
version = "0.17.0"
|
||||
edition = "2018"
|
||||
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
|
||||
authors = ["The deno authors <bertbelder@nodejs.org>"]
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "deno_typescript"
|
||||
version = "0.0.3"
|
||||
version = "0.17.0"
|
||||
license = "MIT"
|
||||
description = "To compile TypeScript to a snapshot during build.rs"
|
||||
repository = "https://github.com/ry/deno_typescript"
|
||||
|
Loading…
Reference in New Issue
Block a user