Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: forward v1.32.2 release commit to main #18539

Merged
merged 2 commits into from
Apr 1, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
1.32.2 (#18533)
Bumped versions for 1.32.2

---------

Co-authored-by: mmastrac <[email protected]>
Co-authored-by: Matt Mastracci <[email protected]>
  • Loading branch information
3 people authored and dsherret committed Mar 31, 2023
commit c5f58fc6fd50650017db553fb883508a4e131549
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.177.0", path = "./core" }
deno_ops = { version = "0.55.0", path = "./ops" }
serde_v8 = { version = "0.88.0", path = "./serde_v8" }
deno_runtime = { version = "0.103.0", path = "./runtime" }
napi_sym = { version = "0.25.0", path = "./cli/napi/sym" }
deno_bench_util = { version = "0.89.0", path = "./bench_util" }
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" }
test_util = { path = "./test_util" }
deno_lockfile = { version = "0.11.0", path = "./lockfile" }
deno_lockfile = { version = "0.12.0", path = "./lockfile" }

# exts
deno_broadcast_channel = { version = "0.89.0", path = "./ext/broadcast_channel" }
deno_cache = { version = "0.27.0", path = "./ext/cache" }
deno_console = { version = "0.95.0", path = "./ext/console" }
deno_crypto = { version = "0.109.0", path = "./ext/crypto" }
deno_fetch = { version = "0.119.0", path = "./ext/fetch" }
deno_ffi = { version = "0.82.0", path = "./ext/ffi" }
deno_flash = { version = "0.31.0", path = "./ext/flash" }
deno_fs = { version = "0.5.0", path = "./ext/fs" }
deno_http = { version = "0.90.0", path = "./ext/http" }
deno_io = { version = "0.5.0", path = "./ext/io" }
deno_net = { version = "0.87.0", path = "./ext/net" }
deno_node = { version = "0.32.0", path = "./ext/node" }
deno_kv = { version = "0.3.0", path = "./ext/kv" }
deno_tls = { version = "0.82.0", path = "./ext/tls" }
deno_url = { version = "0.95.0", path = "./ext/url" }
deno_web = { version = "0.126.0", path = "./ext/web" }
deno_webidl = { version = "0.95.0", path = "./ext/webidl" }
deno_websocket = { version = "0.100.0", path = "./ext/websocket" }
deno_webstorage = { version = "0.90.0", path = "./ext/webstorage" }
deno_napi = { version = "0.25.0", path = "./ext/napi" }
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" }

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

### 1.32.2 / 2023.03.31

- Revert "refactor(ext/node): Use Deno.inspect (#17960)" (#18491)
- feat(core): initialize SQLite off-main-thread (#18401)
- feat(ext/kv): return versionstamp from set/commit (#18512)
- feat(ext/node): add `crypto.checkPrime` API (#18465)
- feat(ext/node): implement crypto.createSecretKey (#18413)
- feat(test): print pending tests on sigint (#18246)
- feat: port node:zlib to rust (#18291)
- fix(cli): add colors to "Module not found" error frame (#18437)
- fix(cli): don't store blob and data urls in the module cache (#18261)
- fix(cli/bench): look for clone3 syscalls for thread count (#18456)
- fix(core): located_script_name macro was using format syntax (#18388)
- fix(core): panic at build time if extension code contains anything other than
7-bit ASCII (#18372)
- fix(core): restore cache journal mode to TRUNCATE and tweak tokio test in
CacheDB (#18469)
- fix(coverage): ignore files from npm registry (#18457)
- fix(dts): improve types for the Deno.KV API (#18510)
- fix(ext/kv): add missing `getMany` method (#18410)
- fix(ext/node): add aes-128-ecb algorithm support (#18412)
- fix(ext/node): add missing _preloadModules hook (#18447)
- fix(ext/node): implement crypto.Sign (RSA/PEM/SHA{224,256,384,512}) (#18471)
- fix(ext/node): make cipher/decipher transform stream (#18408)
- fix(lsp): `textDocument/references` should respect `includeDeclaration`
(#18496)
- fix(lsp): better handling of `data:` urls (#18527)
- fix(lsp): include all diagnosable documents on initialize (#17979)
- fix(ops): fallback when FastApiOneByteString is not utf8 (#18518)
- fix(repl): improve package.json support (#18497)
- fix(streams): add support `Float64Array` to `ReadableStreamByobReader`
(#18188)
- fix: Add missing `processenv` winapi feature to deno_io (#18485)
- fix: upgrade to TypeScript 5.0.3 (#18532)
- perf(ext/websocket): efficient event kind serialization (#18509)
- perf(ext/websocket): special op for sending binary data frames (#18506)
- perf(ext/websocket): special op for sending text data frames (#18507)
- perf(ext/websocket): use opAsync2 to avoid spread deopt (#18525)
- perf: `const` op declaration (#18288)

### 1.32.1 / 2023.03.23

- fix(core): disable resizable ArrayBuffer and growable SharedArrayBuffer
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.89.0"
version = "0.90.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.1"
version = "1.32.2"
authors.workspace = true
default-run = "deno"
edition.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion cli/deno_std.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

// WARNING: Ensure this is the only deno_std version reference as this
// is automatically updated by the version bump workflow.
pub const CURRENT_STD_URL_STR: &str = "https://deno.land/std@0.181.0/";
pub const CURRENT_STD_URL_STR: &str = "https://deno.land/std@0.182.0/";
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.25.0"
version = "0.26.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
Loading