Skip to content

Commit

Permalink
1.32.3 (denoland#18558)
Browse files Browse the repository at this point in the history
Co-authored-by: David Sherret <[email protected]>
  • Loading branch information
denobot and dsherret committed Apr 1, 2023
1 parent f6f48bc commit 73d4721
Show file tree
Hide file tree
Showing 31 changed files with 93 additions and 83 deletions.
56 changes: 28 additions & 28 deletions Cargo.lock

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

54 changes: 27 additions & 27 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,36 +46,36 @@ repository = "https://github.com/denoland/deno"
v8 = { version = "0.68.0", default-features = false }
deno_ast = { version = "0.25.0", features = ["transpiling"] }

deno_core = { version = "0.178.0", path = "./core" }
deno_ops = { version = "0.56.0", path = "./ops" }
serde_v8 = { version = "0.89.0", path = "./serde_v8" }
deno_runtime = { version = "0.104.0", path = "./runtime" }
napi_sym = { version = "0.26.0", path = "./cli/napi/sym" }
deno_bench_util = { version = "0.90.0", path = "./bench_util" }
deno_core = { version = "0.179.0", path = "./core" }
deno_ops = { version = "0.57.0", path = "./ops" }
serde_v8 = { version = "0.90.0", path = "./serde_v8" }
deno_runtime = { version = "0.105.0", path = "./runtime" }
napi_sym = { version = "0.27.0", path = "./cli/napi/sym" }
deno_bench_util = { version = "0.91.0", path = "./bench_util" }
test_util = { path = "./test_util" }
deno_lockfile = { version = "0.12.0", path = "./lockfile" }
deno_lockfile = { version = "0.13.0", path = "./lockfile" }

# exts
deno_broadcast_channel = { version = "0.90.0", path = "./ext/broadcast_channel" }
deno_cache = { version = "0.28.0", path = "./ext/cache" }
deno_console = { version = "0.96.0", path = "./ext/console" }
deno_crypto = { version = "0.110.0", path = "./ext/crypto" }
deno_fetch = { version = "0.120.0", path = "./ext/fetch" }
deno_ffi = { version = "0.83.0", path = "./ext/ffi" }
deno_flash = { version = "0.32.0", path = "./ext/flash" }
deno_fs = { version = "0.6.0", path = "./ext/fs" }
deno_http = { version = "0.91.0", path = "./ext/http" }
deno_io = { version = "0.6.0", path = "./ext/io" }
deno_net = { version = "0.88.0", path = "./ext/net" }
deno_node = { version = "0.33.0", path = "./ext/node" }
deno_kv = { version = "0.4.0", path = "./ext/kv" }
deno_tls = { version = "0.83.0", path = "./ext/tls" }
deno_url = { version = "0.96.0", path = "./ext/url" }
deno_web = { version = "0.127.0", path = "./ext/web" }
deno_webidl = { version = "0.96.0", path = "./ext/webidl" }
deno_websocket = { version = "0.101.0", path = "./ext/websocket" }
deno_webstorage = { version = "0.91.0", path = "./ext/webstorage" }
deno_napi = { version = "0.26.0", path = "./ext/napi" }
deno_broadcast_channel = { version = "0.91.0", path = "./ext/broadcast_channel" }
deno_cache = { version = "0.29.0", path = "./ext/cache" }
deno_console = { version = "0.97.0", path = "./ext/console" }
deno_crypto = { version = "0.111.0", path = "./ext/crypto" }
deno_fetch = { version = "0.121.0", path = "./ext/fetch" }
deno_ffi = { version = "0.84.0", path = "./ext/ffi" }
deno_flash = { version = "0.33.0", path = "./ext/flash" }
deno_fs = { version = "0.7.0", path = "./ext/fs" }
deno_http = { version = "0.92.0", path = "./ext/http" }
deno_io = { version = "0.7.0", path = "./ext/io" }
deno_net = { version = "0.89.0", path = "./ext/net" }
deno_node = { version = "0.34.0", path = "./ext/node" }
deno_kv = { version = "0.5.0", path = "./ext/kv" }
deno_tls = { version = "0.84.0", path = "./ext/tls" }
deno_url = { version = "0.97.0", path = "./ext/url" }
deno_web = { version = "0.128.0", path = "./ext/web" }
deno_webidl = { version = "0.97.0", path = "./ext/webidl" }
deno_websocket = { version = "0.102.0", path = "./ext/websocket" }
deno_webstorage = { version = "0.92.0", path = "./ext/webstorage" }
deno_napi = { version = "0.27.0", path = "./ext/napi" }

aes = "=0.8.2"
anyhow = "1.0.57"
Expand Down
10 changes: 10 additions & 0 deletions Releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at:
https://github.com/denoland/deno_install

### 1.32.3 / 2023.04.01

- fix(check): ensure diagnostics caused by changes in other files get
invalidated between runs (#18541)
- fix(ext/ffi): crash when same reference struct is used in two fields (#18531)
- fix(lsp): add a document preload file system entry limit (#18553)
- fix(repl): disable language server document preloading in the repl (#18543)
- fix(test): don't swallow sanitizer errors with permissions (#18550)
- perf(check): faster source hashing (#18534)

### 1.32.2 / 2023.03.31

- Revert "refactor(ext/node): Use Deno.inspect (#17960)" (#18491)
Expand Down
2 changes: 1 addition & 1 deletion bench_util/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno_bench_util"
version = "0.90.0"
version = "0.91.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno"
version = "1.32.2"
version = "1.32.3"
authors.workspace = true
default-run = "deno"
edition.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion cli/napi/sym/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "napi_sym"
version = "0.26.0"
version = "0.27.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno_core"
version = "0.178.0"
version = "0.179.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion 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.90.0"
version = "0.91.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion ext/cache/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno_cache"
version = "0.28.0"
version = "0.29.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion 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.96.0"
version = "0.97.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
Loading

0 comments on commit 73d4721

Please sign in to comment.