0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-03 17:34:47 -05:00
This commit is contained in:
Bartek Iwańczuk 2020-10-10 12:30:55 +02:00 committed by GitHub
parent 08bb8b3d53
commit 9e9ec9784a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 24 additions and 16 deletions

8
Cargo.lock generated
View file

@ -393,7 +393,7 @@ dependencies = [
[[package]] [[package]]
name = "deno" name = "deno"
version = "1.4.5" version = "1.4.6"
dependencies = [ dependencies = [
"atty", "atty",
"base64 0.12.3", "base64 0.12.3",
@ -450,7 +450,7 @@ dependencies = [
[[package]] [[package]]
name = "deno_core" name = "deno_core"
version = "0.62.0" version = "0.63.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"futures", "futures",
@ -485,7 +485,7 @@ dependencies = [
[[package]] [[package]]
name = "deno_fetch" name = "deno_fetch"
version = "0.6.0" version = "0.7.0"
dependencies = [ dependencies = [
"deno_core", "deno_core",
"reqwest", "reqwest",
@ -510,7 +510,7 @@ dependencies = [
[[package]] [[package]]
name = "deno_web" name = "deno_web"
version = "0.14.0" version = "0.15.0"
dependencies = [ dependencies = [
"deno_core", "deno_core",
"futures", "futures",

View file

@ -6,6 +6,14 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at: We also have one-line install commands at:
https://github.com/denoland/deno_install https://github.com/denoland/deno_install
### 1.4.6 / 2020.10.10
- fix: 100% CPU idling problem by reverting #7672 (#7911)
- fix(op_crate/web): add padding on URLSearchParam (#7905)
- fix(op_crates/fetch): Stringify and parse Request URLs (#7838)
- refactor(core): Implement Serialize for ModuleSpecifier (#7900)
- upgrade: Rust 1.47.0 (#7886)
### 1.4.5 / 2020.10.08 ### 1.4.5 / 2020.10.08
- feat(unstable): Revert "enable importsNotUsedAsValues by default #7413" - feat(unstable): Revert "enable importsNotUsedAsValues by default #7413"

View file

@ -2,7 +2,7 @@
[package] [package]
name = "deno" name = "deno"
version = "1.4.5" version = "1.4.6"
license = "MIT" license = "MIT"
authors = ["the Deno authors"] authors = ["the Deno authors"]
edition = "2018" edition = "2018"
@ -20,20 +20,20 @@ harness = false
path = "./bench/main.rs" path = "./bench/main.rs"
[build-dependencies] [build-dependencies]
deno_core = { path = "../core", version = "0.62.0" } deno_core = { path = "../core", version = "0.63.0" }
deno_web = { path = "../op_crates/web", version = "0.14.0" } deno_web = { path = "../op_crates/web", version = "0.15.0" }
deno_fetch = { path = "../op_crates/fetch", version = "0.6.0" } deno_fetch = { path = "../op_crates/fetch", version = "0.7.0" }
[target.'cfg(windows)'.build-dependencies] [target.'cfg(windows)'.build-dependencies]
winres = "0.1.11" winres = "0.1.11"
winapi = "0.3.9" winapi = "0.3.9"
[dependencies] [dependencies]
deno_core = { path = "../core", version = "0.62.0" } deno_core = { path = "../core", version = "0.63.0" }
deno_doc = "0.1.11" deno_doc = "0.1.11"
deno_lint = { version = "0.2.3", features = ["json"] } deno_lint = { version = "0.2.3", features = ["json"] }
deno_web = { path = "../op_crates/web", version = "0.14.0" } deno_web = { path = "../op_crates/web", version = "0.15.0" }
deno_fetch = { path = "../op_crates/fetch", version = "0.6.0" } deno_fetch = { path = "../op_crates/fetch", version = "0.7.0" }
atty = "0.2.14" atty = "0.2.14"
base64 = "0.12.3" base64 = "0.12.3"

View file

@ -1,7 +1,7 @@
# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. # Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
[package] [package]
name = "deno_core" name = "deno_core"
version = "0.62.0" version = "0.63.0"
edition = "2018" edition = "2018"
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio" description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
authors = ["the Deno authors"] authors = ["the Deno authors"]

View file

@ -2,7 +2,7 @@
[package] [package]
name = "deno_fetch" name = "deno_fetch"
version = "0.6.0" version = "0.7.0"
edition = "2018" edition = "2018"
description = "provides fetch Web API to deno_core" description = "provides fetch Web API to deno_core"
authors = ["the Deno authors"] authors = ["the Deno authors"]
@ -14,6 +14,6 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs" path = "lib.rs"
[dependencies] [dependencies]
deno_core = { version = "0.62.0", path = "../../core" } deno_core = { version = "0.63.0", path = "../../core" }
reqwest = { version = "0.10.8", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] } 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"] }

View file

@ -2,7 +2,7 @@
[package] [package]
name = "deno_web" name = "deno_web"
version = "0.14.0" version = "0.15.0"
edition = "2018" edition = "2018"
description = "Collection of Web APIs" description = "Collection of Web APIs"
authors = ["the Deno authors"] authors = ["the Deno authors"]
@ -14,7 +14,7 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs" path = "lib.rs"
[dependencies] [dependencies]
deno_core = { version = "0.62.0", path = "../../core" } deno_core = { version = "0.63.0", path = "../../core" }
idna = "0.2.0" idna = "0.2.0"
serde = { version = "1.0.116", features = ["derive"] } serde = { version = "1.0.116", features = ["derive"] }