summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2020-06-12 18:43:09 +0200
committerGitHub <noreply@github.com>2020-06-12 18:43:09 +0200
commit7d41bacfba6a3557066345ecd282f0d83e4a4381 (patch)
treee0acb4bf342dd7f84a4a9b12d42a850b1f7391ed
parente613bfe47a3ebec076c82d038738904114ff2a7c (diff)
v1.1.0
-rw-r--r--Cargo.lock6
-rw-r--r--Releases.md61
-rw-r--r--cli/Cargo.toml10
-rw-r--r--core/Cargo.toml2
-rw-r--r--deno_typescript/Cargo.toml4
-rw-r--r--std/version.ts2
6 files changed, 73 insertions, 12 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 9b1678db5..ebed3e461 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -435,7 +435,7 @@ dependencies = [
[[package]]
name = "deno"
-version = "1.0.5"
+version = "1.1.0"
dependencies = [
"atty",
"base64 0.12.1",
@@ -490,7 +490,7 @@ dependencies = [
[[package]]
name = "deno_core"
-version = "0.47.1"
+version = "0.48.0"
dependencies = [
"derive_deref",
"downcast-rs",
@@ -521,7 +521,7 @@ dependencies = [
[[package]]
name = "deno_typescript"
-version = "0.47.1"
+version = "0.48.0"
dependencies = [
"deno_core",
"serde",
diff --git a/Releases.md b/Releases.md
index 8d86ce47d..fa63394a3 100644
--- a/Releases.md
+++ b/Releases.md
@@ -6,6 +6,67 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at
https://github.com/denoland/deno_install
+### 1.1.0 / 2020.06.12
+
+Changes in the CLI:
+
+- feat: "deno eval -p" (#5682)
+- feat: "deno lint" subcommand (#6125, #6208, #6222, #6248, #6258, #6264)
+- feat: Add Deno.mainModule (#6180)
+- feat: Add Deno.env.delete() (#5859)
+- feat: Add TestDefinition::only (#5793)
+- feat: Allow reading the entry file from stdin (#6130)
+- feat: Handle .mjs files in "deno test" and "deno fmt" (#6134, #6122)
+- feat: URL support in Deno filesystem methods (#5990)
+- feat: make rid on Deno.Listener public (#5571)
+- feat(core): Add unregister op (#6214)
+- feat(doc): Display all overloads in cli details view (#6186)
+- feat(doc): Handle detail output for enum (#6078)
+- feat(fmt): Add diff for "deno fmt --check" (#5599)
+- fix: Handle @deno-types in export {} (#6202)
+- fix: Several regressions in TS compiler (#6177)
+- fix(cli): 'deno upgrade' doesn't work on Windows 8.1/PowerShell 4.0 (#6132)
+- fix(cli): WebAssembly runtime error propagation (#6137)
+- fix(cli/js/buffer): Remove try-catch from Buffer.readFrom, readFromSync
+ (#6161)
+- fix(cli/js/io): Deno.readSync on stdin (#6126)
+- fix(cli/js/net): UDP BorrowMutError (#6221)
+- fix(cli/js/process): Always return a code in ProcessStatus (#5244)
+- fix(cli/js/process): Strengthen socket types based on pipes (#4836)
+- fix(cli/js/web): IPv6 hostname support in URL (#5766)
+- fix(cli/js/web/worker): Disable relative module specifiers (#5266)
+- fix(cli/web/fetch): multipart/form-data request body support for binary files
+ (#5886)
+- fix(core): ES module snapshots (#6111)
+- revert: "feat: format deno bundle output (#5139)" (#6085)
+- upgrade: Rust 1.44.0 (#6113)
+- upgrade: swc_ecma_parser 0.24.5 (#6077)
+
+Changes in std version 0.57.0:
+
+- feat(std/encoding/binary): Add varnumBytes(), varbigBytes() (#5173)
+- feat(std/hash): Add sha3 (#5558)
+- feat(std/log): Inline and deferred statement resolution logging (#5192)
+- feat(std/node): Add util.promisify (#5540)
+- feat(std/node): Add util.types (#6159)
+- feat(std/node): Buffer (#5925)
+- feat(std/testing): Allow non-void promises in assertThrowsAsync (#6052)
+- fix(http/server): Flaky test on Windows (#6188)
+- fix(std/archive): Untar (#6217) cleanup std/tar (#6185)
+- fix(std/http): Don't use assert() for user input validation (#6092)
+- fix(std/http): Prevent crash on UnexpectedEof and InvalidData (#6155)
+- fix(std/http/file_server): Args handling only if invoked directly (#5989)
+- fix(std/io): StringReader implementation (#6148)
+- fix(std/log): Revert setInterval log flushing as it prevents process
+ completion (#6127)
+- fix(std/node): Emitter.removeAllListeners (#5583)
+- fix(std/testing/bench): Make progress callback async (#6175)
+- fix(std/testing/bench): Clock assertions without --allow-hrtime (#6069)
+- refactor(std): Remove testing dependencies from non-test code (#5838)
+- refactor(std/http): Rename delCookie to deleteCookie (#6088)
+- refactor(std/testing): Rename abbreviated assertions (#6118)
+- refactor(std/testing/bench): Remove differentiating on runs count (#6084)
+
### 1.0.5 / 2020.06.03
Changes in the CLI:
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index 858732296..cfb0efbca 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno"
-version = "1.0.5"
+version = "1.1.0"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"
@@ -15,13 +15,13 @@ name = "deno"
path = "main.rs"
[build-dependencies]
-deno_core = { path = "../core", version = "0.47.1" }
-deno_typescript = { path = "../deno_typescript", version = "0.47.1" }
+deno_core = { path = "../core", version = "0.48.0" }
+deno_typescript = { path = "../deno_typescript", version = "0.48.0" }
[dependencies]
-deno_core = { path = "../core", version = "0.47.1" }
+deno_core = { path = "../core", version = "0.48.0" }
deno_lint = { version = "0.1.10" }
-deno_typescript = { path = "../deno_typescript", version = "0.47.1" }
+deno_typescript = { path = "../deno_typescript", version = "0.48.0" }
atty = "0.2.14"
base64 = "0.12.1"
diff --git a/core/Cargo.toml b/core/Cargo.toml
index 93da1dc90..e2c6eb169 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_core"
-version = "0.47.1"
+version = "0.48.0"
edition = "2018"
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
authors = ["the Deno authors"]
diff --git a/deno_typescript/Cargo.toml b/deno_typescript/Cargo.toml
index 50802ce42..e787e7443 100644
--- a/deno_typescript/Cargo.toml
+++ b/deno_typescript/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "deno_typescript"
-version = "0.47.1"
+version = "0.48.0"
license = "MIT"
description = "To compile TypeScript to a snapshot during build.rs"
repository = "https://github.com/denoland/deno"
@@ -19,6 +19,6 @@ exclude = [
path = "lib.rs"
[dependencies]
-deno_core = { path = "../core", version = "0.47.1" }
+deno_core = { path = "../core", version = "0.48.0" }
serde_json = "1.0.53"
serde = { version = "1.0.111", features = ["derive"] }
diff --git a/std/version.ts b/std/version.ts
index 2199cdfed..af90c48fb 100644
--- a/std/version.ts
+++ b/std/version.ts
@@ -4,4 +4,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.56.0";
+export const VERSION = "0.57.0";