summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordenobot <33910674+denobot@users.noreply.github.com>2024-04-11 10:07:24 +0200
committerGitHub <noreply@github.com>2024-04-11 13:37:24 +0530
commitca7432b86b78434c94c8c6059f10260ccb1b967a (patch)
tree815885095fd13dec82dd45987cba073a5afc673e
parent34e1d0cdd4b7a00d48dee940024a7a695aa27f48 (diff)
chore: forward v1.42.2 release commit to main (#23315)
Co-authored-by: Satya Rohith <me@satyarohith.com>
-rwxr-xr-x.github/workflows/ci.generate.ts2
-rw-r--r--.github/workflows/ci.yml8
-rw-r--r--Cargo.lock54
-rw-r--r--Cargo.toml52
-rw-r--r--Releases.md47
-rw-r--r--bench_util/Cargo.toml2
-rw-r--r--cli/Cargo.toml2
-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/canvas/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
-rw-r--r--runtime/permissions/Cargo.toml2
-rw-r--r--tools/deno.lock.json10
33 files changed, 142 insertions, 85 deletions
diff --git a/.github/workflows/ci.generate.ts b/.github/workflows/ci.generate.ts
index 4133e1262..b2f18fa08 100755
--- a/.github/workflows/ci.generate.ts
+++ b/.github/workflows/ci.generate.ts
@@ -5,7 +5,7 @@ import { stringify } from "jsr:@std/yaml@^0.221/stringify";
// 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 = 82;
+const cacheVersion = 83;
const ubuntuX86Runner = "ubuntu-22.04";
const ubuntuX86XlRunner = "ubuntu-22.04-xl";
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 5ede2dfa3..e127077bb 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -363,8 +363,8 @@ jobs:
path: |-
~/.cargo/registry/index
~/.cargo/registry/cache
- key: '82-cargo-home-${{ matrix.os }}-${{ matrix.arch }}-${{ hashFiles(''Cargo.lock'') }}'
- restore-keys: '82-cargo-home-${{ matrix.os }}-${{ matrix.arch }}'
+ key: '83-cargo-home-${{ matrix.os }}-${{ matrix.arch }}-${{ hashFiles(''Cargo.lock'') }}'
+ restore-keys: '83-cargo-home-${{ matrix.os }}-${{ matrix.arch }}'
if: '!(matrix.skip)'
- name: Restore cache build output (PR)
uses: actions/cache/restore@v4
@@ -376,7 +376,7 @@ jobs:
!./target/*/*.zip
!./target/*/*.tar.gz
key: never_saved
- restore-keys: '82-cargo-target-${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.profile }}-${{ matrix.job }}-'
+ restore-keys: '83-cargo-target-${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.profile }}-${{ matrix.job }}-'
- name: Apply and update mtime cache
if: '!(matrix.skip) && (!startsWith(github.ref, ''refs/tags/''))'
uses: ./.github/mtime_cache
@@ -670,7 +670,7 @@ jobs:
!./target/*/gn_out
!./target/*/*.zip
!./target/*/*.tar.gz
- key: '82-cargo-target-${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.profile }}-${{ matrix.job }}-${{ github.sha }}'
+ key: '83-cargo-target-${{ matrix.os }}-${{ matrix.arch }}-${{ 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 b97905c08..05653e85f 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1028,7 +1028,7 @@ dependencies = [
[[package]]
name = "deno"
-version = "1.42.1"
+version = "1.42.2"
dependencies = [
"async-trait",
"base32",
@@ -1174,7 +1174,7 @@ dependencies = [
[[package]]
name = "deno_bench_util"
-version = "0.138.0"
+version = "0.139.0"
dependencies = [
"bencher",
"deno_core",
@@ -1184,7 +1184,7 @@ dependencies = [
[[package]]
name = "deno_broadcast_channel"
-version = "0.138.0"
+version = "0.139.0"
dependencies = [
"async-trait",
"deno_core",
@@ -1194,7 +1194,7 @@ dependencies = [
[[package]]
name = "deno_cache"
-version = "0.76.0"
+version = "0.77.0"
dependencies = [
"async-trait",
"deno_core",
@@ -1225,7 +1225,7 @@ dependencies = [
[[package]]
name = "deno_canvas"
-version = "0.13.0"
+version = "0.14.0"
dependencies = [
"deno_core",
"deno_webgpu",
@@ -1254,7 +1254,7 @@ dependencies = [
[[package]]
name = "deno_console"
-version = "0.144.0"
+version = "0.145.0"
dependencies = [
"deno_core",
]
@@ -1299,7 +1299,7 @@ checksum = "a13951ea98c0a4c372f162d669193b4c9d991512de9f2381dd161027f34b26b1"
[[package]]
name = "deno_cron"
-version = "0.24.0"
+version = "0.25.0"
dependencies = [
"anyhow",
"async-trait",
@@ -1312,7 +1312,7 @@ dependencies = [
[[package]]
name = "deno_crypto"
-version = "0.158.0"
+version = "0.159.0"
dependencies = [
"aes",
"aes-gcm",
@@ -1387,7 +1387,7 @@ dependencies = [
[[package]]
name = "deno_fetch"
-version = "0.168.0"
+version = "0.169.0"
dependencies = [
"bytes",
"data-url",
@@ -1405,7 +1405,7 @@ dependencies = [
[[package]]
name = "deno_ffi"
-version = "0.131.0"
+version = "0.132.0"
dependencies = [
"deno_core",
"dlopen2",
@@ -1421,7 +1421,7 @@ dependencies = [
[[package]]
name = "deno_fs"
-version = "0.54.0"
+version = "0.55.0"
dependencies = [
"async-trait",
"base32",
@@ -1471,7 +1471,7 @@ dependencies = [
[[package]]
name = "deno_http"
-version = "0.141.0"
+version = "0.142.0"
dependencies = [
"async-compression",
"async-trait",
@@ -1510,7 +1510,7 @@ dependencies = [
[[package]]
name = "deno_io"
-version = "0.54.0"
+version = "0.55.0"
dependencies = [
"async-trait",
"deno_core",
@@ -1525,7 +1525,7 @@ dependencies = [
[[package]]
name = "deno_kv"
-version = "0.52.0"
+version = "0.53.0"
dependencies = [
"anyhow",
"async-trait",
@@ -1597,7 +1597,7 @@ dependencies = [
[[package]]
name = "deno_napi"
-version = "0.74.0"
+version = "0.75.0"
dependencies = [
"deno_core",
"libloading 0.7.4",
@@ -1618,7 +1618,7 @@ dependencies = [
[[package]]
name = "deno_net"
-version = "0.136.0"
+version = "0.137.0"
dependencies = [
"deno_core",
"deno_tls",
@@ -1635,7 +1635,7 @@ dependencies = [
[[package]]
name = "deno_node"
-version = "0.81.0"
+version = "0.82.0"
dependencies = [
"aead-gcm-stream",
"aes",
@@ -1736,7 +1736,7 @@ dependencies = [
[[package]]
name = "deno_permissions"
-version = "0.4.0"
+version = "0.5.0"
dependencies = [
"console_static_text",
"deno_core",
@@ -1753,7 +1753,7 @@ dependencies = [
[[package]]
name = "deno_runtime"
-version = "0.152.0"
+version = "0.153.0"
dependencies = [
"console_static_text",
"deno_ast",
@@ -1859,7 +1859,7 @@ dependencies = [
[[package]]
name = "deno_tls"
-version = "0.131.0"
+version = "0.132.0"
dependencies = [
"deno_core",
"deno_native_certs",
@@ -1892,7 +1892,7 @@ dependencies = [
[[package]]
name = "deno_url"
-version = "0.144.0"
+version = "0.145.0"
dependencies = [
"deno_bench_util",
"deno_console",
@@ -1904,7 +1904,7 @@ dependencies = [
[[package]]
name = "deno_web"
-version = "0.175.0"
+version = "0.176.0"
dependencies = [
"async-trait",
"base64-simd",
@@ -1925,7 +1925,7 @@ dependencies = [
[[package]]
name = "deno_webgpu"
-version = "0.111.0"
+version = "0.112.0"
dependencies = [
"deno_core",
"raw-window-handle",
@@ -1938,7 +1938,7 @@ dependencies = [
[[package]]
name = "deno_webidl"
-version = "0.144.0"
+version = "0.145.0"
dependencies = [
"deno_bench_util",
"deno_core",
@@ -1946,7 +1946,7 @@ dependencies = [
[[package]]
name = "deno_websocket"
-version = "0.149.0"
+version = "0.150.0"
dependencies = [
"bytes",
"deno_core",
@@ -1966,7 +1966,7 @@ dependencies = [
[[package]]
name = "deno_webstorage"
-version = "0.139.0"
+version = "0.140.0"
dependencies = [
"deno_core",
"deno_web",
@@ -4094,7 +4094,7 @@ dependencies = [
[[package]]
name = "napi_sym"
-version = "0.74.0"
+version = "0.75.0"
dependencies = [
"proc-macro2",
"quote",
diff --git a/Cargo.toml b/Cargo.toml
index 15577e7cb..30e7e168f 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -46,13 +46,13 @@ repository = "https://github.com/denoland/deno"
deno_ast = { version = "0.34.1", features = ["transpiling"] }
deno_core = { version = "0.272.0" }
-deno_bench_util = { version = "0.138.0", path = "./bench_util" }
+deno_bench_util = { version = "0.139.0", path = "./bench_util" }
deno_lockfile = "0.19.0"
deno_media_type = { version = "0.1.3", features = ["module_specifier"] }
-deno_permissions = { version = "0.4.0", path = "./runtime/permissions" }
-deno_runtime = { version = "0.152.0", path = "./runtime" }
+deno_permissions = { version = "0.5.0", path = "./runtime/permissions" }
+deno_runtime = { version = "0.153.0", path = "./runtime" }
deno_terminal = "0.1.1"
-napi_sym = { version = "0.74.0", path = "./cli/napi/sym" }
+napi_sym = { version = "0.75.0", path = "./cli/napi/sym" }
test_util = { package = "test_server", path = "./tests/util/server" }
denokv_proto = "0.5.0"
@@ -61,28 +61,28 @@ denokv_remote = "0.5.0"
denokv_sqlite = { default-features = false, version = "0.5.0" }
# exts
-deno_broadcast_channel = { version = "0.138.0", path = "./ext/broadcast_channel" }
-deno_cache = { version = "0.76.0", path = "./ext/cache" }
-deno_canvas = { version = "0.13.0", path = "./ext/canvas" }
-deno_console = { version = "0.144.0", path = "./ext/console" }
-deno_cron = { version = "0.24.0", path = "./ext/cron" }
-deno_crypto = { version = "0.158.0", path = "./ext/crypto" }
-deno_fetch = { version = "0.168.0", path = "./ext/fetch" }
-deno_ffi = { version = "0.131.0", path = "./ext/ffi" }
-deno_fs = { version = "0.54.0", path = "./ext/fs" }
-deno_http = { version = "0.141.0", path = "./ext/http" }
-deno_io = { version = "0.54.0", path = "./ext/io" }
-deno_kv = { version = "0.52.0", path = "./ext/kv" }
-deno_napi = { version = "0.74.0", path = "./ext/napi" }
-deno_net = { version = "0.136.0", path = "./ext/net" }
-deno_node = { version = "0.81.0", path = "./ext/node" }
-deno_tls = { version = "0.131.0", path = "./ext/tls" }
-deno_url = { version = "0.144.0", path = "./ext/url" }
-deno_web = { version = "0.175.0", path = "./ext/web" }
-deno_webgpu = { version = "0.111.0", path = "./ext/webgpu" }
-deno_webidl = { version = "0.144.0", path = "./ext/webidl" }
-deno_websocket = { version = "0.149.0", path = "./ext/websocket" }
-deno_webstorage = { version = "0.139.0", path = "./ext/webstorage" }
+deno_broadcast_channel = { version = "0.139.0", path = "./ext/broadcast_channel" }
+deno_cache = { version = "0.77.0", path = "./ext/cache" }
+deno_canvas = { version = "0.14.0", path = "./ext/canvas" }
+deno_console = { version = "0.145.0", path = "./ext/console" }
+deno_cron = { version = "0.25.0", path = "./ext/cron" }
+deno_crypto = { version = "0.159.0", path = "./ext/crypto" }
+deno_fetch = { version = "0.169.0", path = "./ext/fetch" }
+deno_ffi = { version = "0.132.0", path = "./ext/ffi" }
+deno_fs = { version = "0.55.0", path = "./ext/fs" }
+deno_http = { version = "0.142.0", path = "./ext/http" }
+deno_io = { version = "0.55.0", path = "./ext/io" }
+deno_kv = { version = "0.53.0", path = "./ext/kv" }
+deno_napi = { version = "0.75.0", path = "./ext/napi" }
+deno_net = { version = "0.137.0", path = "./ext/net" }
+deno_node = { version = "0.82.0", path = "./ext/node" }
+deno_tls = { version = "0.132.0", path = "./ext/tls" }
+deno_url = { version = "0.145.0", path = "./ext/url" }
+deno_web = { version = "0.176.0", path = "./ext/web" }
+deno_webgpu = { version = "0.112.0", path = "./ext/webgpu" }
+deno_webidl = { version = "0.145.0", path = "./ext/webidl" }
+deno_websocket = { version = "0.150.0", path = "./ext/websocket" }
+deno_webstorage = { version = "0.140.0", path = "./ext/webstorage" }
aes = "=0.8.3"
anyhow = "1.0.57"
diff --git a/Releases.md b/Releases.md
index 7ff51f5ba..50d2c9518 100644
--- a/Releases.md
+++ b/Releases.md
@@ -6,6 +6,53 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at:
https://github.com/denoland/deno_install
+### 1.42.2 / 2024.04.11
+
+- FUTURE(ext/fs): make `Deno.FsFile` constructor illegal (#23235)
+- FUTURE(ext/fs): remove `Deno.FsWatcher.prototype.rid` (#23234)
+- FUTURE(ext/net): remove
+ `Deno.(Conn|TlsConn|Listener|TlsListener|UnixConn).prototype.rid` (#23219)
+- FUTURE: enable BYONM by default (#23194)
+- FUTURE: override byonm with nodeModulesDir setting (#23222)
+- FUTURE: remove deprecated APIs within workers (#23220)
+- feat(lsp): respect nested deno.json for fmt and lint config (#23159)
+- fix(cli): Enforce a human delay in prompt to fix paste problem (#23184)
+- fix(cli): fix deadlock in test writer when test pipe is full (#23210)
+- fix(cli): update `deno doc` help to fit current usage (#23224)
+- fix(ext/fs): account for all ops in leak checks (#23300)
+- fix(ext/http): Make `Deno.serveHttp()` work when proxying (#23269)
+- fix(ext/net): Improve ts types for network APIs (#23228)
+- fix(ext/node): Add "module" to builtinsModule (#23242)
+- fix(ext/node): Add fs.readv, fs.readvSync (#23166)
+- fix(ext/node): MessagePort works (#22999)
+- fix(ext/node): Support returning tokens and option defaults in
+ `node:util.parseArgs` (#23192)
+- fix(ext/node): `node:vm` contexts (#23202)
+- fix(ext/node): count MessagePort message listeners in hasMessageEventListener
+ (#23209)
+- fix(ext/node): hostname is valid IPv4 addr (#23243)
+- fix(ext/node): implement MessagePort.unref() (#23278)
+- fix(ext/node): improve AsyncLocalStorage api (#23175)
+- fix(ext/node): out-of-order writes of fs.createWriteStream (#23244)
+- fix(ext/node): patch MessagePort if provided as workerData (#23198)
+- fix(ext/node): polyfill node:domain module (#23088)
+- fix(ext/tls): add support EC private key (#23261)
+- fix(lsp): Remove client-facing format failure warning (#23196)
+- fix(lsp): respect DENO_FUTURE for BYONM config (#23207)
+- fix(runtime): fix Windows permission prompt (#23212)
+- fix: prevent cache db errors when deno_dir not exists (#23168)
+- perf(lsp): Don't retain `SourceFileObject`s in `sourceFileCache` longer than
+ necessary (#23258)
+- perf(lsp): More granular locking of `FileSystemDocuments` (#23291)
+- perf(lsp): Only evict caches on JS side when things actually change (#23293)
+- perf(lsp): cache ts config in isolate until new project version (#23283)
+- perf(lsp): don't keep remote module ast's in memory (#23230)
+- perf(lsp): don't pass remote modules as tsc roots (#23259)
+- perf(lsp): replace document registry source cache on update (#23311)
+- perf(lsp): use lockfile to reduce npm pkg resolution time (#23247)
+- perf(node): put pkg json into an `Rc` (#23156)
+- perf: reduce allocations in `MediaType::from_specifier` (#23190)
+
### 1.42.1 / 2024.04.01
- fix(check): ignore certain diagnostics in remote modules and when publishing
diff --git a/bench_util/Cargo.toml b/bench_util/Cargo.toml
index d7c3d0dbf..337a94c73 100644
--- a/bench_util/Cargo.toml
+++ b/bench_util/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_bench_util"
-version = "0.138.0"
+version = "0.139.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index 7ec91725e..6e0e5f2bb 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno"
-version = "1.42.1"
+version = "1.42.2"
authors.workspace = true
default-run = "deno"
edition.workspace = true
diff --git a/cli/napi/sym/Cargo.toml b/cli/napi/sym/Cargo.toml
index 16d9d9b58..187cdac3d 100644
--- a/cli/napi/sym/Cargo.toml
+++ b/cli/napi/sym/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "napi_sym"
-version = "0.74.0"
+version = "0.75.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 7d94df893..8a7480513 100644
--- a/ext/broadcast_channel/Cargo.toml
+++ b/ext/broadcast_channel/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_broadcast_channel"
-version = "0.138.0"
+version = "0.139.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/cache/Cargo.toml b/ext/cache/Cargo.toml
index f1f7ed373..5712e3471 100644
--- a/ext/cache/Cargo.toml
+++ b/ext/cache/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_cache"
-version = "0.76.0"
+version = "0.77.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/canvas/Cargo.toml b/ext/canvas/Cargo.toml
index 619db25b0..58286ed62 100644
--- a/ext/canvas/Cargo.toml
+++ b/ext/canvas/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_canvas"
-version = "0.13.0"
+version = "0.14.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/console/Cargo.toml b/ext/console/Cargo.toml
index 344fbcca5..71cfb4491 100644
--- a/ext/console/Cargo.toml
+++ b/ext/console/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_console"
-version = "0.144.0"
+version = "0.145.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/cron/Cargo.toml b/ext/cron/Cargo.toml
index fcec620ce..2a5c1b381 100644
--- a/ext/cron/Cargo.toml
+++ b/ext/cron/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_cron"
-version = "0.24.0"
+version = "0.25.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/crypto/Cargo.toml b/ext/crypto/Cargo.toml
index 9a8808454..04e637a35 100644
--- a/ext/crypto/Cargo.toml
+++ b/ext/crypto/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_crypto"
-version = "0.158.0"
+version = "0.159.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/fetch/Cargo.toml b/ext/fetch/Cargo.toml
index 3d60d5551..f01a29bd1 100644
--- a/ext/fetch/Cargo.toml
+++ b/ext/fetch/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_fetch"
-version = "0.168.0"
+version = "0.169.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/ffi/Cargo.toml b/ext/ffi/Cargo.toml
index dd5508526..6e0407c49 100644
--- a/ext/ffi/Cargo.toml
+++ b/ext/ffi/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_ffi"
-version = "0.131.0"
+version = "0.132.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/fs/Cargo.toml b/ext/fs/Cargo.toml
index 5b51ce428..99ff40c06 100644
--- a/ext/fs/Cargo.toml
+++ b/ext/fs/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_fs"
-version = "0.54.0"
+version = "0.55.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/http/Cargo.toml b/ext/http/Cargo.toml
index 2517014ca..de910e6c2 100644
--- a/ext/http/Cargo.toml
+++ b/ext/http/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_http"
-version = "0.141.0"
+version = "0.142.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/io/Cargo.toml b/ext/io/Cargo.toml
index b361ea760..08acab753 100644
--- a/ext/io/Cargo.toml
+++ b/ext/io/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_io"
-version = "0.54.0"
+version = "0.55.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/kv/Cargo.toml b/ext/kv/Cargo.toml
index 5dda934ac..f208a09c9 100644
--- a/ext/kv/Cargo.toml
+++ b/ext/kv/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_kv"
-version = "0.52.0"
+version = "0.53.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/napi/Cargo.toml b/ext/napi/Cargo.toml
index 99a0cd16f..8913f14e3 100644
--- a/ext/napi/Cargo.toml
+++ b/ext/napi/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_napi"
-version = "0.74.0"
+version = "0.75.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/net/Cargo.toml b/ext/net/Cargo.toml
index 970f1831b..c54dbddef 100644
--- a/ext/net/Cargo.toml
+++ b/ext/net/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_net"
-version = "0.136.0"
+version = "0.137.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/node/Cargo.toml b/ext/node/Cargo.toml
index e6ae0d0e6..2ebc5a50f 100644
--- a/ext/node/Cargo.toml
+++ b/ext/node/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_node"
-version = "0.81.0"
+version = "0.82.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/tls/Cargo.toml b/ext/tls/Cargo.toml
index f56b7b3ff..931ed92be 100644
--- a/ext/tls/Cargo.toml
+++ b/ext/tls/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_tls"
-version = "0.131.0"
+version = "0.132.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/url/Cargo.toml b/ext/url/Cargo.toml
index 49b94cce6..960ad056d 100644
--- a/ext/url/Cargo.toml
+++ b/ext/url/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_url"
-version = "0.144.0"
+version = "0.145.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/web/Cargo.toml b/ext/web/Cargo.toml
index d5ff18c5f..5eef49b06 100644
--- a/ext/web/Cargo.toml
+++ b/ext/web/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_web"
-version = "0.175.0"
+version = "0.176.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/webgpu/Cargo.toml b/ext/webgpu/Cargo.toml
index 8fbd6b2d0..ec15caa06 100644
--- a/ext/webgpu/Cargo.toml
+++ b/ext/webgpu/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_webgpu"
-version = "0.111.0"
+version = "0.112.0"
authors = ["the Deno authors"]
edition.workspace = true
license = "MIT"
diff --git a/ext/webidl/Cargo.toml b/ext/webidl/Cargo.toml
index fe6ca7a6e..c78440c9a 100644
--- a/ext/webidl/Cargo.toml
+++ b/ext/webidl/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_webidl"
-version = "0.144.0"
+version = "0.145.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/websocket/Cargo.toml b/ext/websocket/Cargo.toml
index 938403b0b..e84ebcb58 100644
--- a/ext/websocket/Cargo.toml
+++ b/ext/websocket/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_websocket"
-version = "0.149.0"
+version = "0.150.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/ext/webstorage/Cargo.toml b/ext/webstorage/Cargo.toml
index f8480b179..10568020b 100644
--- a/ext/webstorage/Cargo.toml
+++ b/ext/webstorage/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_webstorage"
-version = "0.139.0"
+version = "0.140.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml
index ab95ac88d..29f3c238e 100644
--- a/runtime/Cargo.toml
+++ b/runtime/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_runtime"
-version = "0.152.0"
+version = "0.153.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/runtime/permissions/Cargo.toml b/runtime/permissions/Cargo.toml
index f1d85151b..b57e5a93e 100644
--- a/runtime/permissions/Cargo.toml
+++ b/runtime/permissions/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_permissions"
-version = "0.4.0"
+version = "0.5.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
diff --git a/tools/deno.lock.json b/tools/deno.lock.json
index e5982e939..d4f7c6230 100644
--- a/tools/deno.lock.json
+++ b/tools/deno.lock.json
@@ -1,5 +1,15 @@
{
"version": "3",
+ "packages": {
+ "specifiers": {
+ "jsr:@std/yaml@^0.221": "jsr:@std/yaml@0.221.0"
+ },
+ "jsr": {
+ "@std/yaml@0.221.0": {
+ "integrity": "bac8913ee4f6fc600d4b92cc020f755070e22687ad242341f31d123ff690ae98"
+ }
+ }
+ },
"remote": {
"https://cdn.skypack.dev/-/@octokit/auth-token@v2.5.0-63e6RmuUEnR1eflFvHL4/dist=es2019,mode=imports/optimized/@octokit/auth-token.js": "5247df74f0bd63d994d1ab5b52265761cf2eb1b67f12171a030ebef4027d5eb6",
"https://cdn.skypack.dev/-/@octokit/core@v3.6.0-OHRgZVmYvb8jBujJr5vE/dist=es2019,mode=imports/optimized/@octokit/core.js": "a1f82f18dccc5b09d753690a8addd839e4fe0b5a6f6831b17437f136c8921db3",