Skip to content

Commit

Permalink
chore: merge v1.14.3 into main (denoland#12327)
Browse files Browse the repository at this point in the history
  • Loading branch information
bartlomieju committed Oct 5, 2021
1 parent 80aee99 commit d67e858
Show file tree
Hide file tree
Showing 22 changed files with 147 additions and 121 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ jobs:
~/.cargo/registry/index
~/.cargo/registry/cache
~/.cargo/git/db
key: j-cargo-home-${{ matrix.os }}-${{ hashFiles('Cargo.lock') }}
key: k-cargo-home-${{ matrix.os }}-${{ hashFiles('Cargo.lock') }}

# In main branch, always creates fresh cache
- name: Cache build output (main)
Expand All @@ -276,7 +276,7 @@ jobs:
!./target/*/*.zip
!./target/*/*.tar.gz
key: |
j-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-${{ github.sha }}
k-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-${{ github.sha }}
# Restore cache from the latest 'main' branch build.
- name: Cache build output (PR)
Expand All @@ -292,7 +292,7 @@ jobs:
!./target/*/*.tar.gz
key: never_saved
restore-keys: |
j-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-
k-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-
# Don't save cache after building PRs or branches other than 'main'.
- name: Skip save cache (PR)
Expand Down
46 changes: 23 additions & 23 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 26 additions & 0 deletions Releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,32 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at:
https://github.com/denoland/deno_install

### 1.14.3 / 2021.10.04

- feat(core): implement Deno.core.isProxy() (#12288)
- fix(core/runtime): sync_ops_cache if nuked Deno ns (#12302)
- fix(ext/crypto): decode id-RSASSA-PSS with default params (#12147)
- fix(ext/crypto): missing Aes key typings (#12307)
- fix(ext/crypto): use NotSupportedError for importKey() (#12289)
- fix(ext/fetch): avoid panic when header is invalid (#12244)
- fix(ext/http): merge identical if/else branches (#12269)
- fix(ext/net): should not panic when listening to unix abstract address
(#12300)
- fix(repl): avoid panic when assigned to globalThis (#12273)
- fix(runtime/js/workers): throw errors instead of using an op (#12249)
- fix(runtime/testing): format aggregate errors (#12183)
- fix: Don't panic when a worker is closed in the reactions to a wasm operation.
(#12270)
- fix: worker environment permissions should accept an array (#12250)
- perf(core): use opcall() directly (#12310)
- perf(fetch): optimize fillHeaders() key iteration (#12287)
- perf(web): optimize byteLowerCase() (#12282)
- perf(web): ~400x faster http header trimming (#12277)
- perf(web/Event): move last class field to constructor (#12265)
- perf(webidl): optimize createDictionaryConverter() (#12279)
- perf(webidl): optimize createRecordConverter() (#12286)
- perf(webidl/DOMString): don't wrap string primitives (#12266)

### 1.14.2 / 2021.09.28

- feat(cli/fmt): support more markdown extensions (#12195)
Expand Down
4 changes: 2 additions & 2 deletions bench_util/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
[package]
name = "deno_bench_util"
version = "0.13.0"
version = "0.14.0"
authors = ["the Deno authors"]
edition = "2018"
license = "MIT"
Expand All @@ -14,7 +14,7 @@ description = "Bench and profiling utilities for deno crates"

[dependencies]
bencher = "0.1"
deno_core = { version = "0.101.0", path = "../core" }
deno_core = { version = "0.102.0", path = "../core" }
tokio = { version = "1.10.1", features = ["full"] }

[[bench]]
Expand Down
30 changes: 15 additions & 15 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno"
version = "1.14.2"
version = "1.14.3"
authors = ["the Deno authors"]
default-run = "deno"
edition = "2018"
Expand All @@ -20,17 +20,17 @@ harness = false
path = "./bench/main.rs"

[build-dependencies]
deno_broadcast_channel = { version = "0.13.0", path = "../ext/broadcast_channel" }
deno_console = { version = "0.19.0", path = "../ext/console" }
deno_core = { version = "0.101.0", path = "../core" }
deno_crypto = { version = "0.33.0", path = "../ext/crypto" }
deno_fetch = { version = "0.42.0", path = "../ext/fetch" }
deno_net = { version = "0.11.0", path = "../ext/net" }
deno_url = { version = "0.19.0", path = "../ext/url" }
deno_web = { version = "0.50.0", path = "../ext/web" }
deno_webgpu = { version = "0.20.0", path = "../ext/webgpu" }
deno_websocket = { version = "0.24.0", path = "../ext/websocket" }
deno_webstorage = { version = "0.14.0", path = "../ext/webstorage" }
deno_broadcast_channel = { version = "0.14.0", path = "../ext/broadcast_channel" }
deno_console = { version = "0.20.0", path = "../ext/console" }
deno_core = { version = "0.102.0", path = "../core" }
deno_crypto = { version = "0.34.0", path = "../ext/crypto" }
deno_fetch = { version = "0.43.0", path = "../ext/fetch" }
deno_net = { version = "0.12.0", path = "../ext/net" }
deno_url = { version = "0.20.0", path = "../ext/url" }
deno_web = { version = "0.51.0", path = "../ext/web" }
deno_webgpu = { version = "0.21.0", path = "../ext/webgpu" }
deno_websocket = { version = "0.25.0", path = "../ext/websocket" }
deno_webstorage = { version = "0.15.0", path = "../ext/webstorage" }
regex = "1.5.4"
serde = { version = "1.0.129", features = ["derive"] }

Expand All @@ -40,12 +40,12 @@ winres = "0.1.11"

[dependencies]
deno_ast = { version = "0.2.0", features = ["bundler", "codegen", "dep_graph", "module_specifier", "proposal", "react", "sourcemap", "transforms", "typescript", "view", "visit"] }
deno_core = { version = "0.101.0", path = "../core" }
deno_core = { version = "0.102.0", path = "../core" }
deno_doc = "0.14.0"
deno_graph = "0.5.0"
deno_lint = { version = "0.16.0", features = ["docs"] }
deno_runtime = { version = "0.27.0", path = "../runtime" }
deno_tls = { version = "0.6.0", path = "../ext/tls" }
deno_runtime = { version = "0.28.0", path = "../runtime" }
deno_tls = { version = "0.7.0", path = "../ext/tls" }

atty = "0.2.14"
base64 = "0.13.0"
Expand Down
6 changes: 3 additions & 3 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
[package]
name = "deno_core"
version = "0.101.0"
version = "0.102.0"
authors = ["the Deno authors"]
edition = "2018"
license = "MIT"
Expand All @@ -21,10 +21,10 @@ lazy_static = "1.4.0"
log = "0.4.14"
parking_lot = "0.11.1"
pin-project = "1.0.7"
rusty_v8 = "0.30.0"
rusty_v8 = "0.31.0"
serde = { version = "1.0.129", features = ["derive"] }
serde_json = { version = "1.0.66", features = ["preserve_order"] }
serde_v8 = "0.13.0"
serde_v8 = "0.14.0"
url = { version = "2.2.2", features = ["serde"] }

[[example]]
Expand Down
4 changes: 2 additions & 2 deletions ext/broadcast_channel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno_broadcast_channel"
version = "0.13.0"
version = "0.14.0"
authors = ["the Deno authors"]
edition = "2018"
license = "MIT"
Expand All @@ -15,6 +15,6 @@ path = "lib.rs"

[dependencies]
async-trait = "0.1"
deno_core = { version = "0.101.0", path = "../../core" }
deno_core = { version = "0.102.0", path = "../../core" }
tokio = { version = "1.10.1", features = ["full"] }
uuid = { version = "0.8.2", features = ["v4"] }
4 changes: 2 additions & 2 deletions ext/console/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno_console"
version = "0.19.0"
version = "0.20.0"
authors = ["the Deno authors"]
edition = "2018"
license = "MIT"
Expand All @@ -14,4 +14,4 @@ description = "Implementation of Console API for Deno"
path = "lib.rs"

[dependencies]
deno_core = { version = "0.101.0", path = "../../core" }
deno_core = { version = "0.102.0", path = "../../core" }
6 changes: 3 additions & 3 deletions ext/crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno_crypto"
version = "0.33.0"
version = "0.34.0"
authors = ["the Deno authors"]
edition = "2018"
license = "MIT"
Expand All @@ -14,8 +14,8 @@ description = "Web Cryptography API implementation for Deno"
path = "lib.rs"

[dependencies]
deno_core = { version = "0.101.0", path = "../../core" }
deno_web = { version = "0.50.0", path = "../web" }
deno_core = { version = "0.102.0", path = "../../core" }
deno_web = { version = "0.51.0", path = "../web" }
lazy_static = "1.4.0"
num-traits = "0.2.14"
rand = "0.8.4"
Expand Down
Loading

0 comments on commit d67e858

Please sign in to comment.