mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 20:38:55 +00:00
v1.4.1
This commit is contained in:
parent
f44522eac9
commit
d6f3de6feb
6
Cargo.lock
generated
6
Cargo.lock
generated
@ -393,7 +393,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno"
|
||||
version = "1.4.0"
|
||||
version = "1.4.1"
|
||||
dependencies = [
|
||||
"atty",
|
||||
"base64 0.12.3",
|
||||
@ -451,7 +451,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno_core"
|
||||
version = "0.57.0"
|
||||
version = "0.58.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"futures",
|
||||
@ -510,7 +510,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno_web"
|
||||
version = "0.8.0"
|
||||
version = "0.9.0"
|
||||
dependencies = [
|
||||
"deno_core",
|
||||
"futures",
|
||||
|
29
Releases.md
29
Releases.md
@ -6,6 +6,35 @@ https://github.com/denoland/deno/releases
|
||||
We also have one-line install commands at
|
||||
https://github.com/denoland/deno_install
|
||||
|
||||
### 1.4.1 / 2020.09.18
|
||||
|
||||
- fix(cli/console): escape special characters in strings and property names
|
||||
(#7546, #7533, #7550)
|
||||
- fix(cli/fmt): canonicalize files in current dir (#7508)
|
||||
- fix(cli/fmt): make fmt output more readable (#7534)
|
||||
- fix(cli/install): revert "bundle before installation" (#7522)
|
||||
- fix(cli/js): disable URL.createObjectUrl (#7543)
|
||||
- fix(cli/js): use Buffer.writeSync in MultipartBuilder (#7542)
|
||||
- fix(cli/repl): disable rustyline logs (#7535)
|
||||
- fix(cli/repl): format evaluation results with the object specifier (#7561)
|
||||
- fix(cli/bundle,eval,repl): add missing flags (#7414)
|
||||
- refactor(cli): move fetch() implementation to op_crates/fetch (#7524, #7529)
|
||||
- refactor(cli): move FileReader and URL to op_crates/web (#7554, #7544)
|
||||
- refactor(cli): move op_resources and op_close to deno_core (#7539)
|
||||
- refactor(cli/info,unstable): deno info --json output (#7417)
|
||||
- refactor(cli/js): simplify global properties (#7502)
|
||||
- refactor(cli/js): use Symbol.for instead of Symbol (#7537)
|
||||
- refactor(core): remove JsRuntime::set_js_error_create_fn (#7478)
|
||||
- refactor(core): use the 'anyhow' crate instead of ErrBox (#7476)
|
||||
- upgrade: rust crates (#7454)
|
||||
- benchmark: add no_check_hello benchmark (#7458)
|
||||
|
||||
Changes in std version 0.70.0:
|
||||
|
||||
- feat(std/node): add AssertionError class (#7210)
|
||||
- fix(std/datetime): timezone bug (#7466)
|
||||
- fix(std/testing): assertion diff color (#7499)
|
||||
|
||||
### 1.4.0 / 2020.09.13
|
||||
|
||||
- feat: Implement WebSocket API (#7051, #7437)
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
[package]
|
||||
name = "deno"
|
||||
version = "1.4.0"
|
||||
version = "1.4.1"
|
||||
license = "MIT"
|
||||
authors = ["the Deno authors"]
|
||||
edition = "2018"
|
||||
@ -20,8 +20,8 @@ harness = false
|
||||
path = "./bench/main.rs"
|
||||
|
||||
[build-dependencies]
|
||||
deno_core = { path = "../core", version = "0.57.0" }
|
||||
deno_web = { path = "../op_crates/web", version = "0.8.0" }
|
||||
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" }
|
||||
|
||||
[target.'cfg(windows)'.build-dependencies]
|
||||
@ -29,10 +29,10 @@ winres = "0.1.11"
|
||||
winapi = "0.3.9"
|
||||
|
||||
[dependencies]
|
||||
deno_core = { path = "../core", version = "0.57.0" }
|
||||
deno_core = { path = "../core", version = "0.58.0" }
|
||||
deno_doc = "0.1.9"
|
||||
deno_lint = { version = "0.2.0", features = ["json"] }
|
||||
deno_web = { path = "../op_crates/web", version = "0.8.0" }
|
||||
deno_web = { path = "../op_crates/web", version = "0.9.0" }
|
||||
deno_fetch = { path = "../op_crates/fetch", version = "0.1.0" }
|
||||
|
||||
atty = "0.2.14"
|
||||
@ -71,7 +71,7 @@ tokio-rustls = "0.14.1"
|
||||
# Keep in-sync with warp.
|
||||
tokio-tungstenite = "0.11.0"
|
||||
webpki = "0.21.3"
|
||||
webpki-roots = "=0.19.0" # Pinned to v0.19.0 to match 'reqwest'.
|
||||
webpki-roots = "=0.19.0" # Pinned to v0.19.0 to match 'reqwest'.
|
||||
walkdir = "2.3.1"
|
||||
warp = { version = "0.2.5", features = ["tls"] }
|
||||
semver-parser = "0.9.0"
|
||||
|
@ -1,7 +1,7 @@
|
||||
# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
||||
[package]
|
||||
name = "deno_core"
|
||||
version = "0.57.0"
|
||||
version = "0.58.0"
|
||||
edition = "2018"
|
||||
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
|
||||
authors = ["the Deno authors"]
|
||||
|
@ -14,6 +14,6 @@ repository = "https://github.com/denoland/deno"
|
||||
path = "lib.rs"
|
||||
|
||||
[dependencies]
|
||||
deno_core = { version = "0.57.0", path = "../../core" }
|
||||
deno_core = { version = "0.58.0", path = "../../core" }
|
||||
reqwest = { version = "0.10.8", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] }
|
||||
serde = { version = "1.0.116", features = ["derive"] }
|
||||
serde = { version = "1.0.116", features = ["derive"] }
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
[package]
|
||||
name = "deno_web"
|
||||
version = "0.8.0"
|
||||
version = "0.9.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.57.0", path = "../../core" }
|
||||
deno_core = { version = "0.58.0", path = "../../core" }
|
||||
idna = "0.2.0"
|
||||
serde = { version = "1.0.116", features = ["derive"] }
|
||||
|
||||
|
@ -4,4 +4,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.69.0";
|
||||
export const VERSION = "0.70.0";
|
||||
|
Loading…
Reference in New Issue
Block a user