diff --git a/Cargo.lock b/Cargo.lock index 64185bb65a..50e02ae76c 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 a533242269..35e9db430e 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 302712912c..60e7b1cc1f 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 c140725085..def5e209a8 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 2b092fe991..e22016e67e 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 189d565006..06db0a2d6f 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 5295aa9f1d..fa0a6634e7 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 2014178160..0ba969bc1a 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 cab6f56662..f9f17e427a 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 32cf02e86d..afdbf2e4cd 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 70a880e0d0..57f82bba8f 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 e8a6f480e9..1d0cd54113 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 4a1c25db27..a1609fea83 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 ad6b2d57b5..f2842c5c28 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 129aeb7ca0..7e2a82b99e 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 506014b170..b72970bbd7 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 c2cf00b0b1..786b7f5520 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 1e320956f8..78a064626a 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"