mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 20:38:55 +00:00
v1.11.2
This commit is contained in:
parent
90e3abe8f9
commit
2c0e482221
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -521,7 +521,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno"
|
||||
version = "1.11.1"
|
||||
version = "1.11.2"
|
||||
dependencies = [
|
||||
"atty",
|
||||
"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:
|
||||
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
|
||||
|
||||
- feat(unstable): add additional logging information in LSP (#10890)
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
[package]
|
||||
name = "deno"
|
||||
version = "1.11.1"
|
||||
version = "1.11.2"
|
||||
license = "MIT"
|
||||
authors = ["the Deno authors"]
|
||||
edition = "2018"
|
||||
|
@ -36,6 +36,8 @@ between the crates, it must be done in specific order:
|
||||
- crates in `extensions/` directory
|
||||
- `deno_fetch`, `deno_crypto` and `deno_webstorage` depend on `deno_web`, so
|
||||
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/`
|
||||
directory
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user