summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordenobot <33910674+denobot@users.noreply.github.com>2023-12-13 15:24:13 -0500
committerGitHub <noreply@github.com>2023-12-13 13:24:13 -0700
commit04ba8df711789bcbafed089c243e377568e9a9b4 (patch)
treeddd8ec07e5ed0a11a7039ca590dd4b7c17be4a7b
parenta3fc93a4cb4202e91b399f9385030a1c5b0d1bb7 (diff)
1.39.0 (#21560)
Bumped versions for 1.39.0 Please ensure: - [x] Target branch is correct (`vX.XX` if a patch release, `main` if minor) - [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 (think relevancy and remove reverts) To make edits to this PR: ```shell git fetch upstream release_1_39.0 && git checkout -b release_1_39.0 upstream/release_1_39.0 ``` cc @mmastrac --------- Co-authored-by: mmastrac <mmastrac@users.noreply.github.com> Co-authored-by: Matt Mastracci <matthew@mastracci.com>
-rwxr-xr-x.github/workflows/ci.generate.ts2
-rw-r--r--.github/workflows/ci.yml8
-rw-r--r--Cargo.lock50
-rw-r--r--Cargo.toml48
-rw-r--r--Releases.md97
-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--ext/broadcast_channel/Cargo.toml2
-rw-r--r--ext/cache/Cargo.toml2
-rw-r--r--ext/console/Cargo.toml2
-rw-r--r--ext/cron/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/webgpu/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--runtime/Cargo.toml2
31 files changed, 177 insertions, 80 deletions
diff --git a/.github/workflows/ci.generate.ts b/.github/workflows/ci.generate.ts
index bad5532ad..4ef3fb670 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 = 63;
+const cacheVersion = 64;
const ubuntuRunner = "ubuntu-22.04";
const ubuntuXlRunner = "ubuntu-22.04-xl";
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 80f8005b8..e02ab1f2e 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -329,8 +329,8 @@ jobs:
path: |-
~/.cargo/registry/index
~/.cargo/registry/cache
- key: '63-cargo-home-${{ matrix.os }}-${{ hashFiles(''Cargo.lock'') }}'
- restore-keys: '63-cargo-home-${{ matrix.os }}'
+ key: '64-cargo-home-${{ matrix.os }}-${{ hashFiles(''Cargo.lock'') }}'
+ restore-keys: '64-cargo-home-${{ matrix.os }}'
if: '!(matrix.skip)'
- name: Restore cache build output (PR)
uses: actions/cache/restore@v3
@@ -342,7 +342,7 @@ jobs:
!./target/*/*.zip
!./target/*/*.tar.gz
key: never_saved
- restore-keys: '63-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-${{ matrix.job }}-'
+ restore-keys: '64-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-${{ matrix.job }}-'
- name: Apply and update mtime cache
if: '!(matrix.skip) && (!startsWith(github.ref, ''refs/tags/''))'
uses: ./.github/mtime_cache
@@ -639,7 +639,7 @@ jobs:
!./target/*/gn_out
!./target/*/*.zip
!./target/*/*.tar.gz
- key: '63-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-${{ matrix.job }}-${{ github.sha }}'
+ key: '64-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 51f1abc38..aa5e84d50 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -918,7 +918,7 @@ dependencies = [
[[package]]
name = "deno"
-version = "1.38.5"
+version = "1.39.0"
dependencies = [
"async-trait",
"base32",
@@ -1060,7 +1060,7 @@ dependencies = [
[[package]]
name = "deno_bench_util"
-version = "0.121.0"
+version = "0.122.0"
dependencies = [
"bencher",
"deno_core",
@@ -1070,7 +1070,7 @@ dependencies = [
[[package]]
name = "deno_broadcast_channel"
-version = "0.121.0"
+version = "0.122.0"
dependencies = [
"async-trait",
"deno_core",
@@ -1080,7 +1080,7 @@ dependencies = [
[[package]]
name = "deno_cache"
-version = "0.59.0"
+version = "0.60.0"
dependencies = [
"async-trait",
"deno_core",
@@ -1127,7 +1127,7 @@ dependencies = [
[[package]]
name = "deno_console"
-version = "0.127.0"
+version = "0.128.0"
dependencies = [
"deno_core",
]
@@ -1161,7 +1161,7 @@ dependencies = [
[[package]]
name = "deno_cron"
-version = "0.7.0"
+version = "0.8.0"
dependencies = [
"anyhow",
"async-trait",
@@ -1174,7 +1174,7 @@ dependencies = [
[[package]]
name = "deno_crypto"
-version = "0.141.0"
+version = "0.142.0"
dependencies = [
"aes",
"aes-gcm",
@@ -1247,7 +1247,7 @@ dependencies = [
[[package]]
name = "deno_fetch"
-version = "0.151.0"
+version = "0.152.0"
dependencies = [
"bytes",
"data-url",
@@ -1264,7 +1264,7 @@ dependencies = [
[[package]]
name = "deno_ffi"
-version = "0.114.0"
+version = "0.115.0"
dependencies = [
"deno_core",
"dlopen2",
@@ -1280,7 +1280,7 @@ dependencies = [
[[package]]
name = "deno_fs"
-version = "0.37.0"
+version = "0.38.0"
dependencies = [
"async-trait",
"deno_core",
@@ -1323,7 +1323,7 @@ dependencies = [
[[package]]
name = "deno_http"
-version = "0.124.0"
+version = "0.125.0"
dependencies = [
"async-compression",
"async-trait",
@@ -1360,7 +1360,7 @@ dependencies = [
[[package]]
name = "deno_io"
-version = "0.37.0"
+version = "0.38.0"
dependencies = [
"async-trait",
"deno_core",
@@ -1373,7 +1373,7 @@ dependencies = [
[[package]]
name = "deno_kv"
-version = "0.35.0"
+version = "0.36.0"
dependencies = [
"anyhow",
"async-trait",
@@ -1445,7 +1445,7 @@ dependencies = [
[[package]]
name = "deno_napi"
-version = "0.57.0"
+version = "0.58.0"
dependencies = [
"deno_core",
"libloading 0.7.4",
@@ -1466,7 +1466,7 @@ dependencies = [
[[package]]
name = "deno_net"
-version = "0.119.0"
+version = "0.120.0"
dependencies = [
"deno_core",
"deno_tls",
@@ -1483,7 +1483,7 @@ dependencies = [
[[package]]
name = "deno_node"
-version = "0.64.0"
+version = "0.65.0"
dependencies = [
"aead-gcm-stream",
"aes",
@@ -1581,7 +1581,7 @@ dependencies = [
[[package]]
name = "deno_runtime"
-version = "0.135.0"
+version = "0.136.0"
dependencies = [
"console_static_text",
"deno_ast",
@@ -1669,7 +1669,7 @@ dependencies = [
[[package]]
name = "deno_tls"
-version = "0.114.0"
+version = "0.115.0"
dependencies = [
"deno_core",
"deno_native_certs",
@@ -1701,7 +1701,7 @@ dependencies = [
[[package]]
name = "deno_url"
-version = "0.127.0"
+version = "0.128.0"
dependencies = [
"deno_bench_util",
"deno_console",
@@ -1713,7 +1713,7 @@ dependencies = [
[[package]]
name = "deno_web"
-version = "0.158.0"
+version = "0.159.0"
dependencies = [
"async-trait",
"base64-simd",
@@ -1734,7 +1734,7 @@ dependencies = [
[[package]]
name = "deno_webgpu"
-version = "0.94.0"
+version = "0.95.0"
dependencies = [
"deno_core",
"raw-window-handle",
@@ -1747,7 +1747,7 @@ dependencies = [
[[package]]
name = "deno_webidl"
-version = "0.127.0"
+version = "0.128.0"
dependencies = [
"deno_bench_util",
"deno_core",
@@ -1755,7 +1755,7 @@ dependencies = [
[[package]]
name = "deno_websocket"
-version = "0.132.0"
+version = "0.133.0"
dependencies = [
"bytes",
"deno_core",
@@ -1773,7 +1773,7 @@ dependencies = [
[[package]]
name = "deno_webstorage"
-version = "0.122.0"
+version = "0.123.0"
dependencies = [
"deno_core",
"deno_web",
@@ -3693,7 +3693,7 @@ dependencies = [
[[package]]
name = "napi_sym"
-version = "0.57.0"
+version = "0.58.0"
dependencies = [
"proc-macro2",
"quote",
diff --git a/Cargo.toml b/Cargo.toml
index ac8206061..84c117bc5 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -43,9 +43,9 @@ repository = "https://github.com/denoland/deno"
deno_ast = { version = "0.31.6", features = ["transpiling"] }
deno_core = { version = "0.238.0" }
-deno_runtime = { version = "0.135.0", path = "./runtime" }
-napi_sym = { version = "0.57.0", path = "./cli/napi/sym" }
-deno_bench_util = { version = "0.121.0", path = "./bench_util" }
+deno_runtime = { version = "0.136.0", path = "./runtime" }
+napi_sym = { version = "0.58.0", path = "./cli/napi/sym" }
+deno_bench_util = { version = "0.122.0", path = "./bench_util" }
test_util = { path = "./test_util" }
deno_lockfile = "0.17.2"
deno_media_type = { version = "0.1.1", features = ["module_specifier"] }
@@ -56,27 +56,27 @@ denokv_sqlite = { default-features = false, version = "0.5.0" }
denokv_remote = "0.5.0"
# exts
-deno_broadcast_channel = { version = "0.121.0", path = "./ext/broadcast_channel" }
-deno_cache = { version = "0.59.0", path = "./ext/cache" }
-deno_console = { version = "0.127.0", path = "./ext/console" }
-deno_cron = { version = "0.7.0", path = "./ext/cron" }
-deno_crypto = { version = "0.141.0", path = "./ext/crypto" }
-deno_fetch = { version = "0.151.0", path = "./ext/fetch" }
-deno_ffi = { version = "0.114.0", path = "./ext/ffi" }
-deno_fs = { version = "0.37.0", path = "./ext/fs" }
-deno_http = { version = "0.124.0", path = "./ext/http" }
-deno_io = { version = "0.37.0", path = "./ext/io" }
-deno_net = { version = "0.119.0", path = "./ext/net" }
-deno_node = { version = "0.64.0", path = "./ext/node" }
-deno_kv = { version = "0.35.0", path = "./ext/kv" }
-deno_tls = { version = "0.114.0", path = "./ext/tls" }
-deno_url = { version = "0.127.0", path = "./ext/url" }
-deno_web = { version = "0.158.0", path = "./ext/web" }
-deno_webgpu = { version = "0.94.0", path = "./ext/webgpu" }
-deno_webidl = { version = "0.127.0", path = "./ext/webidl" }
-deno_websocket = { version = "0.132.0", path = "./ext/websocket" }
-deno_webstorage = { version = "0.122.0", path = "./ext/webstorage" }
-deno_napi = { version = "0.57.0", path = "./ext/napi" }
+deno_broadcast_channel = { version = "0.122.0", path = "./ext/broadcast_channel" }
+deno_cache = { version = "0.60.0", path = "./ext/cache" }
+deno_console = { version = "0.128.0", path = "./ext/console" }
+deno_cron = { version = "0.8.0", path = "./ext/cron" }
+deno_crypto = { version = "0.142.0", path = "./ext/crypto" }
+deno_fetch = { version = "0.152.0", path = "./ext/fetch" }
+deno_ffi = { version = "0.115.0", path = "./ext/ffi" }
+deno_fs = { version = "0.38.0", path = "./ext/fs" }
+deno_http = { version = "0.125.0", path = "./ext/http" }
+deno_io = { version = "0.38.0", path = "./ext/io" }
+deno_net = { version = "0.120.0", path = "./ext/net" }
+deno_node = { version = "0.65.0", path = "./ext/node" }
+deno_kv = { version = "0.36.0", path = "./ext/kv" }
+deno_tls = { version = "0.115.0", path = "./ext/tls" }
+deno_url = { version = "0.128.0", path = "./ext/url" }
+deno_web = { version = "0.159.0", path = "./ext/web" }
+deno_webgpu = { version = "0.95.0", path = "./ext/webgpu" }
+deno_webidl = { version = "0.128.0", path = "./ext/webidl" }
+deno_websocket = { version = "0.133.0", path = "./ext/websocket" }
+deno_webstorage = { version = "0.123.0", path = "./ext/webstorage" }
+deno_napi = { version = "0.58.0", path = "./ext/napi" }
aes = "=0.8.3"
anyhow = "1.0.57"
diff --git a/Releases.md b/Releases.md
index ba1a51993..53a5cfce6 100644
--- a/Releases.md
+++ b/Releases.md
@@ -6,6 +6,103 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at:
https://github.com/denoland/deno_install
+### 1.39.0 / 2023.12.13
+
+- Reland "fix(ext/console): fix inspecting iterators error. (#20720)" (#21370)
+- Update doc for deno fmt `--no-semicolons` arg. (#21414)
+- feat(compile): support "bring your own node_modules" in deno compile (#21377)
+- feat(compile): support discovering modules for more dynamic arguments (#21381)
+- feat(coverage): add html reporter (#21495)
+- feat(coverage): add summary reporter (#21535)
+- feat(cron): added the support for json type schedule to cron api (#21340)
+- feat(ext/fetch): allow `Deno.HttpClient` to be declared with `using` (#21453)
+- feat(ext/kv) add backoffSchedule to enqueue (#21474)
+- feat(ext/web): add ImageData Web API (#21183)
+- feat(fmt): support formatting code blocks in Jupyter notebooks (#21310)
+- feat(lsp): debug log file (#21500)
+- feat(lsp): provide quick fixes for specifiers that could be resolved sloppily
+ (#21506)
+- feat(streams): ReadableStream.read min option (#20849)
+- feat(test): add default to --coverage option (#21510)
+- feat(unstable): --unstable-unsafe-proto (#21313)
+- feat(unstable): ability to resolve specifiers with no extension, specifiers
+ for a directory, and TS files from JS extensions (#21464)
+- feat(unstable): append commit versionstamp to key (#21556)
+- feat: TypeScript 5.3 (#21480)
+- feat: add suggestions to module not found error messages for file urls
+ (#21498)
+- feat: bring back WebGPU (#20812)
+- feat: stabilize Deno.HttpServer.shutdown and Unix socket support (#21463)
+- fix (doc): Typo in `runtime/README.md` (#20020)
+- fix(cli/installer): percent decode name (#21392)
+- fix(compile/npm): ignore symlinks to non-existent paths in node_modules
+ directory (#21479)
+- fix(coverage): escape source code in html coverage report (#21531)
+- fix(coverage): rename --pretty to --detailed (#21543)
+- fix(cron): move deprecated Deno.cron overload (#21407)
+- fix(doc): ambient namespaces should have members as exports (#21483)
+- fix(dts): `Deno.ChildProcess` actually implements `AsyncDisposable` (#21326)
+- fix(ext/kv): throw error if already closed (#21459)
+- fix(ext/node): ServerResponse getHeader() return undefined (#21525)
+- fix(ext/node): add stubbed process.report (#21373)
+- fix(ext/node): add util.parseArgs (#21342)
+- fix(ext/node): allow null value for req.setHeader (#21391)
+- fix(ext/node): basic vm.runInNewContext implementation (#21527)
+- fix(ext/node): fix Buffer.copy when sourceStart > source.length (#21345)
+- fix(ext/node): fix duplexify compatibility (#21346)
+- fix(ext/node): fix os.freemem (#21347)
+- fix(ext/node): include non-enumerable keys in `Reflect.ownKeys(globalThis)`
+ (#21485)
+- fix(ext/node): sign with PEM private keys (#21287)
+- fix(ext/node): stub ServerResponse#flushHeaders (#21526)
+- fix(ext/node): use primordials in ext/node/polyfills/_util (#21444)
+- fix(ext/websocket): don't panic on bad resource id (#21431)
+- fix(fmt): `"singleQuote": true` should prefer single quote—not always use one
+ (#21470)
+- fix(fmt): remove trailing comma for single type param in default export in jsx
+ (#21425)
+- fix(fmt/jupyter): handle "source" property that's a string (#21361)
+- fix(lsp): handle byonm specifiers in jupyter notebooks (#21332)
+- fix(node): setting process.exitCode should change exit code of process
+ (#21429)
+- fix(node/tls): fix NotValidForName for host set via socket / servername
+ (#21441)
+- fix(npm): do not create symlink for non-system optional dep in node_modules
+ directory (#21478)
+- fix(perm): allow-net with port 80 (#21221)
+- fix(permissions): fix panics when revoking net permission (#21388)
+- fix(runtime): Make native modal keyboard interaction consistent with browsers
+ (#18453)
+- fix(task): handle node_modules/.bin directory with byonm (#21386)
+- fix(task): use exit code 127 for command not found and parse escaped parens
+ (#21316)
+- fix(unstable): Honor granular unstable flags in js runtime (#21466)
+- fix(websockets): server socket field initialization (#21433)
+- fix(zlib): handle no flush flag in handle_.write (#21432)
+- fix: add more warnings when using sloppy imports (#21503)
+- fix: allow reserved word 'mod' in exports (#21537)
+- fix: batch upload authentication (#21397)
+- fix: correct flag in tar & upload (#21327)
+- fix: correct the batch upload length (#21401)
+- fix: display unstable flags at bottom of help text (#21468)
+- fix: don't error if a version already published (#21455)
+- fix: error code used for duplicate version publish (#21457)
+- fix: extraneous slash in tar & upload (#21349)
+- fix: ignore more paths in dynamic arg module search (#21539)
+- fix: implement child_process IPC (#21490)
+- fix: use correct import map in tar & upload (#21380)
+- perf(ext/ffi): switch from middleware to tasks (#21239)
+- perf(ext/napi): port NAPI to v8 tasks (#21406)
+- perf(ext/url): improve URLPattern perf (#21488)
+- perf(ext/web): Avoid changing prototype by setting hostObjectBrand directly
+ (#21358)
+- perf(lsp): collect counts and durations of all requests (#21540)
+- perf(lsp): instrument all ops with performance marks (#21536)
+- perf(lsp): simplify some of the startup code (#21538)
+- perf(lsp): use null types instead of stub modules (#21541)
+- perf(node/fs): faster `existsSync` when not exists (#21458)
+- perf: move "cli/js/40_testing.js" out of main snapshot (#21212)
+
### 1.38.5 / 2023.12.05
- feat(unstable): kv.watch() (#21147)
diff --git a/bench_util/Cargo.toml b/bench_util/Cargo.toml
index 2535e6788..bf35cf451 100644
--- a/bench_util/Cargo.toml
+++ b/bench_util/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_bench_util"
-version = "0.121.0"
+version = "0.122.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index 7ae5ae2bd..6db9432cf 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno"
-version = "1.38.5"
+version = "1.39.0"
authors.workspace = true
default-run = "deno"
edition.workspace = true
diff --git a/cli/deno_std.rs b/cli/deno_std.rs
index 419ec0e78..45fb5ebe8 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.208.0/";
+pub const CURRENT_STD_URL_STR: &str = "https://deno.land/std@0.209.0/";
diff --git a/cli/napi/sym/Cargo.toml b/cli/napi/sym/Cargo.toml
index 7ab205662..a9d618c1d 100644
--- a/cli/napi/sym/Cargo.toml
+++ b/cli/napi/sym/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "napi_sym"
-version = "0.57.0"
+version = "0.58.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 89a0eeb03..bf8414fe6 100644
--- a/ext/broadcast_channel/Cargo.toml
+++ b/ext/broadcast_channel/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_broadcast_channel"
-version = "0.121.0"
+version = "0.122.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/cache/Cargo.toml b/ext/cache/Cargo.toml
index 1beb1235c..62fdfe803 100644
--- a/ext/cache/Cargo.toml
+++ b/ext/cache/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_cache"
-version = "0.59.0"
+version = "0.60.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/console/Cargo.toml b/ext/console/Cargo.toml
index bef4308aa..149e2f595 100644
--- a/ext/console/Cargo.toml
+++ b/ext/console/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_console"
-version = "0.127.0"
+version = "0.128.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/cron/Cargo.toml b/ext/cron/Cargo.toml
index c528c4804..5a1c0d619 100644
--- a/ext/cron/Cargo.toml
+++ b/ext/cron/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_cron"
-version = "0.7.0"
+version = "0.8.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/crypto/Cargo.toml b/ext/crypto/Cargo.toml
index 301f4cf9b..96e60514f 100644
--- a/ext/crypto/Cargo.toml
+++ b/ext/crypto/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_crypto"
-version = "0.141.0"
+version = "0.142.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/fetch/Cargo.toml b/ext/fetch/Cargo.toml
index bca947d59..d4004fd5e 100644
--- a/ext/fetch/Cargo.toml
+++ b/ext/fetch/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_fetch"
-version = "0.151.0"
+version = "0.152.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/ffi/Cargo.toml b/ext/ffi/Cargo.toml
index 858e03df2..d0f977eaf 100644
--- a/ext/ffi/Cargo.toml
+++ b/ext/ffi/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_ffi"
-version = "0.114.0"
+version = "0.115.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/fs/Cargo.toml b/ext/fs/Cargo.toml
index db64f8ce7..5ff0e951b 100644
--- a/ext/fs/Cargo.toml
+++ b/ext/fs/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_fs"
-version = "0.37.0"
+version = "0.38.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/http/Cargo.toml b/ext/http/Cargo.toml
index 2b873b050..8426b9e14 100644
--- a/ext/http/Cargo.toml
+++ b/ext/http/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_http"
-version = "0.124.0"
+version = "0.125.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/io/Cargo.toml b/ext/io/Cargo.toml
index e6bae79d5..f865d9059 100644
--- a/ext/io/Cargo.toml
+++ b/ext/io/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_io"
-version = "0.37.0"
+version = "0.38.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/kv/Cargo.toml b/ext/kv/Cargo.toml
index c100b3e0f..31533c669 100644
--- a/ext/kv/Cargo.toml
+++ b/ext/kv/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_kv"
-version = "0.35.0"
+version = "0.36.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/napi/Cargo.toml b/ext/napi/Cargo.toml
index 7c3f7b0c9..6ec256932 100644
--- a/ext/napi/Cargo.toml
+++ b/ext/napi/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_napi"
-version = "0.57.0"
+version = "0.58.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/net/Cargo.toml b/ext/net/Cargo.toml
index 9f54ab48c..6b9f2fa9f 100644
--- a/ext/net/Cargo.toml
+++ b/ext/net/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_net"
-version = "0.119.0"
+version = "0.120.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/node/Cargo.toml b/ext/node/Cargo.toml
index e5f984145..c7ca63097 100644
--- a/ext/node/Cargo.toml
+++ b/ext/node/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_node"
-version = "0.64.0"
+version = "0.65.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/tls/Cargo.toml b/ext/tls/Cargo.toml
index 508da6899..d162a2c7a 100644
--- a/ext/tls/Cargo.toml
+++ b/ext/tls/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_tls"
-version = "0.114.0"
+version = "0.115.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/url/Cargo.toml b/ext/url/Cargo.toml
index 8db94fe3d..839787335 100644
--- a/ext/url/Cargo.toml
+++ b/ext/url/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_url"
-version = "0.127.0"
+version = "0.128.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/web/Cargo.toml b/ext/web/Cargo.toml
index 3c0d4455e..f5845c0ec 100644
--- a/ext/web/Cargo.toml
+++ b/ext/web/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_web"
-version = "0.158.0"
+version = "0.159.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/webgpu/Cargo.toml b/ext/webgpu/Cargo.toml
index b3f68d1d9..dad21201c 100644
--- a/ext/webgpu/Cargo.toml
+++ b/ext/webgpu/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_webgpu"
-version = "0.94.0"
+version = "0.95.0"
authors = ["the Deno authors"]
edition.workspace = true
license = "MIT"
diff --git a/ext/webidl/Cargo.toml b/ext/webidl/Cargo.toml
index 72fe0a23e..bb99c66fb 100644
--- a/ext/webidl/Cargo.toml
+++ b/ext/webidl/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_webidl"
-version = "0.127.0"
+version = "0.128.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/websocket/Cargo.toml b/ext/websocket/Cargo.toml
index 13d269568..3d8e6214b 100644
--- a/ext/websocket/Cargo.toml
+++ b/ext/websocket/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_websocket"
-version = "0.132.0"
+version = "0.133.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/webstorage/Cargo.toml b/ext/webstorage/Cargo.toml
index fa0015f95..e4efc6e55 100644
--- a/ext/webstorage/Cargo.toml
+++ b/ext/webstorage/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_webstorage"
-version = "0.122.0"
+version = "0.123.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml
index 0ae26d811..e47d2b59e 100644
--- a/runtime/Cargo.toml
+++ b/runtime/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_runtime"
-version = "0.135.0"
+version = "0.136.0"
authors.workspace = true
edition.workspace = true
license.workspace = true