Skip to content

Commit

Permalink
1.32.4 (denoland#18668)
Browse files Browse the repository at this point in the history
Bumped versions for 1.32.4

Please ensure:
- [x] Target branch is correct
- [x] Crate versions are bumped correctly
- [x] deno_std version is incremented in the code (see
`cli/deno_std.rs`)
- [x] Releases.md is updated correctly

To make edits to this PR:
```shell
git fetch upstream release_1_32.4 && git checkout -b release_1_32.4 upstream/release_1_32.4
```

cc @levex

Co-authored-by: levex <[email protected]>
  • Loading branch information
denobot and levex committed Apr 12, 2023
1 parent e9f41be commit 709cfd6
Show file tree
Hide file tree
Showing 30 changed files with 101 additions and 78 deletions.
52 changes: 26 additions & 26 deletions Cargo.lock

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

50 changes: 25 additions & 25 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,35 +44,35 @@ 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.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" }
deno_core = { version = "0.180.0", path = "./core" }
deno_ops = { version = "0.58.0", path = "./ops" }
serde_v8 = { version = "0.91.0", path = "./serde_v8" }
deno_runtime = { version = "0.106.0", path = "./runtime" }
napi_sym = { version = "0.28.0", path = "./cli/napi/sym" }
deno_bench_util = { version = "0.92.0", path = "./bench_util" }
test_util = { path = "./test_util" }
deno_lockfile = "0.13.0"

# exts
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_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" }
deno_broadcast_channel = { version = "0.92.0", path = "./ext/broadcast_channel" }
deno_cache = { version = "0.30.0", path = "./ext/cache" }
deno_console = { version = "0.98.0", path = "./ext/console" }
deno_crypto = { version = "0.112.0", path = "./ext/crypto" }
deno_fetch = { version = "0.122.0", path = "./ext/fetch" }
deno_ffi = { version = "0.85.0", path = "./ext/ffi" }
deno_fs = { version = "0.8.0", path = "./ext/fs" }
deno_http = { version = "0.93.0", path = "./ext/http" }
deno_io = { version = "0.8.0", path = "./ext/io" }
deno_net = { version = "0.90.0", path = "./ext/net" }
deno_node = { version = "0.35.0", path = "./ext/node" }
deno_kv = { version = "0.6.0", path = "./ext/kv" }
deno_tls = { version = "0.85.0", path = "./ext/tls" }
deno_url = { version = "0.98.0", path = "./ext/url" }
deno_web = { version = "0.129.0", path = "./ext/web" }
deno_webidl = { version = "0.98.0", path = "./ext/webidl" }
deno_websocket = { version = "0.103.0", path = "./ext/websocket" }
deno_webstorage = { version = "0.93.0", path = "./ext/webstorage" }
deno_napi = { version = "0.28.0", path = "./ext/napi" }

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

### 1.32.4 / 2023.04.12

- Revert "fix(cli): don't store blob and data urls in the module cache (#18261)"
(#18572)
- feat(core): sync io ops in core (#18603)
- feat(ext/http): add an op to perform raw HTTP upgrade (#18511)
- fix(core): preserve syntax error locations in dynamic imports (#18664)
- fix(ext/cache): cache.put overwrites previous call (#18649)
- fix(ext/kv): keys must be arrays (#18655)
- fix(ext/node): add X509Certificate (#18625)
- fix(ext/node): add symmetric keygen (#18609)
- fix(ext/node): fix unable to resolve fraction.js (#18544)
- fix(ext/node): implement hkdf-expand (#18612)
- fix(ext/node): json encode binary command name (#18596)
- fix(npm): cache bust npm specifiers more aggressively (#18636)
- fix(npm): do not "npm install" when npm specifier happens to match
package.json entry (#18660)
- fix(npm): reload an npm package's dependency's information when version not
found (#18622)
- perf(ext/io): remove a data copy from File write (#18601)
- perf(ext/websocket): replace tokio_tungstenite server with fastwebsockets
(#18587)

### 1.32.3 / 2023.04.01

- fix(check): ensure diagnostics caused by changes in other files get
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.91.0"
version = "0.92.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.3"
version = "1.32.4"
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.182.0/";
pub const CURRENT_STD_URL_STR: &str = "https://deno.land/std@0.183.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.27.0"
version = "0.28.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.179.0"
version = "0.180.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.91.0"
version = "0.92.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.29.0"
version = "0.30.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.97.0"
version = "0.98.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down

0 comments on commit 709cfd6

Please sign in to comment.