Skip to content

Commit

Permalink
chore: forward v1.33.2 release commit to main (denoland#18990)
Browse files Browse the repository at this point in the history
**THIS PR HAS GIT CONFLICTS THAT MUST BE RESOLVED**

This is the release commit being forwarded back to main for 1.33.2

Please ensure:
- [x] Everything looks ok in the PR
- [x] The release has been published

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

Don't need this PR? Close it.

cc @levex

Co-authored-by: levex <[email protected]>
Co-authored-by: Levente Kurusa <[email protected]>
  • Loading branch information
3 people committed May 4, 2023
1 parent 8382ada commit 4b64567
Show file tree
Hide file tree
Showing 30 changed files with 103 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,38 +44,38 @@ repository = "https://github.com/denoland/deno"
v8 = { version = "0.71.0", default-features = false }
deno_ast = { version = "0.26.0", features = ["transpiling"] }

deno_core = { version = "0.184.0", path = "./core" }
deno_ops = { version = "0.62.0", path = "./ops" }
serde_v8 = { version = "0.95.0", path = "./serde_v8" }
deno_runtime = { version = "0.110.0", path = "./runtime" }
napi_sym = { version = "0.32.0", path = "./cli/napi/sym" }
deno_bench_util = { version = "0.96.0", path = "./bench_util" }
deno_core = { version = "0.185.0", path = "./core" }
deno_ops = { version = "0.63.0", path = "./ops" }
serde_v8 = { version = "0.96.0", path = "./serde_v8" }
deno_runtime = { version = "0.111.0", path = "./runtime" }
napi_sym = { version = "0.33.0", path = "./cli/napi/sym" }
deno_bench_util = { version = "0.97.0", path = "./bench_util" }
test_util = { path = "./test_util" }
deno_lockfile = "0.13.0"
deno_media_type = { version = "0.1.0", features = ["module_specifier"] }
deno_npm = "0.3.0"
deno_semver = "0.2.1"

# exts
deno_broadcast_channel = { version = "0.96.0", path = "./ext/broadcast_channel" }
deno_cache = { version = "0.34.0", path = "./ext/cache" }
deno_console = { version = "0.102.0", path = "./ext/console" }
deno_crypto = { version = "0.116.0", path = "./ext/crypto" }
deno_fetch = { version = "0.126.0", path = "./ext/fetch" }
deno_ffi = { version = "0.89.0", path = "./ext/ffi" }
deno_fs = { version = "0.12.0", path = "./ext/fs" }
deno_http = { version = "0.97.0", path = "./ext/http" }
deno_io = { version = "0.12.0", path = "./ext/io" }
deno_net = { version = "0.94.0", path = "./ext/net" }
deno_node = { version = "0.39.0", path = "./ext/node" }
deno_kv = { version = "0.10.0", path = "./ext/kv" }
deno_tls = { version = "0.89.0", path = "./ext/tls" }
deno_url = { version = "0.102.0", path = "./ext/url" }
deno_web = { version = "0.133.0", path = "./ext/web" }
deno_webidl = { version = "0.102.0", path = "./ext/webidl" }
deno_websocket = { version = "0.107.0", path = "./ext/websocket" }
deno_webstorage = { version = "0.97.0", path = "./ext/webstorage" }
deno_napi = { version = "0.32.0", path = "./ext/napi" }
deno_broadcast_channel = { version = "0.97.0", path = "./ext/broadcast_channel" }
deno_cache = { version = "0.35.0", path = "./ext/cache" }
deno_console = { version = "0.103.0", path = "./ext/console" }
deno_crypto = { version = "0.117.0", path = "./ext/crypto" }
deno_fetch = { version = "0.127.0", path = "./ext/fetch" }
deno_ffi = { version = "0.90.0", path = "./ext/ffi" }
deno_fs = { version = "0.13.0", path = "./ext/fs" }
deno_http = { version = "0.98.0", path = "./ext/http" }
deno_io = { version = "0.13.0", path = "./ext/io" }
deno_net = { version = "0.95.0", path = "./ext/net" }
deno_node = { version = "0.40.0", path = "./ext/node" }
deno_kv = { version = "0.11.0", path = "./ext/kv" }
deno_tls = { version = "0.90.0", path = "./ext/tls" }
deno_url = { version = "0.103.0", path = "./ext/url" }
deno_web = { version = "0.134.0", path = "./ext/web" }
deno_webidl = { version = "0.103.0", path = "./ext/webidl" }
deno_websocket = { version = "0.108.0", path = "./ext/websocket" }
deno_webstorage = { version = "0.98.0", path = "./ext/webstorage" }
deno_napi = { version = "0.33.0", path = "./ext/napi" }

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

### 1.33.2 / 2023.05.04

- fix(core): Use primordials for methods (#18839)
- fix(core): allow esm extensions not included in snapshot (#18980)
- fix(core): rebuild when JS sources for snapshotting change (#18976)
- fix(ext/io) several sync fs fixes (#18886)
- fix(ext/kv): KvU64#valueOf and KvU64 inspect (#18656)
- fix(ext/kv): stricter structured clone serializer (#18914)
- fix(ext/kv): throw on the Kv constructor (#18978)
- fix(ext/node): add missing `release` property to node's `process` (#18923)
- fix(ext/url): throw `TypeError` for empty argument (#18896)
- fix(ext/websocket): update fastwebsockets to 0.3.1 (#18916)
- fix(fmt/json): support formatting number with exponent and no sign (#18894)
- fix(node/http): Request.setTimeout(0) should clear (#18949)
- fix(npm): canonicalize filename before returning (#18948)
- fix(npm): canonicalize search directory when looking for package.json (#18981)
- fix(test): disable preventDefault() for beforeunload event (#18911)
- perf(core): async op pseudo-codegen and performance work (#18887)
- perf(core): use jemalloc for V8 array buffer allocator (#18875)
- perf(ext/web): fast path for ws events (#18905)
- perf(ext/websocket): use internal dispatch for msg events (#18904)
- perf: lazily create RootCertStore (#18938)
- perf: lazily retrieve ppid (#18940)
- perf: use jemalloc as global allocator (#18957)

### 1.33.1 / 2023.04.28

- fix(ext/fetch): subview Uint8Array in Req/Resp (#18890)
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.96.0"
version = "0.97.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.33.1"
version = "1.33.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.185.0/";
pub const CURRENT_STD_URL_STR: &str = "https://deno.land/std@0.186.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.32.0"
version = "0.33.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.184.0"
version = "0.185.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.96.0"
version = "0.97.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.34.0"
version = "0.35.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.102.0"
version = "0.103.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
Loading

0 comments on commit 4b64567

Please sign in to comment.