mirror of
https://github.com/denoland/deno.git
synced 2024-12-24 08:09:08 -05:00
v1.1.1
This commit is contained in:
parent
cddaacc955
commit
bdf2d26ba1
6 changed files with 34 additions and 12 deletions
6
Cargo.lock
generated
6
Cargo.lock
generated
|
@ -416,7 +416,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "deno"
|
name = "deno"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"atty",
|
"atty",
|
||||||
"base64 0.12.2",
|
"base64 0.12.2",
|
||||||
|
@ -471,7 +471,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "deno_core"
|
name = "deno_core"
|
||||||
version = "0.48.0"
|
version = "0.48.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"derive_deref",
|
"derive_deref",
|
||||||
"downcast-rs",
|
"downcast-rs",
|
||||||
|
@ -502,7 +502,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "deno_typescript"
|
name = "deno_typescript"
|
||||||
version = "0.48.0"
|
version = "0.48.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"deno_core",
|
"deno_core",
|
||||||
"serde",
|
"serde",
|
||||||
|
|
22
Releases.md
22
Releases.md
|
@ -6,6 +6,28 @@ 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.1.1 / 2020.06.19
|
||||||
|
|
||||||
|
- fix: "deno test" should respect NO_COLOR=true (#6371)
|
||||||
|
- fix: Deno.bundle supports targets < ES2017 (#6346)
|
||||||
|
- fix: decode path properly on win32 (#6351)
|
||||||
|
- fix: improve failure message for deno upgrade (#6348)
|
||||||
|
- fix: apply http redirection limit for cached files (#6308)
|
||||||
|
- fix: JSX compilation bug and provide better error message (#6300)
|
||||||
|
- fix: DatagramConn.send (unstable) should return bytes sent (#6265, #6291)
|
||||||
|
- upgrade: v8 to 8.5.104, rusty_v8 0.5.1 (#6377)
|
||||||
|
- upgrade: crates (#6378)
|
||||||
|
|
||||||
|
Changes in std version 0.58.0:
|
||||||
|
|
||||||
|
- feat(std/log): expose logger name to LogRecord (#6316)
|
||||||
|
- fix(std/async): MuxAsyncIterator throws muxed errors (#6295)
|
||||||
|
- fix(std/io): BufWriter/StringWriter bug (#6247)
|
||||||
|
- fix(std/io): Use Deno.test in writers_test (#6273)
|
||||||
|
- fix(std/node): added tests for static methods of Buffer (#6276)
|
||||||
|
- fix(std/testing): assertEqual so that it handles URL objects (#6278)
|
||||||
|
- perf(std/hash): reimplement all hashes in WASM (#6292)
|
||||||
|
|
||||||
### 1.1.0 / 2020.06.12
|
### 1.1.0 / 2020.06.12
|
||||||
|
|
||||||
Changes in the CLI:
|
Changes in the CLI:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "deno"
|
name = "deno"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
authors = ["the Deno authors"]
|
authors = ["the Deno authors"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
@ -15,13 +15,13 @@ name = "deno"
|
||||||
path = "main.rs"
|
path = "main.rs"
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
deno_core = { path = "../core", version = "0.48.0" }
|
deno_core = { path = "../core", version = "0.48.1" }
|
||||||
deno_typescript = { path = "../deno_typescript", version = "0.48.0" }
|
deno_typescript = { path = "../deno_typescript", version = "0.48.1" }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
deno_core = { path = "../core", version = "0.48.0" }
|
deno_core = { path = "../core", version = "0.48.1" }
|
||||||
deno_lint = "0.1.10"
|
deno_lint = "0.1.10"
|
||||||
deno_typescript = { path = "../deno_typescript", version = "0.48.0" }
|
deno_typescript = { path = "../deno_typescript", version = "0.48.1" }
|
||||||
|
|
||||||
atty = "0.2.14"
|
atty = "0.2.14"
|
||||||
base64 = "0.12.2"
|
base64 = "0.12.2"
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "deno_core"
|
name = "deno_core"
|
||||||
version = "0.48.0"
|
version = "0.48.1"
|
||||||
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"]
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "deno_typescript"
|
name = "deno_typescript"
|
||||||
version = "0.48.0"
|
version = "0.48.1"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
description = "To compile TypeScript to a snapshot during build.rs"
|
description = "To compile TypeScript to a snapshot during build.rs"
|
||||||
repository = "https://github.com/denoland/deno"
|
repository = "https://github.com/denoland/deno"
|
||||||
|
@ -19,6 +19,6 @@ exclude = [
|
||||||
path = "lib.rs"
|
path = "lib.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
deno_core = { path = "../core", version = "0.48.0" }
|
deno_core = { path = "../core", version = "0.48.1" }
|
||||||
serde_json = "1.0.55"
|
serde_json = "1.0.55"
|
||||||
serde = { version = "1.0.112", features = ["derive"] }
|
serde = { version = "1.0.112", features = ["derive"] }
|
||||||
|
|
|
@ -4,4 +4,4 @@
|
||||||
* the cli's API is stable. In the future when std becomes stable, likely we
|
* 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.
|
* will match versions with cli as we have in the past.
|
||||||
*/
|
*/
|
||||||
export const VERSION = "0.57.0";
|
export const VERSION = "0.58.0";
|
||||||
|
|
Loading…
Reference in a new issue