Skip to content

Commit

Permalink
v1.10.3
Browse files Browse the repository at this point in the history
  • Loading branch information
piscisaureus committed May 31, 2021
1 parent 2c1f37b commit 1567c10
Show file tree
Hide file tree
Showing 18 changed files with 116 additions and 73 deletions.
30 changes: 15 additions & 15 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

44 changes: 44 additions & 0 deletions Releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion bench_util/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
10 changes: 5 additions & 5 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno"
version = "1.10.2"
version = "1.10.3"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"
Expand All @@ -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"] }

Expand All @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"]
Expand All @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions extensions/console/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand All @@ -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" }
5 changes: 2 additions & 3 deletions extensions/crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand All @@ -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"

6 changes: 3 additions & 3 deletions extensions/fetch/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand All @@ -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"] }
Expand Down
4 changes: 2 additions & 2 deletions extensions/file/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand All @@ -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"] }
4 changes: 2 additions & 2 deletions extensions/timers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand All @@ -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"] }
4 changes: 2 additions & 2 deletions extensions/url/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand All @@ -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"] }
Expand Down
4 changes: 2 additions & 2 deletions extensions/web/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand All @@ -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"
4 changes: 2 additions & 2 deletions extensions/webgpu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand All @@ -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"] }
Expand Down
4 changes: 2 additions & 2 deletions extensions/webidl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand All @@ -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" }
Loading

0 comments on commit 1567c10

Please sign in to comment.