summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock30
-rw-r--r--Releases.md44
-rw-r--r--bench_util/Cargo.toml2
-rw-r--r--cli/Cargo.toml10
-rw-r--r--core/Cargo.toml4
-rw-r--r--extensions/console/Cargo.toml4
-rw-r--r--extensions/crypto/Cargo.toml5
-rw-r--r--extensions/fetch/Cargo.toml6
-rw-r--r--extensions/file/Cargo.toml4
-rw-r--r--extensions/timers/Cargo.toml4
-rw-r--r--extensions/url/Cargo.toml4
-rw-r--r--extensions/web/Cargo.toml4
-rw-r--r--extensions/webgpu/Cargo.toml4
-rw-r--r--extensions/webidl/Cargo.toml4
-rw-r--r--extensions/websocket/Cargo.toml4
-rw-r--r--extensions/webstorage/Cargo.toml4
-rw-r--r--runtime/Cargo.toml50
-rw-r--r--serde_v8/Cargo.toml2
18 files changed, 116 insertions, 73 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 64185bb65..50e02ae76 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -530,7 +530,7 @@ dependencies = [
[[package]]
name = "deno"
-version = "1.10.2"
+version = "1.10.3"
dependencies = [
"atty",
"base64 0.13.0",
@@ -593,14 +593,14 @@ dependencies = [
[[package]]
name = "deno_console"
-version = "0.7.0"
+version = "0.7.1"
dependencies = [
"deno_core",
]
[[package]]
name = "deno_core"
-version = "0.88.0"
+version = "0.88.1"
dependencies = [
"anyhow",
"bencher",
@@ -620,7 +620,7 @@ dependencies = [
[[package]]
name = "deno_crypto"
-version = "0.21.0"
+version = "0.21.1"
dependencies = [
"deno_core",
"rand 0.8.3",
@@ -644,7 +644,7 @@ dependencies = [
[[package]]
name = "deno_fetch"
-version = "0.29.0"
+version = "0.29.1"
dependencies = [
"bytes",
"data-url",
@@ -660,7 +660,7 @@ dependencies = [
[[package]]
name = "deno_file"
-version = "0.6.0"
+version = "0.6.1"
dependencies = [
"deno_core",
"uuid",
@@ -688,7 +688,7 @@ dependencies = [
[[package]]
name = "deno_runtime"
-version = "0.15.0"
+version = "0.15.1"
dependencies = [
"atty",
"bytes",
@@ -737,7 +737,7 @@ dependencies = [
[[package]]
name = "deno_timers"
-version = "0.5.0"
+version = "0.5.1"
dependencies = [
"deno_core",
"tokio",
@@ -745,7 +745,7 @@ dependencies = [
[[package]]
name = "deno_url"
-version = "0.7.0"
+version = "0.7.1"
dependencies = [
"bencher",
"deno_core",
@@ -756,7 +756,7 @@ dependencies = [
[[package]]
name = "deno_web"
-version = "0.38.0"
+version = "0.38.1"
dependencies = [
"deno_core",
"futures",
@@ -764,7 +764,7 @@ dependencies = [
[[package]]
name = "deno_webgpu"
-version = "0.8.0"
+version = "0.8.1"
dependencies = [
"deno_core",
"serde",
@@ -775,14 +775,14 @@ dependencies = [
[[package]]
name = "deno_webidl"
-version = "0.7.0"
+version = "0.7.1"
dependencies = [
"deno_core",
]
[[package]]
name = "deno_websocket"
-version = "0.12.0"
+version = "0.12.1"
dependencies = [
"deno_core",
"http",
@@ -796,7 +796,7 @@ dependencies = [
[[package]]
name = "deno_webstorage"
-version = "0.2.0"
+version = "0.2.1"
dependencies = [
"deno_core",
"rusqlite",
@@ -2874,7 +2874,7 @@ dependencies = [
[[package]]
name = "serde_v8"
-version = "0.4.0"
+version = "0.4.1"
dependencies = [
"bencher",
"rusty_v8",
diff --git a/Releases.md b/Releases.md
index a53324226..35e9db430 100644
--- a/Releases.md
+++ b/Releases.md
@@ -6,6 +6,50 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at:
https://github.com/denoland/deno_install
+### 1.10.3 / 2021.05.31
+
+- feat(lsp): diagnostics for deno types and triple-slash refs (#10699)
+- feat(lsp): provide X-Deno-Warning as a diagnostic (#10680)
+- feat(lsp): show hints from `deno_lint` in addition to messages (#10739)
+- feat(lsp): support formatting json and markdown files (#10180)
+- fix(cli): always allow documentation modules to be checked (#10581)
+- fix(cli): canonicalize coverage dir (#10364)
+- fix(cli): don't statically error on dynamic unmapped bare specifiers (#10618)
+- fix(cli): empty tsconfig.json file does not cause error (#10734)
+- fix(cli): support source maps with Deno.emit() and bundle (#10510)
+- fix(cli/dts): fix missing error class (NotSupported) in types (#10713)
+- fix(cli/install): support `file:` scheme URLs (#10562)
+- fix(cli/test): don't use reserved symbol `:` in specifier (#10751)
+- fix(cli/test): ensure coverage dir exists (#10717)
+- fix(cli/upgrade): modify download size paddings (#10639)
+- fix(runtime/http): expose nextRequest() errors in respondWith() (#10384)
+- fix(runtime/http): fix empty blob response (#10689)
+- fix(serde_v8): remove intentional deserialization error on non-utf8 strings
+ (#10156)
+- fix(ext/fetch): fix error message of Request constructor (#10772)
+- fix(ext/fetch): make prototype properties writable (#10769)
+- fix(ext/fetch): remove unimplemented Request attributes (#10784)
+- fix(ext/file): update File constructor following the spec (#10760)
+- fix(ext/webstorage): use opstate for sqlite connection (#10692)
+- fix(lsp): deps diagnostics include data property (#10696)
+- fix(lsp): ignore type definition not found diagnostic (#10610)
+- fix(lsp): local module import added by code action now includes the file
+ extension (#10778)
+- fix(lsp): make failed to load config error descriptive (#10685)
+- fix(lsp): memoize script versions per tsc request (#10601)
+- fix(lsp): re-enable the per resource configuration without a deadlock (#10625)
+- docs(cli): update getting started for clarity (#10694)
+- docs(cli/dts) replace `read()` with `readSync()` (#10732)
+- docs(cli/dts): fix plugin example (#10647)
+- docs(cli/dts): fix typo in `TestDefinition.only` description (#10697)
+- docs(cli/dts): fix unix socket examples (#10705)
+- docs(cli/dts): make worker example pass (#10703)
+- docs(cli/dts): tag test permission example as typescript (#10753)
+- docs(permissions): fix grammatical error in permissions docs (#10755)
+- docs(runtime): fix fetch API usage of HTTP server (#10777)
+- docs(testing): fix misspelling (#10683)
+- docs(typescript): fix typo in faqs (#10682)
+
### 1.10.2 / 2021.05.17
- fix: static import permissions in dynamic imports
diff --git a/bench_util/Cargo.toml b/bench_util/Cargo.toml
index 302712912..60e7b1cc1 100644
--- a/bench_util/Cargo.toml
+++ b/bench_util/Cargo.toml
@@ -14,5 +14,5 @@ publish = false
[dependencies]
bencher = "0.1"
-deno_core = { version = "0.88.0", path = "../core" }
+deno_core = { version = "0.88.1", path = "../core" }
tokio = { version = "1.6.1", features = ["full"] }
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index c14072508..def5e209a 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno"
-version = "1.10.2"
+version = "1.10.3"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"
@@ -20,8 +20,8 @@ harness = false
path = "./bench/main.rs"
[build-dependencies]
-deno_core = { path = "../core", version = "0.88.0" }
-deno_runtime = { path = "../runtime", version = "0.15.0" }
+deno_core = { path = "../core", version = "0.88.1" }
+deno_runtime = { path = "../runtime", version = "0.15.1" }
regex = "1.4.3"
serde = { version = "1.0.125", features = ["derive"] }
@@ -30,10 +30,10 @@ winapi = "0.3.9"
winres = "0.1.11"
[dependencies]
-deno_core = { path = "../core", version = "0.88.0" }
+deno_core = { path = "../core", version = "0.88.1" }
deno_doc = "0.4.0"
deno_lint = "0.5.0"
-deno_runtime = { path = "../runtime", version = "0.15.0" }
+deno_runtime = { path = "../runtime", version = "0.15.1" }
atty = "0.2.14"
base64 = "0.13.0"
diff --git a/core/Cargo.toml b/core/Cargo.toml
index 2b092fe99..e22016e67 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -1,7 +1,7 @@
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
[package]
name = "deno_core"
-version = "0.88.0"
+version = "0.88.1"
edition = "2018"
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
authors = ["the Deno authors"]
@@ -13,7 +13,7 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"
[dependencies]
-serde_v8 = { version = "0.4.0", path = "../serde_v8" }
+serde_v8 = { version = "0.4.1", path = "../serde_v8" }
anyhow = "1.0.40"
futures = "0.3.15"
diff --git a/extensions/console/Cargo.toml b/extensions/console/Cargo.toml
index 189d56500..06db0a2d6 100644
--- a/extensions/console/Cargo.toml
+++ b/extensions/console/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_console"
-version = "0.7.0"
+version = "0.7.1"
edition = "2018"
description = "Implementation of Console API for Deno"
authors = ["the Deno authors"]
@@ -14,4 +14,4 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.88.0", path = "../../core" }
+deno_core = { version = "0.88.1", path = "../../core" }
diff --git a/extensions/crypto/Cargo.toml b/extensions/crypto/Cargo.toml
index 5295aa9f1..fa0a6634e 100644
--- a/extensions/crypto/Cargo.toml
+++ b/extensions/crypto/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_crypto"
-version = "0.21.0"
+version = "0.21.1"
edition = "2018"
description = "Web Cryptography API implementation for Deno"
authors = ["the Deno authors"]
@@ -14,6 +14,5 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.88.0", path = "../../core" }
+deno_core = { version = "0.88.1", path = "../../core" }
rand = "0.8.3"
-
diff --git a/extensions/fetch/Cargo.toml b/extensions/fetch/Cargo.toml
index 201417816..0ba969bc1 100644
--- a/extensions/fetch/Cargo.toml
+++ b/extensions/fetch/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_fetch"
-version = "0.29.0"
+version = "0.29.1"
edition = "2018"
description = "Fetch API implementation for Deno"
authors = ["the Deno authors"]
@@ -16,8 +16,8 @@ path = "lib.rs"
[dependencies]
bytes = "1.0.1"
data-url = "0.1.0"
-deno_core = { version = "0.88.0", path = "../../core" }
-deno_file = { version = "0.6.0", path = "../file" }
+deno_core = { version = "0.88.1", path = "../../core" }
+deno_file = { version = "0.6.1", path = "../file" }
http = "0.2.4"
reqwest = { version = "0.11.3", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] }
serde = { version = "1.0.125", features = ["derive"] }
diff --git a/extensions/file/Cargo.toml b/extensions/file/Cargo.toml
index cab6f5666..f9f17e427 100644
--- a/extensions/file/Cargo.toml
+++ b/extensions/file/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_file"
-version = "0.6.0"
+version = "0.6.1"
edition = "2018"
description = "File API implementation for Deno"
authors = ["the Deno authors"]
@@ -14,5 +14,5 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.88.0", path = "../../core" }
+deno_core = { version = "0.88.1", path = "../../core" }
uuid = { version = "0.8.2", features = ["v4"] }
diff --git a/extensions/timers/Cargo.toml b/extensions/timers/Cargo.toml
index 32cf02e86..afdbf2e4c 100644
--- a/extensions/timers/Cargo.toml
+++ b/extensions/timers/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_timers"
-version = "0.5.0"
+version = "0.5.1"
edition = "2018"
description = "Timers API implementation for Deno"
authors = ["the Deno authors"]
@@ -14,5 +14,5 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.88.0", path = "../../core" }
+deno_core = { version = "0.88.1", path = "../../core" }
tokio = { version = "1.6.1", features = ["full"] }
diff --git a/extensions/url/Cargo.toml b/extensions/url/Cargo.toml
index 70a880e0d..57f82bba8 100644
--- a/extensions/url/Cargo.toml
+++ b/extensions/url/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_url"
-version = "0.7.0"
+version = "0.7.1"
edition = "2018"
description = "URL API implementation for Deno"
authors = ["the Deno authors"]
@@ -14,7 +14,7 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.88.0", path = "../../core" }
+deno_core = { version = "0.88.1", path = "../../core" }
idna = "0.2.3"
percent-encoding = "2.1.0"
serde = { version = "1.0.125", features = ["derive"] }
diff --git a/extensions/web/Cargo.toml b/extensions/web/Cargo.toml
index e8a6f480e..1d0cd5411 100644
--- a/extensions/web/Cargo.toml
+++ b/extensions/web/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_web"
-version = "0.38.0"
+version = "0.38.1"
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.88.0", path = "../../core" }
+deno_core = { version = "0.88.1", path = "../../core" }
[dev-dependencies]
futures = "0.3.15"
diff --git a/extensions/webgpu/Cargo.toml b/extensions/webgpu/Cargo.toml
index 4a1c25db2..a1609fea8 100644
--- a/extensions/webgpu/Cargo.toml
+++ b/extensions/webgpu/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_webgpu"
-version = "0.8.0"
+version = "0.8.1"
edition = "2018"
description = "WebGPU implementation for Deno"
authors = ["the Deno authors"]
@@ -14,7 +14,7 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.88.0", path = "../../core" }
+deno_core = { version = "0.88.1", path = "../../core" }
tokio = { version = "1.6.1", features = ["full"] }
serde = { version = "1.0.125", features = ["derive"] }
wgpu-core = { version = "0.8.1", features = ["trace"] }
diff --git a/extensions/webidl/Cargo.toml b/extensions/webidl/Cargo.toml
index ad6b2d57b..f2842c5c2 100644
--- a/extensions/webidl/Cargo.toml
+++ b/extensions/webidl/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_webidl"
-version = "0.7.0"
+version = "0.7.1"
edition = "2018"
description = "WebIDL implementation for Deno"
authors = ["the Deno authors"]
@@ -14,4 +14,4 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.88.0", path = "../../core" }
+deno_core = { version = "0.88.1", path = "../../core" }
diff --git a/extensions/websocket/Cargo.toml b/extensions/websocket/Cargo.toml
index 129aeb7ca..7e2a82b99 100644
--- a/extensions/websocket/Cargo.toml
+++ b/extensions/websocket/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_websocket"
-version = "0.12.0"
+version = "0.12.1"
edition = "2018"
description = "Implementation of WebSocket API for Deno"
authors = ["the Deno authors"]
@@ -14,7 +14,7 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.88.0", path = "../../core" }
+deno_core = { version = "0.88.1", path = "../../core" }
http = "0.2.3"
serde = { version = "1.0.125", features = ["derive"] }
tokio = { version = "1.6.1", features = ["full"] }
diff --git a/extensions/webstorage/Cargo.toml b/extensions/webstorage/Cargo.toml
index 506014b17..b72970bbd 100644
--- a/extensions/webstorage/Cargo.toml
+++ b/extensions/webstorage/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_webstorage"
-version = "0.2.0"
+version = "0.2.1"
edition = "2018"
description = "Implementation of WebStorage API for Deno"
authors = ["the Deno authors"]
@@ -14,6 +14,6 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.88.0", path = "../../core" }
+deno_core = { version = "0.88.1", path = "../../core" }
rusqlite = { version = "0.25.3", features = ["unlock_notify", "bundled"] }
serde = { version = "1.0.125", features = ["derive"] }
diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml
index c2cf00b0b..786b7f552 100644
--- a/runtime/Cargo.toml
+++ b/runtime/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_runtime"
-version = "0.15.0"
+version = "0.15.1"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"
@@ -18,36 +18,36 @@ name = "hello_runtime"
path = "examples/hello_runtime.rs"
[build-dependencies]
-deno_console = { version = "0.7.0", path = "../extensions/console" }
-deno_core = { version = "0.88.0", path = "../core" }
-deno_crypto = { version = "0.21.0", path = "../extensions/crypto" }
-deno_fetch = { version = "0.29.0", path = "../extensions/fetch" }
-deno_file = { version = "0.6.0", path = "../extensions/file" }
-deno_timers = { version = "0.5.0", path = "../extensions/timers" }
-deno_url = { version = "0.7.0", path = "../extensions/url" }
-deno_web = { version = "0.38.0", path = "../extensions/web" }
-deno_webgpu = { version = "0.8.0", path = "../extensions/webgpu" }
-deno_webidl = { version = "0.7.0", path = "../extensions/webidl" }
-deno_websocket = { version = "0.12.0", path = "../extensions/websocket" }
-deno_webstorage = { version = "0.2.0", path = "../extensions/webstorage" }
+deno_console = { version = "0.7.1", path = "../extensions/console" }
+deno_core = { version = "0.88.1", path = "../core" }
+deno_crypto = { version = "0.21.1", path = "../extensions/crypto" }
+deno_fetch = { version = "0.29.1", path = "../extensions/fetch" }
+deno_file = { version = "0.6.1", path = "../extensions/file" }
+deno_timers = { version = "0.5.1", path = "../extensions/timers" }
+deno_url = { version = "0.7.1", path = "../extensions/url" }
+deno_web = { version = "0.38.1", path = "../extensions/web" }
+deno_webgpu = { version = "0.8.1", path = "../extensions/webgpu" }
+deno_webidl = { version = "0.7.1", path = "../extensions/webidl" }
+deno_websocket = { version = "0.12.1", path = "../extensions/websocket" }
+deno_webstorage = { version = "0.2.1", path = "../extensions/webstorage" }
[target.'cfg(windows)'.build-dependencies]
winres = "0.1.11"
winapi = "0.3.9"
[dependencies]
-deno_console = { version = "0.7.0", path = "../extensions/console" }
-deno_core = { version = "0.88.0", path = "../core" }
-deno_crypto = { version = "0.21.0", path = "../extensions/crypto" }
-deno_fetch = { version = "0.29.0", path = "../extensions/fetch" }
-deno_file = { version = "0.6.0", path = "../extensions/file" }
-deno_timers = { version = "0.5.0", path = "../extensions/timers" }
-deno_url = { version = "0.7.0", path = "../extensions/url" }
-deno_web = { version = "0.38.0", path = "../extensions/web" }
-deno_webgpu = { version = "0.8.0", path = "../extensions/webgpu" }
-deno_webidl = { version = "0.7.0", path = "../extensions/webidl" }
-deno_websocket = { version = "0.12.0", path = "../extensions/websocket" }
-deno_webstorage = { version = "0.2.0", path = "../extensions/webstorage" }
+deno_console = { version = "0.7.1", path = "../extensions/console" }
+deno_core = { version = "0.88.1", path = "../core" }
+deno_crypto = { version = "0.21.1", path = "../extensions/crypto" }
+deno_fetch = { version = "0.29.1", path = "../extensions/fetch" }
+deno_file = { version = "0.6.1", path = "../extensions/file" }
+deno_timers = { version = "0.5.1", path = "../extensions/timers" }
+deno_url = { version = "0.7.1", path = "../extensions/url" }
+deno_web = { version = "0.38.1", path = "../extensions/web" }
+deno_webgpu = { version = "0.8.1", path = "../extensions/webgpu" }
+deno_webidl = { version = "0.7.1", path = "../extensions/webidl" }
+deno_websocket = { version = "0.12.1", path = "../extensions/websocket" }
+deno_webstorage = { version = "0.2.1", path = "../extensions/webstorage" }
atty = "0.2.14"
bytes = "1"
diff --git a/serde_v8/Cargo.toml b/serde_v8/Cargo.toml
index 1e320956f..78a064626 100644
--- a/serde_v8/Cargo.toml
+++ b/serde_v8/Cargo.toml
@@ -1,7 +1,7 @@
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
[package]
name = "serde_v8"
-version = "0.4.0"
+version = "0.4.1"
authors = ["the Deno authors"]
edition = "2018"
description = "Rust to V8 serialization and deserialization"