summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-x.github/workflows/ci.generate.ts2
-rw-r--r--.github/workflows/ci.yml6
-rw-r--r--Cargo.lock52
-rw-r--r--Cargo.toml50
-rw-r--r--Releases.md36
-rw-r--r--bench_util/Cargo.toml2
-rw-r--r--cli/Cargo.toml2
-rw-r--r--cli/deno_std.rs2
-rw-r--r--cli/napi/sym/Cargo.toml2
-rw-r--r--core/Cargo.toml2
-rw-r--r--ext/broadcast_channel/Cargo.toml2
-rw-r--r--ext/cache/Cargo.toml2
-rw-r--r--ext/console/Cargo.toml2
-rw-r--r--ext/crypto/Cargo.toml2
-rw-r--r--ext/fetch/Cargo.toml2
-rw-r--r--ext/ffi/Cargo.toml2
-rw-r--r--ext/fs/Cargo.toml2
-rw-r--r--ext/http/Cargo.toml2
-rw-r--r--ext/io/Cargo.toml2
-rw-r--r--ext/kv/Cargo.toml2
-rw-r--r--ext/napi/Cargo.toml2
-rw-r--r--ext/net/Cargo.toml2
-rw-r--r--ext/node/Cargo.toml2
-rw-r--r--ext/tls/Cargo.toml2
-rw-r--r--ext/url/Cargo.toml2
-rw-r--r--ext/web/Cargo.toml2
-rw-r--r--ext/webidl/Cargo.toml2
-rw-r--r--ext/websocket/Cargo.toml2
-rw-r--r--ext/webstorage/Cargo.toml2
-rw-r--r--ops/Cargo.toml2
-rw-r--r--runtime/Cargo.toml2
-rw-r--r--serde_v8/Cargo.toml2
32 files changed, 118 insertions, 82 deletions
diff --git a/.github/workflows/ci.generate.ts b/.github/workflows/ci.generate.ts
index cedf91b6c..6b1089e03 100755
--- a/.github/workflows/ci.generate.ts
+++ b/.github/workflows/ci.generate.ts
@@ -5,7 +5,7 @@ import * as yaml from "https://deno.land/std@0.173.0/encoding/yaml.ts";
// Bump this number when you want to purge the cache.
// Note: the tools/release/01_bump_crate_versions.ts script will update this version
// automatically via regex, so ensure that this line maintains this format.
-const cacheVersion = 36;
+const cacheVersion = 37;
const Runners = (() => {
const ubuntuRunner = "ubuntu-22.04";
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 05170935b..00660ea6e 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -298,7 +298,7 @@ jobs:
~/.cargo/registry/index
~/.cargo/registry/cache
~/.cargo/git/db
- key: '36-cargo-home-${{ matrix.os }}-${{ hashFiles(''Cargo.lock'') }}'
+ key: '37-cargo-home-${{ matrix.os }}-${{ hashFiles(''Cargo.lock'') }}'
if: '!(github.event_name == ''pull_request'' && matrix.skip_pr)'
- name: Restore cache build output (PR)
uses: actions/cache/restore@v3
@@ -310,7 +310,7 @@ jobs:
!./target/*/*.zip
!./target/*/*.tar.gz
key: never_saved
- restore-keys: '36-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-${{ matrix.job }}-'
+ restore-keys: '37-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-${{ matrix.job }}-'
- name: Apply and update mtime cache
if: '!(github.event_name == ''pull_request'' && matrix.skip_pr) && (!startsWith(github.ref, ''refs/tags/''))'
uses: ./.github/mtime_cache
@@ -600,7 +600,7 @@ jobs:
!./target/*/gn_out
!./target/*/*.zip
!./target/*/*.tar.gz
- key: '36-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-${{ matrix.job }}-${{ github.sha }}'
+ key: '37-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-${{ matrix.job }}-${{ github.sha }}'
publish-canary:
name: publish canary
runs-on: ubuntu-22.04
diff --git a/Cargo.lock b/Cargo.lock
index 96bcf91b1..c18e1a503 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -721,7 +721,7 @@ checksum = "8d7439c3735f405729d52c3fbbe4de140eaf938a1fe47d227c27f8254d4302a5"
[[package]]
name = "deno"
-version = "1.34.1"
+version = "1.34.2"
dependencies = [
"async-trait",
"atty",
@@ -844,7 +844,7 @@ dependencies = [
[[package]]
name = "deno_bench_util"
-version = "0.101.0"
+version = "0.102.0"
dependencies = [
"bencher",
"deno_core",
@@ -854,7 +854,7 @@ dependencies = [
[[package]]
name = "deno_broadcast_channel"
-version = "0.101.0"
+version = "0.102.0"
dependencies = [
"async-trait",
"deno_core",
@@ -864,7 +864,7 @@ dependencies = [
[[package]]
name = "deno_cache"
-version = "0.39.0"
+version = "0.40.0"
dependencies = [
"async-trait",
"deno_core",
@@ -876,14 +876,14 @@ dependencies = [
[[package]]
name = "deno_console"
-version = "0.107.0"
+version = "0.108.0"
dependencies = [
"deno_core",
]
[[package]]
name = "deno_core"
-version = "0.189.0"
+version = "0.190.0"
dependencies = [
"anyhow",
"bytes",
@@ -908,7 +908,7 @@ dependencies = [
[[package]]
name = "deno_crypto"
-version = "0.121.0"
+version = "0.122.0"
dependencies = [
"aes",
"aes-gcm",
@@ -978,7 +978,7 @@ dependencies = [
[[package]]
name = "deno_fetch"
-version = "0.131.0"
+version = "0.132.0"
dependencies = [
"bytes",
"data-url",
@@ -995,7 +995,7 @@ dependencies = [
[[package]]
name = "deno_ffi"
-version = "0.94.0"
+version = "0.95.0"
dependencies = [
"deno_core",
"dlopen",
@@ -1011,7 +1011,7 @@ dependencies = [
[[package]]
name = "deno_fs"
-version = "0.17.0"
+version = "0.18.0"
dependencies = [
"async-trait",
"deno_core",
@@ -1051,7 +1051,7 @@ dependencies = [
[[package]]
name = "deno_http"
-version = "0.102.0"
+version = "0.103.0"
dependencies = [
"async-compression 0.3.15",
"async-trait",
@@ -1087,7 +1087,7 @@ dependencies = [
[[package]]
name = "deno_io"
-version = "0.17.0"
+version = "0.18.0"
dependencies = [
"async-trait",
"deno_core",
@@ -1101,7 +1101,7 @@ dependencies = [
[[package]]
name = "deno_kv"
-version = "0.15.0"
+version = "0.16.0"
dependencies = [
"anyhow",
"async-trait",
@@ -1155,7 +1155,7 @@ dependencies = [
[[package]]
name = "deno_napi"
-version = "0.37.0"
+version = "0.38.0"
dependencies = [
"deno_core",
"libloading",
@@ -1163,7 +1163,7 @@ dependencies = [
[[package]]
name = "deno_net"
-version = "0.99.0"
+version = "0.100.0"
dependencies = [
"deno_core",
"deno_tls",
@@ -1179,7 +1179,7 @@ dependencies = [
[[package]]
name = "deno_node"
-version = "0.44.0"
+version = "0.45.0"
dependencies = [
"aes",
"cbc",
@@ -1250,7 +1250,7 @@ dependencies = [
[[package]]
name = "deno_ops"
-version = "0.67.0"
+version = "0.68.0"
dependencies = [
"lazy-regex",
"once_cell",
@@ -1268,7 +1268,7 @@ dependencies = [
[[package]]
name = "deno_runtime"
-version = "0.115.0"
+version = "0.116.0"
dependencies = [
"atty",
"console_static_text",
@@ -1350,7 +1350,7 @@ dependencies = [
[[package]]
name = "deno_tls"
-version = "0.94.0"
+version = "0.95.0"
dependencies = [
"deno_core",
"once_cell",
@@ -1364,7 +1364,7 @@ dependencies = [
[[package]]
name = "deno_url"
-version = "0.107.0"
+version = "0.108.0"
dependencies = [
"deno_bench_util",
"deno_core",
@@ -1376,7 +1376,7 @@ dependencies = [
[[package]]
name = "deno_web"
-version = "0.138.0"
+version = "0.139.0"
dependencies = [
"async-trait",
"base64-simd",
@@ -1395,7 +1395,7 @@ dependencies = [
[[package]]
name = "deno_webidl"
-version = "0.107.0"
+version = "0.108.0"
dependencies = [
"deno_bench_util",
"deno_core",
@@ -1403,7 +1403,7 @@ dependencies = [
[[package]]
name = "deno_websocket"
-version = "0.112.0"
+version = "0.113.0"
dependencies = [
"bytes",
"deno_core",
@@ -1420,7 +1420,7 @@ dependencies = [
[[package]]
name = "deno_webstorage"
-version = "0.102.0"
+version = "0.103.0"
dependencies = [
"deno_core",
"deno_web",
@@ -3017,7 +3017,7 @@ dependencies = [
[[package]]
name = "napi_sym"
-version = "0.37.0"
+version = "0.38.0"
dependencies = [
"proc-macro2 1.0.56",
"quote 1.0.26",
@@ -4296,7 +4296,7 @@ dependencies = [
[[package]]
name = "serde_v8"
-version = "0.100.0"
+version = "0.101.0"
dependencies = [
"bencher",
"bytes",
diff --git a/Cargo.toml b/Cargo.toml
index 4161d11fe..86b2518ad 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -44,12 +44,12 @@ repository = "https://github.com/denoland/deno"
v8 = { version = "0.73.0", default-features = false }
deno_ast = { version = "0.27.0", features = ["transpiling"] }
-deno_core = { version = "0.189.0", path = "./core" }
-deno_ops = { version = "0.67.0", path = "./ops" }
-serde_v8 = { version = "0.100.0", path = "./serde_v8" }
-deno_runtime = { version = "0.115.0", path = "./runtime" }
-napi_sym = { version = "0.37.0", path = "./cli/napi/sym" }
-deno_bench_util = { version = "0.101.0", path = "./bench_util" }
+deno_core = { version = "0.190.0", path = "./core" }
+deno_ops = { version = "0.68.0", path = "./ops" }
+serde_v8 = { version = "0.101.0", path = "./serde_v8" }
+deno_runtime = { version = "0.116.0", path = "./runtime" }
+napi_sym = { version = "0.38.0", path = "./cli/napi/sym" }
+deno_bench_util = { version = "0.102.0", path = "./bench_util" }
test_util = { path = "./test_util" }
deno_lockfile = "0.14.1"
deno_media_type = { version = "0.1.0", features = ["module_specifier"] }
@@ -57,25 +57,25 @@ deno_npm = "0.8.0"
deno_semver = "0.2.1"
# exts
-deno_broadcast_channel = { version = "0.101.0", path = "./ext/broadcast_channel" }
-deno_cache = { version = "0.39.0", path = "./ext/cache" }
-deno_console = { version = "0.107.0", path = "./ext/console" }
-deno_crypto = { version = "0.121.0", path = "./ext/crypto" }
-deno_fetch = { version = "0.131.0", path = "./ext/fetch" }
-deno_ffi = { version = "0.94.0", path = "./ext/ffi" }
-deno_fs = { version = "0.17.0", path = "./ext/fs" }
-deno_http = { version = "0.102.0", path = "./ext/http" }
-deno_io = { version = "0.17.0", path = "./ext/io" }
-deno_net = { version = "0.99.0", path = "./ext/net" }
-deno_node = { version = "0.44.0", path = "./ext/node" }
-deno_kv = { version = "0.15.0", path = "./ext/kv" }
-deno_tls = { version = "0.94.0", path = "./ext/tls" }
-deno_url = { version = "0.107.0", path = "./ext/url" }
-deno_web = { version = "0.138.0", path = "./ext/web" }
-deno_webidl = { version = "0.107.0", path = "./ext/webidl" }
-deno_websocket = { version = "0.112.0", path = "./ext/websocket" }
-deno_webstorage = { version = "0.102.0", path = "./ext/webstorage" }
-deno_napi = { version = "0.37.0", path = "./ext/napi" }
+deno_broadcast_channel = { version = "0.102.0", path = "./ext/broadcast_channel" }
+deno_cache = { version = "0.40.0", path = "./ext/cache" }
+deno_console = { version = "0.108.0", path = "./ext/console" }
+deno_crypto = { version = "0.122.0", path = "./ext/crypto" }
+deno_fetch = { version = "0.132.0", path = "./ext/fetch" }
+deno_ffi = { version = "0.95.0", path = "./ext/ffi" }
+deno_fs = { version = "0.18.0", path = "./ext/fs" }
+deno_http = { version = "0.103.0", path = "./ext/http" }
+deno_io = { version = "0.18.0", path = "./ext/io" }
+deno_net = { version = "0.100.0", path = "./ext/net" }
+deno_node = { version = "0.45.0", path = "./ext/node" }
+deno_kv = { version = "0.16.0", path = "./ext/kv" }
+deno_tls = { version = "0.95.0", path = "./ext/tls" }
+deno_url = { version = "0.108.0", path = "./ext/url" }
+deno_web = { version = "0.139.0", path = "./ext/web" }
+deno_webidl = { version = "0.108.0", path = "./ext/webidl" }
+deno_websocket = { version = "0.113.0", path = "./ext/websocket" }
+deno_webstorage = { version = "0.103.0", path = "./ext/webstorage" }
+deno_napi = { version = "0.38.0", path = "./ext/napi" }
aes = "=0.8.2"
anyhow = "1.0.57"
diff --git a/Releases.md b/Releases.md
index 5fbb5b4ae..9e5e62b19 100644
--- a/Releases.md
+++ b/Releases.md
@@ -6,6 +6,42 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at:
https://github.com/denoland/deno_install
+### 1.34.2 / 2023.06.08
+
+- fix: do not show cache initialization errors if stderr is piped (#18920)
+- fix: upgrade to deno_ast 0.27 (#19375)
+- fix(cli): formatting bench with colors (#19323)
+- fix(ext/console): fix inspecting large ArrayBuffers (#19373)
+- fix(ext/crypto): fix JWK import of Ed25519 (#19279)
+- fix(ext/web): Copy EventTarget list before dispatch (#19360)
+- fix(ext/websocket): Close socket on bad string data (#19424)
+- fix(kv) run sqlite transactions via spawn_blocking (#19350)
+- fix(napi): don't panic if symbol can't be found (#19397)
+- fix(node): add missing process.reallyExit method (#19326)
+- fix(node): Added base implementation of FileHandle (#19294)
+- fix(node): don't close stdio streams (#19256)
+- fix(node): FileHandle.close() (#19357)
+- fix(node): FileHandle.read() (#19359)
+- fix(node): FileHandle.write() (#19385)
+- fix(node): map stdio [0, 1, 2] to "inherit" (#19352)
+- fix(node): Very basic node:http2 support (#19344)
+- fix(node): proper url handling (#19340)
+- fix(repl): correctly print string exception (#19391)
+- fix(runtime): add missing SIGIOT alias to SIGABRT (#19333)
+- perf(cli): conditionally load typescript declaration files (#19392)
+- perf(ext/http): Add a sync phase to http serving (#19321)
+- perf(ext/http): Migrate op_http_get_request_headers to v8::Array (#19354)
+- perf(ext/http): Migrate op_http_get_request_method_and_url to v8::Array
+ (#19355)
+- perf(ext/http): Use flat list of headers for multiple set/get methods (#19336)
+- perf(ext/websocket): Make send sync for non-stream websockets (#19376)
+- perf(ext/websocket): Reduce GC pressure & monomorpize op_ws_next_event
+ (#19405)
+- perf(ext/websocket): monomorphize code (#19394)
+- perf(http): avoid flattening http headers (#19384)
+- perf: optimize RegExp usage in JS (#19364)
+- perf: use sendto syscalls (#19414)
+
### 1.34.1 / 2023.05.29
- fix(compile): handle when DENO_DIR is readonly (#19257)
diff --git a/bench_util/Cargo.toml b/bench_util/Cargo.toml
index e45cc21e8..824c77612 100644
--- a/bench_util/Cargo.toml
+++ b/bench_util/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_bench_util"
-version = "0.101.0"
+version = "0.102.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index 2bad6ea1b..3e2e6440c 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno"
-version = "1.34.1"
+version = "1.34.2"
authors.workspace = true
default-run = "deno"
edition.workspace = true
diff --git a/cli/deno_std.rs b/cli/deno_std.rs
index 6065666ba..4bf416719 100644
--- a/cli/deno_std.rs
+++ b/cli/deno_std.rs
@@ -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.190.0/";
+pub const CURRENT_STD_URL_STR: &str = "https://deno.land/std@0.191.0/";
diff --git a/cli/napi/sym/Cargo.toml b/cli/napi/sym/Cargo.toml
index 31ba2e6d8..76fab95f6 100644
--- a/cli/napi/sym/Cargo.toml
+++ b/cli/napi/sym/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "napi_sym"
-version = "0.37.0"
+version = "0.38.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/core/Cargo.toml b/core/Cargo.toml
index ac132f81a..b9cb265e8 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_core"
-version = "0.189.0"
+version = "0.190.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/broadcast_channel/Cargo.toml b/ext/broadcast_channel/Cargo.toml
index 2be134d31..8c6c4c0df 100644
--- a/ext/broadcast_channel/Cargo.toml
+++ b/ext/broadcast_channel/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_broadcast_channel"
-version = "0.101.0"
+version = "0.102.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/cache/Cargo.toml b/ext/cache/Cargo.toml
index 1796e0639..c2b10b8b7 100644
--- a/ext/cache/Cargo.toml
+++ b/ext/cache/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_cache"
-version = "0.39.0"
+version = "0.40.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/console/Cargo.toml b/ext/console/Cargo.toml
index ceb9c0c20..4a167cc83 100644
--- a/ext/console/Cargo.toml
+++ b/ext/console/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_console"
-version = "0.107.0"
+version = "0.108.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/crypto/Cargo.toml b/ext/crypto/Cargo.toml
index 71e0f31df..055a38dcb 100644
--- a/ext/crypto/Cargo.toml
+++ b/ext/crypto/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_crypto"
-version = "0.121.0"
+version = "0.122.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/fetch/Cargo.toml b/ext/fetch/Cargo.toml
index 0ec87fe3e..61c1e65ff 100644
--- a/ext/fetch/Cargo.toml
+++ b/ext/fetch/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_fetch"
-version = "0.131.0"
+version = "0.132.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/ffi/Cargo.toml b/ext/ffi/Cargo.toml
index e5093c8a7..2e60bcbea 100644
--- a/ext/ffi/Cargo.toml
+++ b/ext/ffi/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_ffi"
-version = "0.94.0"
+version = "0.95.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/fs/Cargo.toml b/ext/fs/Cargo.toml
index 10f297b48..65c89bb99 100644
--- a/ext/fs/Cargo.toml
+++ b/ext/fs/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_fs"
-version = "0.17.0"
+version = "0.18.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/http/Cargo.toml b/ext/http/Cargo.toml
index 9e7d39378..2ad2dd333 100644
--- a/ext/http/Cargo.toml
+++ b/ext/http/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_http"
-version = "0.102.0"
+version = "0.103.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/io/Cargo.toml b/ext/io/Cargo.toml
index c3fb33615..2a5b85863 100644
--- a/ext/io/Cargo.toml
+++ b/ext/io/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_io"
-version = "0.17.0"
+version = "0.18.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/kv/Cargo.toml b/ext/kv/Cargo.toml
index c805c0f5d..1cb64c099 100644
--- a/ext/kv/Cargo.toml
+++ b/ext/kv/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_kv"
-version = "0.15.0"
+version = "0.16.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/napi/Cargo.toml b/ext/napi/Cargo.toml
index 8054a7a08..6757b8946 100644
--- a/ext/napi/Cargo.toml
+++ b/ext/napi/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_napi"
-version = "0.37.0"
+version = "0.38.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/net/Cargo.toml b/ext/net/Cargo.toml
index d5a26a2c7..26e8018dd 100644
--- a/ext/net/Cargo.toml
+++ b/ext/net/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_net"
-version = "0.99.0"
+version = "0.100.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/node/Cargo.toml b/ext/node/Cargo.toml
index 0efb27aea..e3ed2a42e 100644
--- a/ext/node/Cargo.toml
+++ b/ext/node/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_node"
-version = "0.44.0"
+version = "0.45.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/tls/Cargo.toml b/ext/tls/Cargo.toml
index c946cdcdf..3acf2dc18 100644
--- a/ext/tls/Cargo.toml
+++ b/ext/tls/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_tls"
-version = "0.94.0"
+version = "0.95.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/url/Cargo.toml b/ext/url/Cargo.toml
index ac849fcaa..039ea889d 100644
--- a/ext/url/Cargo.toml
+++ b/ext/url/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_url"
-version = "0.107.0"
+version = "0.108.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/web/Cargo.toml b/ext/web/Cargo.toml
index a244ac178..165f0d124 100644
--- a/ext/web/Cargo.toml
+++ b/ext/web/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_web"
-version = "0.138.0"
+version = "0.139.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/webidl/Cargo.toml b/ext/webidl/Cargo.toml
index d47220fc3..aa65962c5 100644
--- a/ext/webidl/Cargo.toml
+++ b/ext/webidl/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_webidl"
-version = "0.107.0"
+version = "0.108.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/websocket/Cargo.toml b/ext/websocket/Cargo.toml
index 324a2b1a4..1d701fb5e 100644
--- a/ext/websocket/Cargo.toml
+++ b/ext/websocket/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_websocket"
-version = "0.112.0"
+version = "0.113.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/webstorage/Cargo.toml b/ext/webstorage/Cargo.toml
index 7901e9b9e..9120289e0 100644
--- a/ext/webstorage/Cargo.toml
+++ b/ext/webstorage/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_webstorage"
-version = "0.102.0"
+version = "0.103.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ops/Cargo.toml b/ops/Cargo.toml
index 7768f8c9d..b1407b833 100644
--- a/ops/Cargo.toml
+++ b/ops/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_ops"
-version = "0.67.0"
+version = "0.68.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml
index 5a7196ea8..3e7e57141 100644
--- a/runtime/Cargo.toml
+++ b/runtime/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_runtime"
-version = "0.115.0"
+version = "0.116.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/serde_v8/Cargo.toml b/serde_v8/Cargo.toml
index 6d04e5ea4..260c4cef2 100644
--- a/serde_v8/Cargo.toml
+++ b/serde_v8/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "serde_v8"
-version = "0.100.0"
+version = "0.101.0"
authors.workspace = true
edition.workspace = true
license.workspace = true