1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00
This commit is contained in:
Kitson Kelly 2020-11-09 10:58:21 +11:00 committed by GitHub
parent a269dffe17
commit 71d7482577
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 54 additions and 17 deletions

8
Cargo.lock generated
View file

@ -408,7 +408,7 @@ dependencies = [
[[package]]
name = "deno"
version = "1.5.1"
version = "1.5.2"
dependencies = [
"atty",
"base64 0.12.3",
@ -466,7 +466,7 @@ dependencies = [
[[package]]
name = "deno_core"
version = "0.66.0"
version = "0.67.0"
dependencies = [
"anyhow",
"futures",
@ -501,7 +501,7 @@ dependencies = [
[[package]]
name = "deno_fetch"
version = "0.9.0"
version = "0.10.0"
dependencies = [
"deno_core",
"reqwest",
@ -527,7 +527,7 @@ dependencies = [
[[package]]
name = "deno_web"
version = "0.17.0"
version = "0.18.0"
dependencies = [
"deno_core",
"futures",

View file

@ -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.5.2 / 2020.11.09
- fix(core/error): Remove extra newline from JsError::fmt() (#8145)
- fix(op_crates/web): make TextEncoder work with forced non-strings (#8206)
- fix(op_crates/web): fix URLSearchParams, malformed url handling (#8092)
- fix(op_crates/web): define abort event handler on prototype (#8230)
- fix(cli/repl): Fixing syntax highlighting (#8202)
- fix: inject helpers when transpiling via swc (#8221)
- fix: add commit hash and target to long_version output (#8133)
- fix: correct libs sent to tsc for unstable worker (#8260)
- fix: properly handle type checking root modules with type definitions (#8263)
- fix: allow remapping to locals for import map (#8262)
- fix: ensure that transitory dependencies are emitted (#8275)
- fix: make onabort event handler web compatible (#8225)
- fix: display of non-ASCII characters on Windows (#8199)
- refactor: Cleanup Flags to Permissions conversion (#8213)
- refactor: migrate runtime compile/bundle to new infrastructure (#8192)
- refactor: cleanup compiler snapshot and tsc/module_graph (#8220)
- refactor: remove ProgramState::permissions (#8228)
- refactor: refactor file_fetcher (#8245)
- refactor: rewrite permission_test to not depend on Python (#8291)
- refactor: auto detect target triples for upgrade (#8286)
- build: migrate to dlint (#8176)
- build: remove eslint (#8232)
- build: rewrite tools/ scripts to deno (#8247)
- build: full color ci logs (#8280)
- upgrade: TypeScript to 4.0.5 (#8138)
- upgrade: deno_doc, deno_lint, dprint, swc (#8292)
Changes in std version 0.77.0:
- feat(std/node/fs): add realpath and realpathSync (#8169)
- feat(std/wasi): add start method to Context (#8141)
- fix(std/flags): Fix parse incorrectly parsing alias flags with equals (#8216)
- fix(std/node): only define Node.js globals when loading std/node/global
(#8281)
### 1.5.1 / 2020.10.31
- fix: Accept Windows line breaks in prompt/confirm/alert (#8149)

View file

@ -2,7 +2,7 @@
[package]
name = "deno"
version = "1.5.1"
version = "1.5.2"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"
@ -20,9 +20,9 @@ harness = false
path = "./bench/main.rs"
[build-dependencies]
deno_core = { path = "../core", version = "0.66.0" }
deno_web = { path = "../op_crates/web", version = "0.17.0" }
deno_fetch = { path = "../op_crates/fetch", version = "0.9.0" }
deno_core = { path = "../core", version = "0.67.0" }
deno_web = { path = "../op_crates/web", version = "0.18.0" }
deno_fetch = { path = "../op_crates/fetch", version = "0.10.0" }
regex = "1.3.9"
serde = { version = "1.0.116", features = ["derive"] }
@ -31,11 +31,11 @@ winres = "0.1.11"
winapi = "0.3.9"
[dependencies]
deno_core = { path = "../core", version = "0.66.0" }
deno_core = { path = "../core", version = "0.67.0" }
deno_doc = "0.1.15"
deno_lint = "0.2.9"
deno_web = { path = "../op_crates/web", version = "0.17.0" }
deno_fetch = { path = "../op_crates/fetch", version = "0.9.0" }
deno_web = { path = "../op_crates/web", version = "0.18.0" }
deno_fetch = { path = "../op_crates/fetch", version = "0.10.0" }
atty = "0.2.14"
base64 = "0.12.3"

View file

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

View file

@ -2,7 +2,7 @@
[package]
name = "deno_fetch"
version = "0.9.0"
version = "0.10.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.66.0", path = "../../core" }
deno_core = { version = "0.67.0", path = "../../core" }
reqwest = { version = "0.10.8", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] }
serde = { version = "1.0.116", features = ["derive"] }

View file

@ -2,7 +2,7 @@
[package]
name = "deno_web"
version = "0.17.0"
version = "0.18.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.66.0", path = "../../core" }
deno_core = { version = "0.67.0", path = "../../core" }
idna = "0.2.0"
serde = { version = "1.0.116", features = ["derive"] }

View file

@ -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.76.0";
export const VERSION = "0.77.0";