Skip to content

Commit

Permalink
v1.11.3
Browse files Browse the repository at this point in the history
Co-authored-by: Ryan Dahl <ry@tinyclouds.org>
  • Loading branch information
lucacasonato and ry authored Jul 1, 2021
1 parent 1a59849 commit 0385a99
Show file tree
Hide file tree
Showing 15 changed files with 77 additions and 53 deletions.
26 changes: 13 additions & 13 deletions Cargo.lock

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

24 changes: 24 additions & 0 deletions Releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,30 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at:
https://github.com/denoland/deno_install

### 1.11.3 / 2021.06.29

- fix(#10761): graph errors reported as diagnostics for `Deno.emit()` (#10767)
- fix(core): don't panic on stdout/stderr write failures in Deno.core.print
(#11039)
- fix(core): top-level-await is now always enabled (#11082)
- fix(extensions/fetch): Filter out custom HOST headers (#11020)
- fix(fetch): proxy body for requests created from other requests (#11093)
- fix(http): remove unwrap() in HTTP bindings (#11130)
- fix(inspect): eliminate panic inspecting event classes (#10979)
- fix(lsp): reload import registries should not error when the module registries
directory does not exist (#11123)
- fix(runtime): fix signal promise API (#11069)
- fix(runtime/signal): use op_async_unref for op_signal_poll (#11097)
- fix(url): use USVStrings in URLSearchParams constructor (#11101)
- fix(webstorage): increase localStorage limit to 10MB (#11081)
- fix: make readonly `Event` properties readonly (#11106)
- fix: specify AbortSignal for native http requests (#11126)
- chore: upgrade crates (#11007)
- chore: use lsp to get parent process id (#11083)

Release notes for std version 0.100.0:
https://github.com/denoland/deno_std/releases/tag/0.100.0

### 1.11.2 / 2021.06.21

- feat(unstable, lsp): quick fix actions to ignore lint errors (#10627)
Expand Down
4 changes: 2 additions & 2 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.11.2"
version = "1.11.3"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"
Expand Down Expand Up @@ -44,7 +44,7 @@ winres = "0.1.11"
deno_core = { version = "0.92.0", path = "../core" }
deno_doc = "0.7.0"
deno_lint = "0.8.0"
deno_runtime = { version = "0.18.0", path = "../runtime" }
deno_runtime = { version = "0.18.1", path = "../runtime" }

atty = "0.2.14"
base64 = "0.13.0"
Expand Down
2 changes: 1 addition & 1 deletion extensions/broadcast_channel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno_broadcast_channel"
version = "0.4.0"
version = "0.4.1"
edition = "2018"
description = "Implementation of BroadcastChannel API for Deno"
authors = ["the Deno authors"]
Expand Down
2 changes: 1 addition & 1 deletion 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.10.0"
version = "0.10.1"
edition = "2018"
description = "Implementation of Console API for Deno"
authors = ["the Deno authors"]
Expand Down
4 changes: 2 additions & 2 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.24.0"
version = "0.24.1"
edition = "2018"
description = "Web Cryptography API implementation for Deno"
authors = ["the Deno authors"]
Expand All @@ -15,7 +15,7 @@ path = "lib.rs"

[dependencies]
deno_core = { version = "0.92.0", path = "../../core" }
deno_web = { version = "0.41.0", path = "../web" }
deno_web = { version = "0.41.1", path = "../web" }
tokio = { version = "1.7.1", features = ["full"] }
rand = "0.8.3"
ring = "0.16.20"
Expand Down
4 changes: 2 additions & 2 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.32.0"
version = "0.32.1"
edition = "2018"
description = "Fetch API implementation for Deno"
authors = ["the Deno authors"]
Expand All @@ -17,7 +17,7 @@ path = "lib.rs"
bytes = "1.0.1"
data-url = "0.1.0"
deno_core = { version = "0.92.0", path = "../../core" }
deno_web = { version = "0.41.0", path = "../web" }
deno_web = { version = "0.41.1", path = "../web" }
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
2 changes: 1 addition & 1 deletion 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.8.0"
version = "0.8.1"
edition = "2018"
description = "Timers API implementation for Deno"
authors = ["the Deno authors"]
Expand Down
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.10.0"
version = "0.10.1"
edition = "2018"
description = "URL API implementation for Deno"
authors = ["the Deno authors"]
Expand All @@ -21,7 +21,7 @@ serde = { version = "1.0.125", features = ["derive"] }

[dev-dependencies]
deno_bench_util = { version = "0.4.0", path = "../../bench_util" }
deno_webidl = { version = "0.10.0", path = "../webidl" }
deno_webidl = { version = "0.10.1", path = "../webidl" }

[[bench]]
name = "url_ops"
Expand Down
2 changes: 1 addition & 1 deletion 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.41.0"
version = "0.41.1"
edition = "2018"
description = "Collection of Web APIs"
authors = ["the Deno authors"]
Expand Down
2 changes: 1 addition & 1 deletion 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.11.0"
version = "0.11.1"
edition = "2018"
description = "WebGPU implementation for Deno"
authors = ["the Deno authors"]
Expand Down
2 changes: 1 addition & 1 deletion 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.10.0"
version = "0.10.1"
edition = "2018"
description = "WebIDL implementation for Deno"
authors = ["the Deno authors"]
Expand Down
2 changes: 1 addition & 1 deletion extensions/websocket/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno_websocket"
version = "0.15.0"
version = "0.15.1"
edition = "2018"
description = "Implementation of WebSocket API for Deno"
authors = ["the Deno authors"]
Expand Down
4 changes: 2 additions & 2 deletions extensions/webstorage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno_webstorage"
version = "0.5.0"
version = "0.5.1"
edition = "2018"
description = "Implementation of WebStorage API for Deno"
authors = ["the Deno authors"]
Expand All @@ -15,6 +15,6 @@ path = "lib.rs"

[dependencies]
deno_core = { version = "0.92.0", path = "../../core" }
deno_web = { version = "0.41.0", path = "../web" }
deno_web = { version = "0.41.1", path = "../web" }
rusqlite = { version = "0.25.3", features = ["unlock_notify", "bundled"] }
serde = { version = "1.0.125", features = ["derive"] }
46 changes: 23 additions & 23 deletions runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno_runtime"
version = "0.18.0"
version = "0.18.1"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"
Expand All @@ -18,38 +18,38 @@ name = "hello_runtime"
path = "examples/hello_runtime.rs"

[build-dependencies]
deno_broadcast_channel = { version = "0.4.0", path = "../extensions/broadcast_channel" }
deno_console = { version = "0.10.0", path = "../extensions/console" }
deno_broadcast_channel = { version = "0.4.1", path = "../extensions/broadcast_channel" }
deno_console = { version = "0.10.1", path = "../extensions/console" }
deno_core = { version = "0.92.0", path = "../core" }
deno_crypto = { version = "0.24.0", path = "../extensions/crypto" }
deno_fetch = { version = "0.32.0", path = "../extensions/fetch" }
deno_crypto = { version = "0.24.1", path = "../extensions/crypto" }
deno_fetch = { version = "0.32.1", path = "../extensions/fetch" }
deno_net = { version = "0.1.0", path = "../extensions/net" }
deno_timers = { version = "0.8.0", path = "../extensions/timers" }
deno_url = { version = "0.10.0", path = "../extensions/url" }
deno_web = { version = "0.41.0", path = "../extensions/web" }
deno_webgpu = { version = "0.11.0", path = "../extensions/webgpu" }
deno_webidl = { version = "0.10.0", path = "../extensions/webidl" }
deno_websocket = { version = "0.15.0", path = "../extensions/websocket" }
deno_webstorage = { version = "0.5.0", path = "../extensions/webstorage" }
deno_timers = { version = "0.8.1", path = "../extensions/timers" }
deno_url = { version = "0.10.1", path = "../extensions/url" }
deno_web = { version = "0.41.1", path = "../extensions/web" }
deno_webgpu = { version = "0.11.1", path = "../extensions/webgpu" }
deno_webidl = { version = "0.10.1", path = "../extensions/webidl" }
deno_websocket = { version = "0.15.1", path = "../extensions/websocket" }
deno_webstorage = { version = "0.5.1", path = "../extensions/webstorage" }

[target.'cfg(windows)'.build-dependencies]
winres = "0.1.11"
winapi = "0.3.9"

[dependencies]
deno_broadcast_channel = { version = "0.4.0", path = "../extensions/broadcast_channel" }
deno_console = { version = "0.10.0", path = "../extensions/console" }
deno_broadcast_channel = { version = "0.4.1", path = "../extensions/broadcast_channel" }
deno_console = { version = "0.10.1", path = "../extensions/console" }
deno_core = { version = "0.92.0", path = "../core" }
deno_crypto = { version = "0.24.0", path = "../extensions/crypto" }
deno_fetch = { version = "0.32.0", path = "../extensions/fetch" }
deno_crypto = { version = "0.24.1", path = "../extensions/crypto" }
deno_fetch = { version = "0.32.1", path = "../extensions/fetch" }
deno_net = { version = "0.1.0", path = "../extensions/net" }
deno_timers = { version = "0.8.0", path = "../extensions/timers" }
deno_url = { version = "0.10.0", path = "../extensions/url" }
deno_web = { version = "0.41.0", path = "../extensions/web" }
deno_webgpu = { version = "0.11.0", path = "../extensions/webgpu" }
deno_webidl = { version = "0.10.0", path = "../extensions/webidl" }
deno_websocket = { version = "0.15.0", path = "../extensions/websocket" }
deno_webstorage = { version = "0.5.0", path = "../extensions/webstorage" }
deno_timers = { version = "0.8.1", path = "../extensions/timers" }
deno_url = { version = "0.10.1", path = "../extensions/url" }
deno_web = { version = "0.41.1", path = "../extensions/web" }
deno_webgpu = { version = "0.11.1", path = "../extensions/webgpu" }
deno_webidl = { version = "0.10.1", path = "../extensions/webidl" }
deno_websocket = { version = "0.15.1", path = "../extensions/websocket" }
deno_webstorage = { version = "0.5.1", path = "../extensions/webstorage" }

atty = "0.2.14"
dlopen = "0.1.8"
Expand Down

0 comments on commit 0385a99

Please sign in to comment.