mirror of
https://github.com/denoland/deno.git
synced 2025-01-12 00:54:02 -05:00
v1.3.0
This commit is contained in:
parent
d6cee70695
commit
b38c313276
6 changed files with 41 additions and 11 deletions
6
Cargo.lock
generated
6
Cargo.lock
generated
|
@ -321,7 +321,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "deno"
|
name = "deno"
|
||||||
version = "1.2.3"
|
version = "1.3.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"atty",
|
"atty",
|
||||||
"base64 0.12.3",
|
"base64 0.12.3",
|
||||||
|
@ -379,7 +379,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "deno_core"
|
name = "deno_core"
|
||||||
version = "0.52.0"
|
version = "0.53.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"derive_deref",
|
"derive_deref",
|
||||||
"downcast-rs",
|
"downcast-rs",
|
||||||
|
@ -412,7 +412,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "deno_web"
|
name = "deno_web"
|
||||||
version = "0.2.0"
|
version = "0.3.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"deno_core",
|
"deno_core",
|
||||||
"futures",
|
"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
|
We also have one-line install commands at
|
||||||
https://github.com/denoland/deno_install
|
https://github.com/denoland/deno_install
|
||||||
|
|
||||||
|
### 1.3.0 / 2020.08.13
|
||||||
|
|
||||||
|
Changes in the CLI:
|
||||||
|
|
||||||
|
- feat: Add "--no-check" flag to deno install (#6948)
|
||||||
|
- feat: Add "--ignore" flag to deno lint (#6934)
|
||||||
|
- feat: Add "--json" flag to deno lint (#6940)
|
||||||
|
- feat: Add "--reload" flag to deno bundle (#6996)
|
||||||
|
- feat: Add "--reload" flag to deno info (#7009)
|
||||||
|
- feat: FileReader API (#6673)
|
||||||
|
- feat: Handle imports in deno doc (#6987)
|
||||||
|
- feat: Stabilize Deno.mainModule (#6993)
|
||||||
|
- feat: Support file URLs in Deno.run for executable (#6994)
|
||||||
|
- fix: console.log should see color codes when grouping occurs (#7000)
|
||||||
|
- fix: URLSearchParams.toString() behaviour is different from browsers (#7017)
|
||||||
|
- fix: Remove @ts-expect-error directives (#7024)
|
||||||
|
- fix(unstable): Add missing globals to diagnostics (#6988)
|
||||||
|
- refactor(doc): Remove detailed / summary distinction (#6818)
|
||||||
|
- core: Memory limits & callbacks (#6914)
|
||||||
|
- upgrade: TypeScript to 3.9.7 (#7036)
|
||||||
|
- upgrade: Rust crates (#7034, #7040)
|
||||||
|
|
||||||
|
Changes in std version 0.65.0:
|
||||||
|
|
||||||
|
- feat(std/http): Add TLS serve abilities to file_server (#6962)
|
||||||
|
- feat(std/http): Add --no-dir-listing flag to file_server (#6808)
|
||||||
|
- feat(std/node): Add util.inspect (#6833)
|
||||||
|
- fix: Make std work with isolatedModules (#7016)
|
||||||
|
|
||||||
### 1.2.3 / 2020.08.08
|
### 1.2.3 / 2020.08.08
|
||||||
|
|
||||||
Changes in the CLI:
|
Changes in the CLI:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "deno"
|
name = "deno"
|
||||||
version = "1.2.3"
|
version = "1.3.0"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
authors = ["the Deno authors"]
|
authors = ["the Deno authors"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
@ -15,17 +15,18 @@ name = "deno"
|
||||||
path = "main.rs"
|
path = "main.rs"
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
deno_core = { path = "../core", version = "0.52.0" }
|
deno_core = { path = "../core", version = "0.53.0" }
|
||||||
deno_web = { path = "../op_crates/web", version = "0.2.0" }
|
deno_web = { path = "../op_crates/web", version = "0.3.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.52.0" }
|
deno_core = { path = "../core", version = "0.53.0" }
|
||||||
deno_lint = { version = "0.1.22", features = ["json"] }
|
deno_lint = { version = "0.1.22", features = ["json"] }
|
||||||
|
|
||||||
|
|
||||||
atty = "0.2.14"
|
atty = "0.2.14"
|
||||||
base64 = "0.12.3"
|
base64 = "0.12.3"
|
||||||
bytes = "0.5.6"
|
bytes = "0.5.6"
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "deno_core"
|
name = "deno_core"
|
||||||
version = "0.52.0"
|
version = "0.53.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"]
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "deno_web"
|
name = "deno_web"
|
||||||
version = "0.2.0"
|
version = "0.3.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.52.0", path = "../../core" }
|
deno_core = { version = "0.53.0", path = "../../core" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
futures = "0.3.5"
|
futures = "0.3.5"
|
||||||
|
|
|
@ -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.64.0";
|
export const VERSION = "0.65.0";
|
||||||
|
|
Loading…
Reference in a new issue