mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 20:38:55 +00:00
v1.4.2
This commit is contained in:
parent
3204092732
commit
dacb340f8f
8
Cargo.lock
generated
8
Cargo.lock
generated
@ -393,7 +393,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno"
|
||||
version = "1.4.1"
|
||||
version = "1.4.2"
|
||||
dependencies = [
|
||||
"atty",
|
||||
"base64 0.12.3",
|
||||
@ -449,7 +449,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno_core"
|
||||
version = "0.58.0"
|
||||
version = "0.59.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"futures",
|
||||
@ -483,7 +483,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno_fetch"
|
||||
version = "0.1.0"
|
||||
version = "0.2.0"
|
||||
dependencies = [
|
||||
"deno_core",
|
||||
"reqwest",
|
||||
@ -508,7 +508,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno_web"
|
||||
version = "0.9.0"
|
||||
version = "0.10.0"
|
||||
dependencies = [
|
||||
"deno_core",
|
||||
"futures",
|
||||
|
34
Releases.md
34
Releases.md
@ -6,6 +6,40 @@ https://github.com/denoland/deno/releases
|
||||
We also have one-line install commands at
|
||||
https://github.com/denoland/deno_install
|
||||
|
||||
### 1.4.2 / 2020.09.25
|
||||
|
||||
- fix: Better formatting in console (#7642, #7641, #7553)
|
||||
- fix: Change log level to which prefix added (#7582)
|
||||
- fix: Change the Console class declaration to an interface (#7646)
|
||||
- fix: Clearing timers race condition (#7617)
|
||||
- fix: customInspect works on functions (#7670)
|
||||
- fix: Ignore fileExists in tsc host (#7635)
|
||||
- fix: Make --unstable a global flag (#7585)
|
||||
- fix: Make --watch and --inspect conflicting args (#7610)
|
||||
- fix: Make some web API constructors illegal at runtime (#7468)
|
||||
- fix: Replaced legacy chrome-devtools:// scheme. (#7659)
|
||||
- fix: Response.arrayBuffer() doesn't return promise (#7618)
|
||||
- fix: Update supported text encodings (#7668)
|
||||
- fix: Use class instead of var+interface in d.ts #7514
|
||||
- fix(coverage): print lines with no coverage to stdout (#7640)
|
||||
- fix(fmt,lint): do not print number of checked files when `--quiet` is enabled
|
||||
(#7579)
|
||||
- fix(info): add --importmap flag (#7424)
|
||||
- fix(installer): Don't reload by default (#7596)
|
||||
- fix(repl): interpret object literals as expressions (#7591)
|
||||
- fix(watch): watch importmap file for changes (#7580)
|
||||
- refactor(core): support error stack, remove js_check (#7629, #7636)
|
||||
- refactor(coverage): Harden coverage collection (#7584, #7616, #7577)
|
||||
- upgrade: TypeScript to 4.0.3 (#7637)
|
||||
- example(core): Add hello world example (#7611)
|
||||
|
||||
Changes in std version 0.71.0:
|
||||
|
||||
- feat(std/node): implement getSystemErrorName() (#7624)
|
||||
- fix(std/datetime): 12 and 24 support (#7661)
|
||||
- fix(std/fs): mark createWalkEntry(Sync) as internal (#7643)
|
||||
- chore(std/hash): update crates (#7631)
|
||||
|
||||
### 1.4.1 / 2020.09.18
|
||||
|
||||
- fix(cli/console): escape special characters in strings and property names
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
[package]
|
||||
name = "deno"
|
||||
version = "1.4.1"
|
||||
version = "1.4.2"
|
||||
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.58.0" }
|
||||
deno_web = { path = "../op_crates/web", version = "0.9.0" }
|
||||
deno_fetch = { path = "../op_crates/fetch", version = "0.1.0" }
|
||||
deno_core = { path = "../core", version = "0.59.0" }
|
||||
deno_web = { path = "../op_crates/web", version = "0.10.0" }
|
||||
deno_fetch = { path = "../op_crates/fetch", version = "0.2.0" }
|
||||
|
||||
[target.'cfg(windows)'.build-dependencies]
|
||||
winres = "0.1.11"
|
||||
winapi = "0.3.9"
|
||||
|
||||
[dependencies]
|
||||
deno_core = { path = "../core", version = "0.58.0" }
|
||||
deno_core = { path = "../core", version = "0.59.0" }
|
||||
deno_doc = "0.1.9"
|
||||
deno_lint = { version = "0.2.0", features = ["json"] }
|
||||
deno_web = { path = "../op_crates/web", version = "0.9.0" }
|
||||
deno_fetch = { path = "../op_crates/fetch", version = "0.1.0" }
|
||||
deno_web = { path = "../op_crates/web", version = "0.10.0" }
|
||||
deno_fetch = { path = "../op_crates/fetch", version = "0.2.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.58.0"
|
||||
version = "0.59.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.1.0"
|
||||
version = "0.2.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.58.0", path = "../../core" }
|
||||
deno_core = { version = "0.59.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.9.0"
|
||||
version = "0.10.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.58.0", path = "../../core" }
|
||||
deno_core = { version = "0.59.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.70.0";
|
||||
export const VERSION = "0.71.0";
|
||||
|
Loading…
Reference in New Issue
Block a user