diff --git a/Cargo.lock b/Cargo.lock index 40c7b4e976..fff1680180 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -408,7 +408,7 @@ dependencies = [ [[package]] name = "deno" -version = "1.4.6" +version = "1.5.0" dependencies = [ "atty", "base64 0.12.3", @@ -466,7 +466,7 @@ dependencies = [ [[package]] name = "deno_core" -version = "0.64.0" +version = "0.65.0" dependencies = [ "anyhow", "futures", @@ -501,7 +501,7 @@ dependencies = [ [[package]] name = "deno_fetch" -version = "0.7.1" +version = "0.8.0" dependencies = [ "deno_core", "reqwest", @@ -526,7 +526,7 @@ dependencies = [ [[package]] name = "deno_web" -version = "0.15.1" +version = "0.16.0" dependencies = [ "deno_core", "futures", diff --git a/Releases.md b/Releases.md index e7209ce7a0..7b6f1d9f51 100644 --- a/Releases.md +++ b/Releases.md @@ -6,6 +6,70 @@ https://github.com/denoland/deno/releases We also have one-line install commands at: https://github.com/denoland/deno_install +### 1.5.0 / 2020.10.27 + +- BREAKING: Enable isolatedModules by default (#8050) +- feat(bundle): Add support for --no-check (#8023) +- feat(console): Inspect with colors regardless of Deno.noColor (#7778) +- feat(doc): Support --import-map flag (#7821) +- feat(fmt): Make --ignore flag stable (#7922) +- feat(install): Add missing flags for deno install (#7601) +- feat(repl): Add regex based syntax highlighter (#7811) +- feat(repl): Add tab completion (#7827) +- feat(test): Pass script args to test command (#8121) +- feat(unstable): Add Deno.sleepSync() (#7974) +- feat(unstable): Add Deno.systemCpuInfo() (#7774) +- feat: Add alert, confirm, and prompt (#7507) +- feat: Add types for WeakRef/FinalizationRegistry (#8056) +- feat: Stabilize Deno.fsync and Deno.fdatasync (#8038) +- fix(console): Fix the test cases of function inspections (#7965) +- fix(console): Only inspect getters with option (#7830) +- fix(core): Indicate exceptions in promises (#8124) +- fix(core): Top Level Await module execution (#7946) +- fix(op_crates/fetch): Body.body should be stream of Uint8Array (#8030) +- fix(op_crates/fetch): Ensure Request.method is a string (#8100) +- fix(op_crates/web): Better TextEncoder error message (#8005) +- fix(op_crates/web): Expose event properties in console output (#8103) +- fix(op_crates/web): TextEncoder should throw RangeError (#8039) +- fix(op_crates/web): URL.pathname backslash replacement (#7937) +- fix(repl): Ignore pair matching inside literals (#8037) +- fix(repl): Keyboard interrupt should continue (#7960) +- fix(repl): Unterminated string literal should invalidate (#7896) +- fix(repl): Write all results to stdout (#7893) +- fix(rt/main): Add global interface objects (#7875) +- fix(rt/performance): Check for object props in startOrMeasureOptions (#7884) +- fix(rt/websockets): Only add Sec-WebSocket-Protocol if not empty (#7936) +- fix(test): Return error when awaiting unresolved promise (#7968) +- fix: Do not throw on empty typescript files (#8143) +- fix: Fix inspection of Function (#7930) +- fix: Handle URL paths in Deno.mkdir() (#8140) +- fix: Handling of relative importmaps while using watch (#7950) +- fix: Print error stacks from the origin Worker (#7987) +- fix: Restore permission check on workers (#8123) +- fix: Use -rw-r--r-- for cache files (#8132) +- fix: Use rid getter for stdio (#8014) +- fix: handle roots with extensions that don't match media type (#8114) +- refactor(core): more control over isolate creation (#8000) +- refactor: New TSC infrastructure (#7996, #7981, #7892) +- refactor: Rename --importmap to --import-map (#7032) +- refactor: Rewrite Deno.transpileOnly() to use SWC (#8090) +- upgrade: deno_doc, deno_lint, dprint, swc (#8009, #8077) +- upgrade: rusty_v8 and v8 8.7.220.3 (#8017) + +Changes in std version 0.75.0: + +- feat(std/fs/node): Add more APIs (#7921) +- feat(std/path): Add toFileUrl() (#7971) +- feat(std/testing): Add assertExists assertion (#7874) +- feat(std/testing): Add assertObjectMatch assertion (#8001) +- fix(std/http): Path traversal in file_server.ts (#8134) +- fix(std/toml): Parsing inline arrays of inline tables (#7902) +- fix(std/encoding): base64 properly encodes mbc and handles Uint8Arrays (#7807) +- fix(std/http/file_server): File server should ignore query params (#8116) +- fix(std/node): Buffer.copy doesn't work as expected (#8125) +- fix(std/wasi): Disallow path_open outside of pre-opened dirfd (#8078) +- refactor(std/testing): Rename assert_Contains to assert_Includes (#7951) + ### 1.4.6 / 2020.10.10 - fix: 100% CPU idling problem by reverting #7672 (#7911) diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 6120e901c2..6b18596479 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno" -version = "1.4.6" +version = "1.5.0" 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.64.0" } -deno_web = { path = "../op_crates/web", version = "0.15.1" } -deno_fetch = { path = "../op_crates/fetch", version = "0.7.1" } +deno_core = { path = "../core", version = "0.65.0" } +deno_web = { path = "../op_crates/web", version = "0.16.0" } +deno_fetch = { path = "../op_crates/fetch", version = "0.8.0" } [target.'cfg(windows)'.build-dependencies] winres = "0.1.11" winapi = "0.3.9" [dependencies] -deno_core = { path = "../core", version = "0.64.0" } +deno_core = { path = "../core", version = "0.65.0" } deno_doc = "0.1.13" deno_lint = "0.2.5" -deno_web = { path = "../op_crates/web", version = "0.15.1" } -deno_fetch = { path = "../op_crates/fetch", version = "0.7.1" } +deno_web = { path = "../op_crates/web", version = "0.16.0" } +deno_fetch = { path = "../op_crates/fetch", version = "0.8.0" } atty = "0.2.14" base64 = "0.12.3" diff --git a/core/Cargo.toml b/core/Cargo.toml index 997306b245..644a28a42b 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,7 +1,7 @@ # Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. [package] name = "deno_core" -version = "0.64.0" +version = "0.65.0" edition = "2018" description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio" authors = ["the Deno authors"] diff --git a/op_crates/fetch/Cargo.toml b/op_crates/fetch/Cargo.toml index b083dbee69..d0b386a0b5 100644 --- a/op_crates/fetch/Cargo.toml +++ b/op_crates/fetch/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_fetch" -version = "0.7.1" +version = "0.8.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.64.0", path = "../../core" } +deno_core = { version = "0.65.0", path = "../../core" } reqwest = { version = "0.10.8", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] } serde = { version = "1.0.116", features = ["derive"] } diff --git a/op_crates/web/Cargo.toml b/op_crates/web/Cargo.toml index 40ebba94e8..95d4a11aff 100644 --- a/op_crates/web/Cargo.toml +++ b/op_crates/web/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_web" -version = "0.15.1" +version = "0.16.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.64.0", path = "../../core" } +deno_core = { version = "0.65.0", path = "../../core" } idna = "0.2.0" serde = { version = "1.0.116", features = ["derive"] } diff --git a/std/version.ts b/std/version.ts index 8674a57572..a1d01209be 100644 --- a/std/version.ts +++ b/std/version.ts @@ -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.74.0"; +export const VERSION = "0.75.0";