mirror of
https://github.com/denoland/deno.git
synced 2024-11-24 15:19:26 -05:00
v1.11.0
This commit is contained in:
parent
3a96fe55a0
commit
b98293e21c
4 changed files with 30 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.10.3"
|
version = "1.11.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"atty",
|
"atty",
|
||||||
"base64 0.13.0",
|
"base64 0.13.0",
|
||||||
|
|
27
Releases.md
27
Releases.md
|
@ -6,6 +6,33 @@ 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.0 / 2021.06.08
|
||||||
|
|
||||||
|
- feat: Add FsWatcher interface (#10798)
|
||||||
|
- feat: Add origin data dir to deno info (#10589)
|
||||||
|
- feat: Initialize runtime_compiler ops in `deno compile` (#10052)
|
||||||
|
- feat: Make 'deno lint' stable (#10851)
|
||||||
|
- feat: Support data uri dynamic imports in `deno compile` (#9936)
|
||||||
|
- feat: upgrade to TypeScript 4.3 (#9960)
|
||||||
|
- feat(extensions): add BroadcastChannel
|
||||||
|
- feat(extensions/crypto): implement randomUUID (#10848)
|
||||||
|
- feat(extensions/crypto): implement subtle.digest (#10796)
|
||||||
|
- feat(extensions/fetch): implement abort (#10863)
|
||||||
|
- feat(extensions/web): Implement TextDecoderStream and TextEncoderStream
|
||||||
|
(#10842)
|
||||||
|
- feat(lsp): add test code lens (#10874)
|
||||||
|
- feat(lsp): registry auto discovery (#10813)
|
||||||
|
- fix: change Crypto to interface (#10853)
|
||||||
|
- fix: Support the stream option to TextDecoder#decode (#10805)
|
||||||
|
- fix(extensions/fetch): implement newline normalization and escapes in the
|
||||||
|
multipart/form-data serializer (#10832)
|
||||||
|
- fix(runtime/http): Hang in `Deno.serveHttp` (#10836)
|
||||||
|
- fix(streams): expose ReadableByteStreamController &
|
||||||
|
TransformStreamDefaultController (#10855)
|
||||||
|
|
||||||
|
Release notes for std version 0.98.0:
|
||||||
|
https://github.com/denoland/deno_std/releases/tag/0.98.0
|
||||||
|
|
||||||
### 1.10.3 / 2021.05.31
|
### 1.10.3 / 2021.05.31
|
||||||
|
|
||||||
- feat(lsp): diagnostics for deno types and triple-slash refs (#10699)
|
- feat(lsp): diagnostics for deno types and triple-slash refs (#10699)
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "deno"
|
name = "deno"
|
||||||
version = "1.10.3"
|
version = "1.11.0"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
authors = ["the Deno authors"]
|
authors = ["the Deno authors"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
|
@ -35,6 +35,7 @@ between the crates, it must be done in specific order:
|
||||||
changes
|
changes
|
||||||
- `deno_core` - all crates depend on `deno_core` so it must always be published
|
- `deno_core` - all crates depend on `deno_core` so it must always be published
|
||||||
first
|
first
|
||||||
|
- `bench_util`
|
||||||
- crates in `extensions/` directory
|
- crates in `extensions/` directory
|
||||||
- `deno_crypto` and `deno_webstorage` depend on `deno_web`, so the latter must
|
- `deno_crypto` and `deno_webstorage` depend on `deno_web`, so the latter must
|
||||||
be bumped and released first
|
be bumped and released first
|
||||||
|
|
Loading…
Reference in a new issue