mirror of
https://github.com/denoland/deno.git
synced 2025-01-11 16:42:21 -05:00
v1.8.2
This commit is contained in:
parent
c08284ab9d
commit
f50ed4e281
4 changed files with 32 additions and 4 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
@ -92,8 +92,8 @@ jobs:
|
||||||
target/*/.*
|
target/*/.*
|
||||||
target/*/build
|
target/*/build
|
||||||
target/*/deps
|
target/*/deps
|
||||||
key: cargo-cache-a-${{ runner.os }}-${{ hashFiles('Cargo.lock') }}
|
key: cargo-cache-b-${{ runner.os }}-${{ hashFiles('Cargo.lock') }}
|
||||||
restore-keys: cargo-cache-a-${{ runner.os }}-
|
restore-keys: cargo-cache-b-${{ runner.os }}-
|
||||||
|
|
||||||
- name: Install rust
|
- name: Install rust
|
||||||
uses: hecrj/setup-rust-action@v1
|
uses: hecrj/setup-rust-action@v1
|
||||||
|
|
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -488,7 +488,7 @@ checksum = "3ee2393c4a91429dffb4bedf19f4d6abf27d8a732c8ce4980305d782e5426d57"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "deno"
|
name = "deno"
|
||||||
version = "1.8.1"
|
version = "1.8.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"atty",
|
"atty",
|
||||||
"base64 0.13.0",
|
"base64 0.13.0",
|
||||||
|
|
28
Releases.md
28
Releases.md
|
@ -6,6 +6,34 @@ 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.8.2 / 2021.03.21
|
||||||
|
|
||||||
|
- fix: fallback to default UA and CA data for Deno.createHttpClient() (#9830)
|
||||||
|
- fix: getBindGroupLayout always illegal invocation (#9684)
|
||||||
|
- fix(cli/bundle): display anyhow error chain (#9822)
|
||||||
|
- fix(core): don't panic on invalid arguments for Deno.core.print (#9834)
|
||||||
|
- fix(doc): update example for sub processes (#9798)
|
||||||
|
- fix(fmt): Correctly format hard breaks in markdown (#9742)
|
||||||
|
- fix(lsp): allow on disk files to change (#9746)
|
||||||
|
- fix(lsp): diagnostics use own thread and debounce (#9572)
|
||||||
|
- fix(op_crates/webgpu): create instance only when required (#9771)
|
||||||
|
- fix(runtime): do not require deno namespace in workers for crypto (#9784)
|
||||||
|
- refactor: enforce type ResourceId across codebase (#9837, #9832)
|
||||||
|
- refactor: Clean up permission handling (#9367)
|
||||||
|
- refactor: Move bin ops to deno_core and unify logic with json ops (#9457)
|
||||||
|
- refactor: Move Console to op_crates/console (#9770)
|
||||||
|
- refactor: Split web op crate (#9635)
|
||||||
|
- refactor: Simplify icu data alignment (#9766)
|
||||||
|
- refactor: Update minimal ops & rename to buffer ops (#9719)
|
||||||
|
- refactor: Use serde ops more (#9817, #9828)
|
||||||
|
- refactor(lsp): refactor completions and add tests (#9789)
|
||||||
|
- refactor(lsp): slightly reorganize diagnostics debounce logic (#9796)
|
||||||
|
- upgrade: rusty_v8 0.21.0 (#9725)
|
||||||
|
- upgrade: tokio 1.4.0 (#9842)
|
||||||
|
|
||||||
|
Release notes for std version 0.91.0:
|
||||||
|
https://github.com/denoland/deno_std/releases/tag/0.91.0
|
||||||
|
|
||||||
### 1.8.1 / 2021.03.09
|
### 1.8.1 / 2021.03.09
|
||||||
|
|
||||||
- fix(cli/ast): Pass importsNotUsedAsValues to swc (#9714)
|
- fix(cli/ast): Pass importsNotUsedAsValues to swc (#9714)
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "deno"
|
name = "deno"
|
||||||
version = "1.8.1"
|
version = "1.8.2"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
authors = ["the Deno authors"]
|
authors = ["the Deno authors"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
Loading…
Reference in a new issue