mirror of
https://github.com/denoland/deno.git
synced 2025-02-01 12:16:11 -05:00
v1.11.2
This commit is contained in:
parent
90e3abe8f9
commit
2c0e482221
4 changed files with 16 additions and 2 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -521,7 +521,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "deno"
|
name = "deno"
|
||||||
version = "1.11.1"
|
version = "1.11.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"atty",
|
"atty",
|
||||||
"base64 0.13.0",
|
"base64 0.13.0",
|
||||||
|
|
12
Releases.md
12
Releases.md
|
@ -6,6 +6,18 @@ https://github.com/denoland/deno/releases
|
||||||
We also have one-line install commands at:
|
We also have one-line install commands at:
|
||||||
https://github.com/denoland/deno_install
|
https://github.com/denoland/deno_install
|
||||||
|
|
||||||
|
### 1.11.2 / 2021.06.21
|
||||||
|
|
||||||
|
- feat(unstable, lsp): quick fix actions to ignore lint errors (#10627)
|
||||||
|
- fix: add support for module es2020 to Deno.emit (#11065)
|
||||||
|
- fix: align Console to spec (#10983)
|
||||||
|
- fix: align URL / URLSearchParams to spec (#11005)
|
||||||
|
- fix: align Websocket to spec (#11010)
|
||||||
|
- fix: closing / aborting WritableStream is racy (#10982)
|
||||||
|
- fix: fetch with method HEAD should not have body (#11003)
|
||||||
|
- fix: Worker accepts specifier as URL (#11038)
|
||||||
|
- fix(lsp): do not rename in strings and comments (#11041)
|
||||||
|
|
||||||
### 1.11.1 / 2021.06.15
|
### 1.11.1 / 2021.06.15
|
||||||
|
|
||||||
- feat(unstable): add additional logging information in LSP (#10890)
|
- feat(unstable): add additional logging information in LSP (#10890)
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "deno"
|
name = "deno"
|
||||||
version = "1.11.1"
|
version = "1.11.2"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
authors = ["the Deno authors"]
|
authors = ["the Deno authors"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
|
@ -36,6 +36,8 @@ between the crates, it must be done in specific order:
|
||||||
- crates in `extensions/` directory
|
- crates in `extensions/` directory
|
||||||
- `deno_fetch`, `deno_crypto` and `deno_webstorage` depend on `deno_web`, so
|
- `deno_fetch`, `deno_crypto` and `deno_webstorage` depend on `deno_web`, so
|
||||||
the latter must be bumped and released first
|
the latter must be bumped and released first
|
||||||
|
- `deno_url` depends on `deno_webidl`, so the latter must be bumped and
|
||||||
|
released first
|
||||||
- `runtime` - this crate depends on `deno_core` and all crates in `extensions/`
|
- `runtime` - this crate depends on `deno_core` and all crates in `extensions/`
|
||||||
directory
|
directory
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue