This commit is contained in:
Bartek Iwańczuk 2021-06-08 21:38:36 +02:00 committed by GitHub
parent 3a96fe55a0
commit b98293e21c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 30 additions and 2 deletions

2
Cargo.lock generated
View File

@ -521,7 +521,7 @@ dependencies = [
[[package]]
name = "deno"
version = "1.10.3"
version = "1.11.0"
dependencies = [
"atty",
"base64 0.13.0",

View File

@ -6,6 +6,33 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at:
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
- feat(lsp): diagnostics for deno types and triple-slash refs (#10699)

View File

@ -2,7 +2,7 @@
[package]
name = "deno"
version = "1.10.3"
version = "1.11.0"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"

View File

@ -35,6 +35,7 @@ between the crates, it must be done in specific order:
changes
- `deno_core` - all crates depend on `deno_core` so it must always be published
first
- `bench_util`
- crates in `extensions/` directory
- `deno_crypto` and `deno_webstorage` depend on `deno_web`, so the latter must
be bumped and released first