mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 20:38:55 +00:00
v1.4.5
This commit is contained in:
parent
9d71b0ef5b
commit
b5e4b63a88
8
Cargo.lock
generated
8
Cargo.lock
generated
@ -393,7 +393,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno"
|
||||
version = "1.4.4"
|
||||
version = "1.4.5"
|
||||
dependencies = [
|
||||
"atty",
|
||||
"base64 0.12.3",
|
||||
@ -450,7 +450,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno_core"
|
||||
version = "0.61.0"
|
||||
version = "0.62.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"futures",
|
||||
@ -484,7 +484,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno_fetch"
|
||||
version = "0.5.0"
|
||||
version = "0.6.0"
|
||||
dependencies = [
|
||||
"deno_core",
|
||||
"reqwest",
|
||||
@ -509,7 +509,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno_web"
|
||||
version = "0.13.0"
|
||||
version = "0.14.0"
|
||||
dependencies = [
|
||||
"deno_core",
|
||||
"futures",
|
||||
|
27
Releases.md
27
Releases.md
@ -8,6 +8,33 @@ https://github.com/denoland/deno_install
|
||||
|
||||
### 1.4.4 / 2020.10.03
|
||||
|
||||
- feat(unstable): Revert "enable importsNotUsedAsValues by default #7413"
|
||||
(#7800)
|
||||
- fix: Update worker types to better align to lib.dom.d.ts (#7843)
|
||||
- fix(cli/ops/fs): Don't force Windows paths separate paths with forward slash
|
||||
(#7833)
|
||||
- fix(cli/rt/console): Don't require a prototype to detect a class instance
|
||||
(#7869)
|
||||
- fix(cli/rt/error_stack): Improve message line formatting (#7860)
|
||||
- fix(core): Handle unregistered errors in core better (#7817)
|
||||
- fix(core): Module execution with top level await (#7672)
|
||||
- perf(cli/console): Don't add redundant ANSI codes (#7823)
|
||||
- refactor(cli): Remove TextDocument (#7850)
|
||||
- refactor(cli/inspector): Use &str for post_message (#7851)
|
||||
- refactor(cli/repl): Tightly integrate event loop (#7834)
|
||||
- refactor(core): Cleanup JsRuntime (#7853, #7855, #7825, #7846)
|
||||
- upgrade: deno_doc, deno_lint, dprint, swc (#7862)
|
||||
- upgrade: rusty_v8 0.11.0, V8 8.7.220.3 (#7859)
|
||||
|
||||
Changes in std version 0.74.0:
|
||||
|
||||
- chore(std/http): Rename http_bench.ts -> bench.ts (#7509)
|
||||
- feat(std/node/fs): Adding readdir, rename, and some others (#7666)
|
||||
- fix(std/node/fs): Allow appendFileSync to accept Uint8Array as type for data
|
||||
(#7835)
|
||||
|
||||
### 1.4.4 / 2020.10.03
|
||||
|
||||
- fix(cli): Update type definitions to align to TS dom (#7791)
|
||||
- fix(cli/repl): Fix hot loop in REPL (#7804)
|
||||
- fix(cli/repl): Enable colors on inspected values (#7798)
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
[package]
|
||||
name = "deno"
|
||||
version = "1.4.4"
|
||||
version = "1.4.5"
|
||||
license = "MIT"
|
||||
authors = ["the Deno authors"]
|
||||
edition = "2018"
|
||||
@ -20,20 +20,20 @@ harness = false
|
||||
path = "./bench/main.rs"
|
||||
|
||||
[build-dependencies]
|
||||
deno_core = { path = "../core", version = "0.61.0" }
|
||||
deno_web = { path = "../op_crates/web", version = "0.13.0" }
|
||||
deno_fetch = { path = "../op_crates/fetch", version = "0.5.0" }
|
||||
deno_core = { path = "../core", version = "0.62.0" }
|
||||
deno_web = { path = "../op_crates/web", version = "0.14.0" }
|
||||
deno_fetch = { path = "../op_crates/fetch", version = "0.6.0" }
|
||||
|
||||
[target.'cfg(windows)'.build-dependencies]
|
||||
winres = "0.1.11"
|
||||
winapi = "0.3.9"
|
||||
|
||||
[dependencies]
|
||||
deno_core = { path = "../core", version = "0.61.0" }
|
||||
deno_core = { path = "../core", version = "0.62.0" }
|
||||
deno_doc = "0.1.11"
|
||||
deno_lint = { version = "0.2.3", features = ["json"] }
|
||||
deno_web = { path = "../op_crates/web", version = "0.13.0" }
|
||||
deno_fetch = { path = "../op_crates/fetch", version = "0.5.0" }
|
||||
deno_web = { path = "../op_crates/web", version = "0.14.0" }
|
||||
deno_fetch = { path = "../op_crates/fetch", version = "0.6.0" }
|
||||
|
||||
atty = "0.2.14"
|
||||
base64 = "0.12.3"
|
||||
|
@ -1,7 +1,7 @@
|
||||
# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
||||
[package]
|
||||
name = "deno_core"
|
||||
version = "0.61.0"
|
||||
version = "0.62.0"
|
||||
edition = "2018"
|
||||
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
|
||||
authors = ["the Deno authors"]
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
[package]
|
||||
name = "deno_fetch"
|
||||
version = "0.5.0"
|
||||
version = "0.6.0"
|
||||
edition = "2018"
|
||||
description = "provides fetch Web API to deno_core"
|
||||
authors = ["the Deno authors"]
|
||||
@ -14,6 +14,6 @@ repository = "https://github.com/denoland/deno"
|
||||
path = "lib.rs"
|
||||
|
||||
[dependencies]
|
||||
deno_core = { version = "0.61.0", path = "../../core" }
|
||||
deno_core = { version = "0.62.0", path = "../../core" }
|
||||
reqwest = { version = "0.10.8", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] }
|
||||
serde = { version = "1.0.116", features = ["derive"] }
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
[package]
|
||||
name = "deno_web"
|
||||
version = "0.13.0"
|
||||
version = "0.14.0"
|
||||
edition = "2018"
|
||||
description = "Collection of Web APIs"
|
||||
authors = ["the Deno authors"]
|
||||
@ -14,7 +14,7 @@ repository = "https://github.com/denoland/deno"
|
||||
path = "lib.rs"
|
||||
|
||||
[dependencies]
|
||||
deno_core = { version = "0.61.0", path = "../../core" }
|
||||
deno_core = { version = "0.62.0", path = "../../core" }
|
||||
idna = "0.2.0"
|
||||
serde = { version = "1.0.116", features = ["derive"] }
|
||||
|
||||
|
@ -5,4 +5,4 @@
|
||||
* the cli's API is stable. In the future when std becomes stable, likely we
|
||||
* will match versions with cli as we have in the past.
|
||||
*/
|
||||
export const VERSION = "0.73.0";
|
||||
export const VERSION = "0.74.0";
|
||||
|
Loading…
Reference in New Issue
Block a user