summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordenobot <33910674+denobot@users.noreply.github.com>2023-05-25 01:38:01 +0200
committerGitHub <noreply@github.com>2023-05-24 23:38:01 +0000
commit935071dd0e233a55c93ca4792f9210f0ea6bccc6 (patch)
treecbcb5538908333d534283c410418f13b06745705
parent9ddb39d4cdde1985c7dc7beb38da3ce316c8e4dd (diff)
1.34.0 (#19246)
Co-authored-by: bartlomieju <bartlomieju@users.noreply.github.com> Co-authored-by: Bartek IwaƄczuk <biwanczuk@gmail.com>
-rwxr-xr-x.github/workflows/ci.generate.ts4
-rw-r--r--.github/workflows/ci.yml6
-rw-r--r--Cargo.lock52
-rw-r--r--Cargo.toml50
-rw-r--r--Releases.md35
-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, 83 deletions
diff --git a/.github/workflows/ci.generate.ts b/.github/workflows/ci.generate.ts
index 9a50683df..c1f1eef6b 100755
--- a/.github/workflows/ci.generate.ts
+++ b/.github/workflows/ci.generate.ts
@@ -17,7 +17,7 @@ const Runners = (() => {
})();
// bump the number at the start when you want to purge the cache
const prCacheKeyPrefix =
- "28-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-${{ matrix.job }}-";
+ "29-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-${{ matrix.job }}-";
const installPkgsCommand =
"sudo apt-get install --no-install-recommends debootstrap clang-15 lld-15";
@@ -480,7 +480,7 @@ const ci = {
"~/.cargo/git/db",
].join("\n"),
key:
- "28-cargo-home-${{ matrix.os }}-${{ hashFiles('Cargo.lock') }}",
+ "29-cargo-home-${{ matrix.os }}-${{ hashFiles('Cargo.lock') }}",
},
},
{
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 6731c5a4c..c78791ee5 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -293,7 +293,7 @@ jobs:
~/.cargo/registry/index
~/.cargo/registry/cache
~/.cargo/git/db
- key: '28-cargo-home-${{ matrix.os }}-${{ hashFiles(''Cargo.lock'') }}'
+ key: '29-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
@@ -305,7 +305,7 @@ jobs:
!./target/*/*.zip
!./target/*/*.tar.gz
key: never_saved
- restore-keys: '28-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-${{ matrix.job }}-'
+ restore-keys: '29-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
@@ -589,7 +589,7 @@ jobs:
!./target/*/gn_out
!./target/*/*.zip
!./target/*/*.tar.gz
- key: '28-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-${{ matrix.job }}-${{ github.sha }}'
+ key: '29-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 7bf57ff6e..55706b8bb 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -710,7 +710,7 @@ checksum = "8d7439c3735f405729d52c3fbbe4de140eaf938a1fe47d227c27f8254d4302a5"
[[package]]
name = "deno"
-version = "1.33.4"
+version = "1.34.0"
dependencies = [
"async-trait",
"atty",
@@ -833,7 +833,7 @@ dependencies = [
[[package]]
name = "deno_bench_util"
-version = "0.99.0"
+version = "0.100.0"
dependencies = [
"bencher",
"deno_core",
@@ -843,7 +843,7 @@ dependencies = [
[[package]]
name = "deno_broadcast_channel"
-version = "0.99.0"
+version = "0.100.0"
dependencies = [
"async-trait",
"deno_core",
@@ -853,7 +853,7 @@ dependencies = [
[[package]]
name = "deno_cache"
-version = "0.37.0"
+version = "0.38.0"
dependencies = [
"async-trait",
"deno_core",
@@ -865,14 +865,14 @@ dependencies = [
[[package]]
name = "deno_console"
-version = "0.105.0"
+version = "0.106.0"
dependencies = [
"deno_core",
]
[[package]]
name = "deno_core"
-version = "0.187.0"
+version = "0.188.0"
dependencies = [
"anyhow",
"bytes",
@@ -897,7 +897,7 @@ dependencies = [
[[package]]
name = "deno_crypto"
-version = "0.119.0"
+version = "0.120.0"
dependencies = [
"aes",
"aes-gcm",
@@ -965,7 +965,7 @@ dependencies = [
[[package]]
name = "deno_fetch"
-version = "0.129.0"
+version = "0.130.0"
dependencies = [
"bytes",
"data-url",
@@ -982,7 +982,7 @@ dependencies = [
[[package]]
name = "deno_ffi"
-version = "0.92.0"
+version = "0.93.0"
dependencies = [
"deno_core",
"dlopen",
@@ -997,7 +997,7 @@ dependencies = [
[[package]]
name = "deno_fs"
-version = "0.15.0"
+version = "0.16.0"
dependencies = [
"async-trait",
"deno_core",
@@ -1037,7 +1037,7 @@ dependencies = [
[[package]]
name = "deno_http"
-version = "0.100.0"
+version = "0.101.0"
dependencies = [
"async-compression 0.3.15",
"async-trait",
@@ -1072,7 +1072,7 @@ dependencies = [
[[package]]
name = "deno_io"
-version = "0.15.0"
+version = "0.16.0"
dependencies = [
"async-trait",
"deno_core",
@@ -1086,7 +1086,7 @@ dependencies = [
[[package]]
name = "deno_kv"
-version = "0.13.0"
+version = "0.14.0"
dependencies = [
"anyhow",
"async-trait",
@@ -1140,7 +1140,7 @@ dependencies = [
[[package]]
name = "deno_napi"
-version = "0.35.0"
+version = "0.36.0"
dependencies = [
"deno_core",
"libloading",
@@ -1148,7 +1148,7 @@ dependencies = [
[[package]]
name = "deno_net"
-version = "0.97.0"
+version = "0.98.0"
dependencies = [
"deno_core",
"deno_tls",
@@ -1163,7 +1163,7 @@ dependencies = [
[[package]]
name = "deno_node"
-version = "0.42.0"
+version = "0.43.0"
dependencies = [
"aes",
"cbc",
@@ -1234,7 +1234,7 @@ dependencies = [
[[package]]
name = "deno_ops"
-version = "0.65.0"
+version = "0.66.0"
dependencies = [
"lazy-regex",
"once_cell",
@@ -1252,7 +1252,7 @@ dependencies = [
[[package]]
name = "deno_runtime"
-version = "0.113.0"
+version = "0.114.0"
dependencies = [
"atty",
"console_static_text",
@@ -1334,7 +1334,7 @@ dependencies = [
[[package]]
name = "deno_tls"
-version = "0.92.0"
+version = "0.93.0"
dependencies = [
"deno_core",
"once_cell",
@@ -1348,7 +1348,7 @@ dependencies = [
[[package]]
name = "deno_url"
-version = "0.105.0"
+version = "0.106.0"
dependencies = [
"deno_bench_util",
"deno_core",
@@ -1360,7 +1360,7 @@ dependencies = [
[[package]]
name = "deno_web"
-version = "0.136.0"
+version = "0.137.0"
dependencies = [
"async-trait",
"base64-simd",
@@ -1379,7 +1379,7 @@ dependencies = [
[[package]]
name = "deno_webidl"
-version = "0.105.0"
+version = "0.106.0"
dependencies = [
"deno_bench_util",
"deno_core",
@@ -1387,7 +1387,7 @@ dependencies = [
[[package]]
name = "deno_websocket"
-version = "0.110.0"
+version = "0.111.0"
dependencies = [
"bytes",
"deno_core",
@@ -1403,7 +1403,7 @@ dependencies = [
[[package]]
name = "deno_webstorage"
-version = "0.100.0"
+version = "0.101.0"
dependencies = [
"deno_core",
"deno_web",
@@ -3005,7 +3005,7 @@ dependencies = [
[[package]]
name = "napi_sym"
-version = "0.35.0"
+version = "0.36.0"
dependencies = [
"proc-macro2 1.0.56",
"quote 1.0.26",
@@ -4284,7 +4284,7 @@ dependencies = [
[[package]]
name = "serde_v8"
-version = "0.98.0"
+version = "0.99.0"
dependencies = [
"bencher",
"bytes",
diff --git a/Cargo.toml b/Cargo.toml
index 086cb09a7..f7cbae367 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -44,12 +44,12 @@ repository = "https://github.com/denoland/deno"
v8 = { version = "0.72.0", default-features = false }
deno_ast = { version = "0.26.0", features = ["transpiling"] }
-deno_core = { version = "0.187.0", path = "./core" }
-deno_ops = { version = "0.65.0", path = "./ops" }
-serde_v8 = { version = "0.98.0", path = "./serde_v8" }
-deno_runtime = { version = "0.113.0", path = "./runtime" }
-napi_sym = { version = "0.35.0", path = "./cli/napi/sym" }
-deno_bench_util = { version = "0.99.0", path = "./bench_util" }
+deno_core = { version = "0.188.0", path = "./core" }
+deno_ops = { version = "0.66.0", path = "./ops" }
+serde_v8 = { version = "0.99.0", path = "./serde_v8" }
+deno_runtime = { version = "0.114.0", path = "./runtime" }
+napi_sym = { version = "0.36.0", path = "./cli/napi/sym" }
+deno_bench_util = { version = "0.100.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.6.0"
deno_semver = "0.2.1"
# exts
-deno_broadcast_channel = { version = "0.99.0", path = "./ext/broadcast_channel" }
-deno_cache = { version = "0.37.0", path = "./ext/cache" }
-deno_console = { version = "0.105.0", path = "./ext/console" }
-deno_crypto = { version = "0.119.0", path = "./ext/crypto" }
-deno_fetch = { version = "0.129.0", path = "./ext/fetch" }
-deno_ffi = { version = "0.92.0", path = "./ext/ffi" }
-deno_fs = { version = "0.15.0", path = "./ext/fs" }
-deno_http = { version = "0.100.0", path = "./ext/http" }
-deno_io = { version = "0.15.0", path = "./ext/io" }
-deno_net = { version = "0.97.0", path = "./ext/net" }
-deno_node = { version = "0.42.0", path = "./ext/node" }
-deno_kv = { version = "0.13.0", path = "./ext/kv" }
-deno_tls = { version = "0.92.0", path = "./ext/tls" }
-deno_url = { version = "0.105.0", path = "./ext/url" }
-deno_web = { version = "0.136.0", path = "./ext/web" }
-deno_webidl = { version = "0.105.0", path = "./ext/webidl" }
-deno_websocket = { version = "0.110.0", path = "./ext/websocket" }
-deno_webstorage = { version = "0.100.0", path = "./ext/webstorage" }
-deno_napi = { version = "0.35.0", path = "./ext/napi" }
+deno_broadcast_channel = { version = "0.100.0", path = "./ext/broadcast_channel" }
+deno_cache = { version = "0.38.0", path = "./ext/cache" }
+deno_console = { version = "0.106.0", path = "./ext/console" }
+deno_crypto = { version = "0.120.0", path = "./ext/crypto" }
+deno_fetch = { version = "0.130.0", path = "./ext/fetch" }
+deno_ffi = { version = "0.93.0", path = "./ext/ffi" }
+deno_fs = { version = "0.16.0", path = "./ext/fs" }
+deno_http = { version = "0.101.0", path = "./ext/http" }
+deno_io = { version = "0.16.0", path = "./ext/io" }
+deno_net = { version = "0.98.0", path = "./ext/net" }
+deno_node = { version = "0.43.0", path = "./ext/node" }
+deno_kv = { version = "0.14.0", path = "./ext/kv" }
+deno_tls = { version = "0.93.0", path = "./ext/tls" }
+deno_url = { version = "0.106.0", path = "./ext/url" }
+deno_web = { version = "0.137.0", path = "./ext/web" }
+deno_webidl = { version = "0.106.0", path = "./ext/webidl" }
+deno_websocket = { version = "0.111.0", path = "./ext/websocket" }
+deno_webstorage = { version = "0.101.0", path = "./ext/webstorage" }
+deno_napi = { version = "0.36.0", path = "./ext/napi" }
aes = "=0.8.2"
anyhow = "1.0.57"
diff --git a/Releases.md b/Releases.md
index 5316b85b4..6502f1db4 100644
--- a/Releases.md
+++ b/Releases.md
@@ -6,6 +6,41 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at:
https://github.com/denoland/deno_install
+### 1.34.0 / 2023.05.24
+
+- BREAKING(unstable): change return type of Deno.serve() API (#19189)
+- feat(cli): add `nodeModulesDir` option to config file (#19095)
+- feat(cli): top-level `exclude` field in `deno.json` (#17778)
+- feat(ext/fs): add isBlockDevice, isCharDevice, isFifo, isSocket to FileInfo
+ (#19008)
+- feat(ext/http): Add support for trailers w/internal API (HTTP/2 only) (#19182)
+- feat(ext/http): Brotli Compression (#19216)
+- feat(ext/http): ref/unref for server (#19197)
+- feat(lsp): support lockfile and node_modules directory (#19203)
+- feat(runtime): Provide environment-configurable options for tokio parameters
+ (#19173)
+- feat(task): glob expansion (#19084)
+- feat(unstable): add more options to Deno.createHttpClient (#17385)
+- feat(vendor): support for npm specifiers (#19186)
+- feat: add support for globs in the config file and CLI arguments for files
+ (#19102)
+- feat: top level package.json install when node_modules dir is explicitly opted
+ into (#19233)
+- fix(ext/node): ClientRequest.setTimeout(0) should remove listeners (#19240)
+- fix(ext/node): add basic node:worker_threads support (#19192)
+- fix(ext/web): improve timers resolution for 0ms timeouts (#19212)
+- fix(napi): add napi_async_init and napi_async_destroy (#19234)
+- fix(node): add http.Server.unref() (#19201)
+- fix(node): duplicate node_module suffixes (#19222)
+- fix(node): fire 'unhandledrejection' event when using node: or npm: imports
+ (#19235)
+- fix(node): make sure "setImmediate" is not clamped to 4ms (#19213)
+- fix(npm): `process` not defined in readline (#19184)
+- fix(npm): better handling of optional peer dependencies (#19236)
+- fix(npm): create `node_modules/.deno/node_modules` folder (#19242)
+- fix(npm): run pre and post tasks if present (#19178)
+- fix(npm): store npm binary command resolution in lockfile (#19219)
+
### 1.33.4 / 2023.05.18
- fix(ext/web): Request higher-resolution timer on Windows if user requests
diff --git a/bench_util/Cargo.toml b/bench_util/Cargo.toml
index fa55afa7f..c8f9a6c3f 100644
--- a/bench_util/Cargo.toml
+++ b/bench_util/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_bench_util"
-version = "0.99.0"
+version = "0.100.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index 4c6db695f..19cb2188e 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno"
-version = "1.33.4"
+version = "1.34.0"
authors.workspace = true
default-run = "deno"
edition.workspace = true
diff --git a/cli/deno_std.rs b/cli/deno_std.rs
index 61fcaab34..b534a95de 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.188.0/";
+pub const CURRENT_STD_URL_STR: &str = "https://deno.land/std@0.189.0/";
diff --git a/cli/napi/sym/Cargo.toml b/cli/napi/sym/Cargo.toml
index 78165af24..429bffde7 100644
--- a/cli/napi/sym/Cargo.toml
+++ b/cli/napi/sym/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "napi_sym"
-version = "0.35.0"
+version = "0.36.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/core/Cargo.toml b/core/Cargo.toml
index 5782a6f59..3a470232a 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_core"
-version = "0.187.0"
+version = "0.188.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 a73619686..bc2557554 100644
--- a/ext/broadcast_channel/Cargo.toml
+++ b/ext/broadcast_channel/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_broadcast_channel"
-version = "0.99.0"
+version = "0.100.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/cache/Cargo.toml b/ext/cache/Cargo.toml
index dd6f77385..f58221961 100644
--- a/ext/cache/Cargo.toml
+++ b/ext/cache/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_cache"
-version = "0.37.0"
+version = "0.38.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/console/Cargo.toml b/ext/console/Cargo.toml
index 9a75b1b4c..dbc16e965 100644
--- a/ext/console/Cargo.toml
+++ b/ext/console/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_console"
-version = "0.105.0"
+version = "0.106.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/crypto/Cargo.toml b/ext/crypto/Cargo.toml
index 24c204e33..2a2a37740 100644
--- a/ext/crypto/Cargo.toml
+++ b/ext/crypto/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_crypto"
-version = "0.119.0"
+version = "0.120.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/fetch/Cargo.toml b/ext/fetch/Cargo.toml
index fc8a45044..1bc7e8bd1 100644
--- a/ext/fetch/Cargo.toml
+++ b/ext/fetch/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_fetch"
-version = "0.129.0"
+version = "0.130.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/ffi/Cargo.toml b/ext/ffi/Cargo.toml
index a71862d85..8da22a2ab 100644
--- a/ext/ffi/Cargo.toml
+++ b/ext/ffi/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_ffi"
-version = "0.92.0"
+version = "0.93.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/fs/Cargo.toml b/ext/fs/Cargo.toml
index c05e01f51..6a9d1644a 100644
--- a/ext/fs/Cargo.toml
+++ b/ext/fs/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_fs"
-version = "0.15.0"
+version = "0.16.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/http/Cargo.toml b/ext/http/Cargo.toml
index 74e88d6eb..82aa907a6 100644
--- a/ext/http/Cargo.toml
+++ b/ext/http/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_http"
-version = "0.100.0"
+version = "0.101.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/io/Cargo.toml b/ext/io/Cargo.toml
index 89bd2f3e0..3554d4137 100644
--- a/ext/io/Cargo.toml
+++ b/ext/io/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_io"
-version = "0.15.0"
+version = "0.16.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/kv/Cargo.toml b/ext/kv/Cargo.toml
index 5e5b1b327..c9a9157e0 100644
--- a/ext/kv/Cargo.toml
+++ b/ext/kv/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_kv"
-version = "0.13.0"
+version = "0.14.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/napi/Cargo.toml b/ext/napi/Cargo.toml
index 6404bcaf9..96019fd69 100644
--- a/ext/napi/Cargo.toml
+++ b/ext/napi/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_napi"
-version = "0.35.0"
+version = "0.36.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/net/Cargo.toml b/ext/net/Cargo.toml
index 848e19cb9..160f5085e 100644
--- a/ext/net/Cargo.toml
+++ b/ext/net/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_net"
-version = "0.97.0"
+version = "0.98.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/node/Cargo.toml b/ext/node/Cargo.toml
index 6d454a0f9..ecd96e8a6 100644
--- a/ext/node/Cargo.toml
+++ b/ext/node/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_node"
-version = "0.42.0"
+version = "0.43.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/tls/Cargo.toml b/ext/tls/Cargo.toml
index 6c76a3deb..08da696c5 100644
--- a/ext/tls/Cargo.toml
+++ b/ext/tls/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_tls"
-version = "0.92.0"
+version = "0.93.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/url/Cargo.toml b/ext/url/Cargo.toml
index 880ed21c0..d9fbdd21a 100644
--- a/ext/url/Cargo.toml
+++ b/ext/url/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_url"
-version = "0.105.0"
+version = "0.106.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/web/Cargo.toml b/ext/web/Cargo.toml
index c917b78fb..1105b9cc5 100644
--- a/ext/web/Cargo.toml
+++ b/ext/web/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_web"
-version = "0.136.0"
+version = "0.137.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/webidl/Cargo.toml b/ext/webidl/Cargo.toml
index ecb227250..a1a1ae407 100644
--- a/ext/webidl/Cargo.toml
+++ b/ext/webidl/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_webidl"
-version = "0.105.0"
+version = "0.106.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/websocket/Cargo.toml b/ext/websocket/Cargo.toml
index ec2fff5cb..3fd6173be 100644
--- a/ext/websocket/Cargo.toml
+++ b/ext/websocket/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_websocket"
-version = "0.110.0"
+version = "0.111.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/webstorage/Cargo.toml b/ext/webstorage/Cargo.toml
index e6764720d..b94472e0b 100644
--- a/ext/webstorage/Cargo.toml
+++ b/ext/webstorage/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_webstorage"
-version = "0.100.0"
+version = "0.101.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ops/Cargo.toml b/ops/Cargo.toml
index d948d1160..f61931cff 100644
--- a/ops/Cargo.toml
+++ b/ops/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_ops"
-version = "0.65.0"
+version = "0.66.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml
index 373a9883f..297c62b6a 100644
--- a/runtime/Cargo.toml
+++ b/runtime/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_runtime"
-version = "0.113.0"
+version = "0.114.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/serde_v8/Cargo.toml b/serde_v8/Cargo.toml
index 678a9ab2e..42d13ee1c 100644
--- a/serde_v8/Cargo.toml
+++ b/serde_v8/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "serde_v8"
-version = "0.98.0"
+version = "0.99.0"
authors.workspace = true
edition.workspace = true
license.workspace = true