mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 20:38:55 +00:00
v1.4.3
This commit is contained in:
parent
e5348a6a38
commit
63efa5f15d
8
Cargo.lock
generated
8
Cargo.lock
generated
@ -393,7 +393,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno"
|
||||
version = "1.4.2"
|
||||
version = "1.4.3"
|
||||
dependencies = [
|
||||
"atty",
|
||||
"base64 0.12.3",
|
||||
@ -450,7 +450,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno_core"
|
||||
version = "0.59.0"
|
||||
version = "0.60.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"futures",
|
||||
@ -484,7 +484,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno_fetch"
|
||||
version = "0.3.0"
|
||||
version = "0.4.0"
|
||||
dependencies = [
|
||||
"deno_core",
|
||||
"reqwest",
|
||||
@ -509,7 +509,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno_web"
|
||||
version = "0.11.0"
|
||||
version = "0.12.0"
|
||||
dependencies = [
|
||||
"deno_core",
|
||||
"futures",
|
||||
|
37
Releases.md
37
Releases.md
@ -6,6 +6,43 @@ https://github.com/denoland/deno/releases
|
||||
We also have one-line install commands at
|
||||
https://github.com/denoland/deno_install
|
||||
|
||||
### 1.4.3 / 2020.10.02
|
||||
|
||||
- feat(unstable): Add module specifier to deno info --json output (#7725)
|
||||
- fix: Bundle loader returns exported value (#7764)
|
||||
- fix: Check cached versions during transpile (#7760)
|
||||
- fix: Net listen crashes on explicit undefined hostname (#7706)
|
||||
- fix: --no-check recognizes require (#7720)
|
||||
- fix: Use $deno$test.ts instead of .deno.test.ts (#7717)
|
||||
- fix: Use global_state file_fetcher when using SpecifierHandler (#7748)
|
||||
- fix(console): Catch and format getter errors (#7766)
|
||||
- fix(dts): Use var instead of const and let for globals (#7680)
|
||||
- fix(inspector): Shutdown server gracefully on drop (#7716)
|
||||
- fix(repl): Enable await and let re-declarations (#7784)
|
||||
- fix(repl): Use a default referrer when empty (#7794)
|
||||
- fix(test): Do not start inspector server when collecting coverage (#7718)
|
||||
- fix(websocket): Add missing close events and remove extra error event (#7606)
|
||||
- refactor: Add concept of 'legacy' compiler to enable non-breaking refactoring
|
||||
(#7762)
|
||||
- refactor: Combine MainWorker::new and MainWorker::create (#7693)
|
||||
- refactor: Extract inspector session (#7756, #7763)
|
||||
- refactor: Factor out check_unstable op helper (#7695)
|
||||
- refactor: Improve graph and tsc_config (#7747)
|
||||
- refactor: Improve op crate interfaces for other consumers (#7745)
|
||||
- refactor: Move op state registration to workers (#7696)
|
||||
- refactor: Use JsRuntime to implement TSC (#7691)
|
||||
- refactor: Add Deno.InspectOptions::colors (#7742)
|
||||
- upgrade: swc, deno_doc, deno_lint, dprint (#7711, #7793)
|
||||
|
||||
Changes in std version 0.72.0:
|
||||
|
||||
- BREAKING(std/encoding/csv): Improve the definition of ParseOptions (#7714)
|
||||
- feat(std/path): Align globToRegExp() with bash glob expansion (#7209)
|
||||
- fix(std/datetime): Add timezone to date strings in tests (#7675)
|
||||
- refactor(std/example): Inconsistencies in the example tests (#7684)
|
||||
- refactor(std/testing): Get rid of default export and make std/testing/diff.ts
|
||||
private (#7592)
|
||||
|
||||
### 1.4.2 / 2020.09.25
|
||||
|
||||
- fix: Better formatting in console (#7642, #7641, #7553)
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
[package]
|
||||
name = "deno"
|
||||
version = "1.4.2"
|
||||
version = "1.4.3"
|
||||
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.59.0" }
|
||||
deno_web = { path = "../op_crates/web", version = "0.11.0" }
|
||||
deno_fetch = { path = "../op_crates/fetch", version = "0.3.0" }
|
||||
deno_core = { path = "../core", version = "0.60.0" }
|
||||
deno_web = { path = "../op_crates/web", version = "0.12.0" }
|
||||
deno_fetch = { path = "../op_crates/fetch", version = "0.4.0" }
|
||||
|
||||
[target.'cfg(windows)'.build-dependencies]
|
||||
winres = "0.1.11"
|
||||
winapi = "0.3.9"
|
||||
|
||||
[dependencies]
|
||||
deno_core = { path = "../core", version = "0.59.0" }
|
||||
deno_core = { path = "../core", version = "0.60.0" }
|
||||
deno_doc = "0.1.10"
|
||||
deno_lint = { version = "0.2.2", features = ["json"] }
|
||||
deno_web = { path = "../op_crates/web", version = "0.11.0" }
|
||||
deno_fetch = { path = "../op_crates/fetch", version = "0.3.0" }
|
||||
deno_web = { path = "../op_crates/web", version = "0.12.0" }
|
||||
deno_fetch = { path = "../op_crates/fetch", version = "0.4.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.59.0"
|
||||
version = "0.60.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.3.0"
|
||||
version = "0.4.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.59.0", path = "../../core" }
|
||||
deno_core = { version = "0.60.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.11.0"
|
||||
version = "0.12.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.59.0", path = "../../core" }
|
||||
deno_core = { version = "0.60.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.71.0";
|
||||
export const VERSION = "0.72.0";
|
||||
|
Loading…
Reference in New Issue
Block a user