mirror of
https://github.com/denoland/deno.git
synced 2025-12-23 08:48:24 +00:00
2.5.3 (#30903)
Some checks are pending
ci / pre-build (push) Waiting to run
ci / test debug linux-aarch64 (push) Blocked by required conditions
ci / test release linux-aarch64 (push) Blocked by required conditions
ci / test debug macos-aarch64 (push) Blocked by required conditions
ci / test release macos-aarch64 (push) Blocked by required conditions
ci / bench release linux-x86_64 (push) Blocked by required conditions
ci / lint debug linux-x86_64 (push) Blocked by required conditions
ci / lint debug macos-x86_64 (push) Blocked by required conditions
ci / lint debug windows-x86_64 (push) Blocked by required conditions
ci / test debug linux-x86_64 (push) Blocked by required conditions
ci / test release linux-x86_64 (push) Blocked by required conditions
ci / test debug macos-x86_64 (push) Blocked by required conditions
ci / test release macos-x86_64 (push) Blocked by required conditions
ci / test debug windows-x86_64 (push) Blocked by required conditions
ci / test release windows-x86_64 (push) Blocked by required conditions
ci / build libs (push) Blocked by required conditions
ci / publish canary (push) Blocked by required conditions
Some checks are pending
ci / pre-build (push) Waiting to run
ci / test debug linux-aarch64 (push) Blocked by required conditions
ci / test release linux-aarch64 (push) Blocked by required conditions
ci / test debug macos-aarch64 (push) Blocked by required conditions
ci / test release macos-aarch64 (push) Blocked by required conditions
ci / bench release linux-x86_64 (push) Blocked by required conditions
ci / lint debug linux-x86_64 (push) Blocked by required conditions
ci / lint debug macos-x86_64 (push) Blocked by required conditions
ci / lint debug windows-x86_64 (push) Blocked by required conditions
ci / test debug linux-x86_64 (push) Blocked by required conditions
ci / test release linux-x86_64 (push) Blocked by required conditions
ci / test debug macos-x86_64 (push) Blocked by required conditions
ci / test release macos-x86_64 (push) Blocked by required conditions
ci / test debug windows-x86_64 (push) Blocked by required conditions
ci / test release windows-x86_64 (push) Blocked by required conditions
ci / build libs (push) Blocked by required conditions
ci / publish canary (push) Blocked by required conditions
Co-authored-by: David Sherret <dsherret@gmail.com>
This commit is contained in:
parent
46e2c64b2b
commit
1c3d04cfaf
52 changed files with 167 additions and 142 deletions
2
.github/workflows/ci.generate.ts
vendored
2
.github/workflows/ci.generate.ts
vendored
|
|
@ -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 = 74;
|
||||
const cacheVersion = 75;
|
||||
|
||||
const ubuntuX86Runner = "ubuntu-24.04";
|
||||
const ubuntuX86XlRunner = "ghcr.io/cirruslabs/ubuntu-runner-amd64:24.04";
|
||||
|
|
|
|||
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
|
|
@ -188,8 +188,8 @@ jobs:
|
|||
~/.cargo/registry/index
|
||||
~/.cargo/registry/cache
|
||||
~/.cargo/git/db
|
||||
key: '74-cargo-home-${{ matrix.os }}-${{ matrix.arch }}-${{ hashFiles(''Cargo.lock'') }}'
|
||||
restore-keys: '74-cargo-home-${{ matrix.os }}-${{ matrix.arch }}-'
|
||||
key: '75-cargo-home-${{ matrix.os }}-${{ matrix.arch }}-${{ hashFiles(''Cargo.lock'') }}'
|
||||
restore-keys: '75-cargo-home-${{ matrix.os }}-${{ matrix.arch }}-'
|
||||
if: '!(matrix.skip)'
|
||||
- uses: dsherret/rust-toolchain-file@v1
|
||||
if: '!(matrix.skip)'
|
||||
|
|
@ -391,7 +391,7 @@ jobs:
|
|||
!./target/*/*.zip
|
||||
!./target/*/*.tar.gz
|
||||
key: never_saved
|
||||
restore-keys: '74-cargo-target-${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.profile }}-${{ matrix.job }}-'
|
||||
restore-keys: '75-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
|
||||
|
|
@ -772,7 +772,7 @@ jobs:
|
|||
!./target/*/gn_root
|
||||
!./target/*/*.zip
|
||||
!./target/*/*.tar.gz
|
||||
key: '74-cargo-target-${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.profile }}-${{ matrix.job }}-${{ github.sha }}'
|
||||
key: '75-cargo-target-${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.profile }}-${{ matrix.job }}-${{ github.sha }}'
|
||||
libs:
|
||||
name: build libs
|
||||
needs:
|
||||
|
|
|
|||
92
Cargo.lock
generated
92
Cargo.lock
generated
|
|
@ -1599,7 +1599,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno"
|
||||
version = "2.5.2"
|
||||
version = "2.5.3"
|
||||
dependencies = [
|
||||
"anstream",
|
||||
"async-trait",
|
||||
|
|
@ -1794,7 +1794,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno_bench_util"
|
||||
version = "0.211.0"
|
||||
version = "0.212.0"
|
||||
dependencies = [
|
||||
"bencher",
|
||||
"deno_core",
|
||||
|
|
@ -1803,7 +1803,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno_broadcast_channel"
|
||||
version = "0.211.0"
|
||||
version = "0.212.0"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"deno_core",
|
||||
|
|
@ -1816,7 +1816,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno_bundle_runtime"
|
||||
version = "0.4.0"
|
||||
version = "0.5.0"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"deno_core",
|
||||
|
|
@ -1828,7 +1828,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno_cache"
|
||||
version = "0.149.0"
|
||||
version = "0.150.0"
|
||||
dependencies = [
|
||||
"async-stream",
|
||||
"async-trait",
|
||||
|
|
@ -1884,7 +1884,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno_canvas"
|
||||
version = "0.86.0"
|
||||
version = "0.87.0"
|
||||
dependencies = [
|
||||
"bytemuck",
|
||||
"deno_core",
|
||||
|
|
@ -1897,7 +1897,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno_config"
|
||||
version = "0.67.0"
|
||||
version = "0.68.0"
|
||||
dependencies = [
|
||||
"boxed_error",
|
||||
"capacity_builder",
|
||||
|
|
@ -1923,7 +1923,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno_console"
|
||||
version = "0.217.0"
|
||||
version = "0.218.0"
|
||||
dependencies = [
|
||||
"deno_core",
|
||||
]
|
||||
|
|
@ -1975,7 +1975,7 @@ checksum = "fe4dccb6147bb3f3ba0c7a48e993bfeb999d2c2e47a81badee80e2b370c8d695"
|
|||
|
||||
[[package]]
|
||||
name = "deno_cron"
|
||||
version = "0.97.0"
|
||||
version = "0.98.0"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"chrono",
|
||||
|
|
@ -1989,7 +1989,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno_crypto"
|
||||
version = "0.231.0"
|
||||
version = "0.232.0"
|
||||
dependencies = [
|
||||
"aes",
|
||||
"aes-gcm",
|
||||
|
|
@ -2027,7 +2027,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno_crypto_provider"
|
||||
version = "0.11.0"
|
||||
version = "0.12.0"
|
||||
dependencies = [
|
||||
"aws-lc-sys",
|
||||
]
|
||||
|
|
@ -2089,7 +2089,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno_features"
|
||||
version = "0.14.0"
|
||||
version = "0.15.0"
|
||||
dependencies = [
|
||||
"deno_core",
|
||||
"serde",
|
||||
|
|
@ -2098,7 +2098,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno_fetch"
|
||||
version = "0.241.0"
|
||||
version = "0.242.0"
|
||||
dependencies = [
|
||||
"base64 0.22.1",
|
||||
"bytes",
|
||||
|
|
@ -2138,7 +2138,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno_ffi"
|
||||
version = "0.204.0"
|
||||
version = "0.205.0"
|
||||
dependencies = [
|
||||
"cranelift",
|
||||
"cranelift-native",
|
||||
|
|
@ -2162,7 +2162,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno_fs"
|
||||
version = "0.127.0"
|
||||
version = "0.128.0"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"base32",
|
||||
|
|
@ -2222,7 +2222,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno_http"
|
||||
version = "0.215.0"
|
||||
version = "0.216.0"
|
||||
dependencies = [
|
||||
"async-compression",
|
||||
"async-trait",
|
||||
|
|
@ -2266,7 +2266,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno_io"
|
||||
version = "0.127.0"
|
||||
version = "0.128.0"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"deno_core",
|
||||
|
|
@ -2291,7 +2291,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno_kv"
|
||||
version = "0.125.0"
|
||||
version = "0.126.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"async-trait",
|
||||
|
|
@ -2324,7 +2324,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno_lib"
|
||||
version = "0.35.0"
|
||||
version = "0.36.0"
|
||||
dependencies = [
|
||||
"arc-swap",
|
||||
"aws-lc-rs",
|
||||
|
|
@ -2391,7 +2391,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno_maybe_sync"
|
||||
version = "0.4.0"
|
||||
version = "0.5.0"
|
||||
dependencies = [
|
||||
"dashmap",
|
||||
]
|
||||
|
|
@ -2410,7 +2410,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno_napi"
|
||||
version = "0.148.0"
|
||||
version = "0.149.0"
|
||||
dependencies = [
|
||||
"deno_core",
|
||||
"deno_error",
|
||||
|
|
@ -2440,7 +2440,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno_net"
|
||||
version = "0.209.0"
|
||||
version = "0.210.0"
|
||||
dependencies = [
|
||||
"deno_core",
|
||||
"deno_error",
|
||||
|
|
@ -2467,7 +2467,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno_node"
|
||||
version = "0.155.0"
|
||||
version = "0.156.0"
|
||||
dependencies = [
|
||||
"aead-gcm-stream",
|
||||
"aes",
|
||||
|
|
@ -2581,7 +2581,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno_npm_cache"
|
||||
version = "0.36.0"
|
||||
version = "0.37.0"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"base64 0.22.1",
|
||||
|
|
@ -2611,7 +2611,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno_npm_installer"
|
||||
version = "0.12.0"
|
||||
version = "0.13.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"async-once-cell",
|
||||
|
|
@ -2669,7 +2669,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno_os"
|
||||
version = "0.34.0"
|
||||
version = "0.35.0"
|
||||
dependencies = [
|
||||
"deno_core",
|
||||
"deno_error",
|
||||
|
|
@ -2688,7 +2688,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno_package_json"
|
||||
version = "0.19.0"
|
||||
version = "0.20.0"
|
||||
dependencies = [
|
||||
"boxed_error",
|
||||
"deno_error",
|
||||
|
|
@ -2728,7 +2728,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno_permissions"
|
||||
version = "0.76.0"
|
||||
version = "0.77.0"
|
||||
dependencies = [
|
||||
"capacity_builder",
|
||||
"chrono",
|
||||
|
|
@ -2756,7 +2756,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno_process"
|
||||
version = "0.32.0"
|
||||
version = "0.33.0"
|
||||
dependencies = [
|
||||
"deno_core",
|
||||
"deno_error",
|
||||
|
|
@ -2785,7 +2785,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno_resolver"
|
||||
version = "0.48.0"
|
||||
version = "0.49.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"async-once-cell",
|
||||
|
|
@ -2832,7 +2832,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno_runtime"
|
||||
version = "0.225.0"
|
||||
version = "0.226.0"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"color-print",
|
||||
|
|
@ -2919,7 +2919,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno_signals"
|
||||
version = "0.8.0"
|
||||
version = "0.9.0"
|
||||
dependencies = [
|
||||
"deno_error",
|
||||
"libc",
|
||||
|
|
@ -2931,14 +2931,14 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno_snapshots"
|
||||
version = "0.32.0"
|
||||
version = "0.33.0"
|
||||
dependencies = [
|
||||
"deno_runtime",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "deno_subprocess_windows"
|
||||
version = "0.12.0"
|
||||
version = "0.13.0"
|
||||
dependencies = [
|
||||
"fastrand",
|
||||
"futures-channel",
|
||||
|
|
@ -2970,7 +2970,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno_telemetry"
|
||||
version = "0.39.0"
|
||||
version = "0.40.0"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"deno_core",
|
||||
|
|
@ -3019,7 +3019,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno_tls"
|
||||
version = "0.204.0"
|
||||
version = "0.205.0"
|
||||
dependencies = [
|
||||
"deno_core",
|
||||
"deno_error",
|
||||
|
|
@ -3085,7 +3085,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno_url"
|
||||
version = "0.217.0"
|
||||
version = "0.218.0"
|
||||
dependencies = [
|
||||
"deno_bench_util",
|
||||
"deno_console",
|
||||
|
|
@ -3097,7 +3097,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno_web"
|
||||
version = "0.248.0"
|
||||
version = "0.249.0"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"base64-simd",
|
||||
|
|
@ -3120,7 +3120,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno_webgpu"
|
||||
version = "0.184.0"
|
||||
version = "0.185.0"
|
||||
dependencies = [
|
||||
"deno_core",
|
||||
"deno_error",
|
||||
|
|
@ -3137,7 +3137,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno_webidl"
|
||||
version = "0.217.0"
|
||||
version = "0.218.0"
|
||||
dependencies = [
|
||||
"deno_bench_util",
|
||||
"deno_core",
|
||||
|
|
@ -3145,7 +3145,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno_websocket"
|
||||
version = "0.222.0"
|
||||
version = "0.223.0"
|
||||
dependencies = [
|
||||
"bytes",
|
||||
"deno_core",
|
||||
|
|
@ -3169,7 +3169,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno_webstorage"
|
||||
version = "0.212.0"
|
||||
version = "0.213.0"
|
||||
dependencies = [
|
||||
"deno_core",
|
||||
"deno_error",
|
||||
|
|
@ -3256,7 +3256,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "denort"
|
||||
version = "2.5.2"
|
||||
version = "2.5.3"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"bincode",
|
||||
|
|
@ -3293,7 +3293,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "denort_helper"
|
||||
version = "0.15.0"
|
||||
version = "0.16.0"
|
||||
dependencies = [
|
||||
"deno_error",
|
||||
"deno_path_util",
|
||||
|
|
@ -6205,7 +6205,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "napi_sym"
|
||||
version = "0.147.0"
|
||||
version = "0.148.0"
|
||||
dependencies = [
|
||||
"quote",
|
||||
"serde",
|
||||
|
|
@ -6274,7 +6274,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "node_resolver"
|
||||
version = "0.55.0"
|
||||
version = "0.56.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"async-trait",
|
||||
|
|
|
|||
88
Cargo.toml
88
Cargo.toml
|
|
@ -87,52 +87,52 @@ denokv_remote = "0.12.0"
|
|||
denokv_sqlite = { default-features = false, version = "0.12.0" }
|
||||
|
||||
# exts
|
||||
deno_broadcast_channel = { version = "0.211.0", path = "./ext/broadcast_channel" }
|
||||
deno_bundle_runtime = { version = "0.4.0", path = "./ext/bundle" }
|
||||
deno_cache = { version = "0.149.0", path = "./ext/cache" }
|
||||
deno_canvas = { version = "0.86.0", path = "./ext/canvas" }
|
||||
deno_console = { version = "0.217.0", path = "./ext/console" }
|
||||
deno_cron = { version = "0.97.0", path = "./ext/cron" }
|
||||
deno_crypto = { version = "0.231.0", path = "./ext/crypto" }
|
||||
deno_fetch = { version = "0.241.0", path = "./ext/fetch" }
|
||||
deno_ffi = { version = "0.204.0", path = "./ext/ffi" }
|
||||
deno_fs = { version = "0.127.0", path = "./ext/fs" }
|
||||
deno_http = { version = "0.215.0", path = "./ext/http" }
|
||||
deno_io = { version = "0.127.0", path = "./ext/io" }
|
||||
deno_kv = { version = "0.125.0", path = "./ext/kv" }
|
||||
deno_napi = { version = "0.148.0", path = "./ext/napi" }
|
||||
deno_net = { version = "0.209.0", path = "./ext/net" }
|
||||
deno_node = { version = "0.155.0", path = "./ext/node" }
|
||||
deno_os = { version = "0.34.0", path = "./ext/os" }
|
||||
deno_process = { version = "0.32.0", path = "./ext/process" }
|
||||
deno_signals = { version = "0.8.0", path = "./ext/signals" }
|
||||
deno_telemetry = { version = "0.39.0", path = "./ext/telemetry" }
|
||||
deno_tls = { version = "0.204.0", path = "./ext/tls" }
|
||||
deno_url = { version = "0.217.0", path = "./ext/url" }
|
||||
deno_web = { version = "0.248.0", path = "./ext/web" }
|
||||
deno_webgpu = { version = "0.184.0", path = "./ext/webgpu" }
|
||||
deno_webidl = { version = "0.217.0", path = "./ext/webidl" }
|
||||
deno_websocket = { version = "0.222.0", path = "./ext/websocket" }
|
||||
deno_webstorage = { version = "0.212.0", path = "./ext/webstorage" }
|
||||
denort_helper = { version = "0.15.0", path = "./ext/rt_helper" }
|
||||
deno_broadcast_channel = { version = "0.212.0", path = "./ext/broadcast_channel" }
|
||||
deno_bundle_runtime = { version = "0.5.0", path = "./ext/bundle" }
|
||||
deno_cache = { version = "0.150.0", path = "./ext/cache" }
|
||||
deno_canvas = { version = "0.87.0", path = "./ext/canvas" }
|
||||
deno_console = { version = "0.218.0", path = "./ext/console" }
|
||||
deno_cron = { version = "0.98.0", path = "./ext/cron" }
|
||||
deno_crypto = { version = "0.232.0", path = "./ext/crypto" }
|
||||
deno_fetch = { version = "0.242.0", path = "./ext/fetch" }
|
||||
deno_ffi = { version = "0.205.0", path = "./ext/ffi" }
|
||||
deno_fs = { version = "0.128.0", path = "./ext/fs" }
|
||||
deno_http = { version = "0.216.0", path = "./ext/http" }
|
||||
deno_io = { version = "0.128.0", path = "./ext/io" }
|
||||
deno_kv = { version = "0.126.0", path = "./ext/kv" }
|
||||
deno_napi = { version = "0.149.0", path = "./ext/napi" }
|
||||
deno_net = { version = "0.210.0", path = "./ext/net" }
|
||||
deno_node = { version = "0.156.0", path = "./ext/node" }
|
||||
deno_os = { version = "0.35.0", path = "./ext/os" }
|
||||
deno_process = { version = "0.33.0", path = "./ext/process" }
|
||||
deno_signals = { version = "0.9.0", path = "./ext/signals" }
|
||||
deno_telemetry = { version = "0.40.0", path = "./ext/telemetry" }
|
||||
deno_tls = { version = "0.205.0", path = "./ext/tls" }
|
||||
deno_url = { version = "0.218.0", path = "./ext/url" }
|
||||
deno_web = { version = "0.249.0", path = "./ext/web" }
|
||||
deno_webgpu = { version = "0.185.0", path = "./ext/webgpu" }
|
||||
deno_webidl = { version = "0.218.0", path = "./ext/webidl" }
|
||||
deno_websocket = { version = "0.223.0", path = "./ext/websocket" }
|
||||
deno_webstorage = { version = "0.213.0", path = "./ext/webstorage" }
|
||||
denort_helper = { version = "0.16.0", path = "./ext/rt_helper" }
|
||||
|
||||
# workspace libraries
|
||||
deno_bench_util = { version = "0.211.0", path = "./bench_util" }
|
||||
deno_config = { version = "0.67.0", features = ["workspace"], path = "./libs/config" }
|
||||
deno_crypto_provider = { version = "0.11.0", path = "./libs/crypto" }
|
||||
deno_features = { version = "0.14.0", path = "./runtime/features" }
|
||||
deno_lib = { version = "0.35.0", path = "./cli/lib" }
|
||||
deno_maybe_sync = { version = "0.4.0", path = "./libs/maybe_sync" }
|
||||
deno_npm_cache = { version = "0.36.0", path = "./libs/npm_cache" }
|
||||
deno_npm_installer = { version = "0.12.0", path = "./libs/npm_installer" }
|
||||
deno_package_json = { version = "0.19.0", default-features = false, path = "./libs/package_json" }
|
||||
deno_permissions = { version = "0.76.0", path = "./runtime/permissions" }
|
||||
deno_resolver = { version = "0.48.0", path = "./libs/resolver" }
|
||||
deno_runtime = { version = "0.225.0", path = "./runtime" }
|
||||
deno_snapshots = { version = "0.32.0", path = "./cli/snapshot" }
|
||||
deno_subprocess_windows = { path = "./runtime/subprocess_windows", version = "0.12.0" }
|
||||
napi_sym = { version = "0.147.0", path = "./ext/napi/sym" }
|
||||
node_resolver = { version = "0.55.0", path = "./libs/node_resolver" }
|
||||
deno_bench_util = { version = "0.212.0", path = "./bench_util" }
|
||||
deno_config = { version = "0.68.0", features = ["workspace"], path = "./libs/config" }
|
||||
deno_crypto_provider = { version = "0.12.0", path = "./libs/crypto" }
|
||||
deno_features = { version = "0.15.0", path = "./runtime/features" }
|
||||
deno_lib = { version = "0.36.0", path = "./cli/lib" }
|
||||
deno_maybe_sync = { version = "0.5.0", path = "./libs/maybe_sync" }
|
||||
deno_npm_cache = { version = "0.37.0", path = "./libs/npm_cache" }
|
||||
deno_npm_installer = { version = "0.13.0", path = "./libs/npm_installer" }
|
||||
deno_package_json = { version = "0.20.0", default-features = false, path = "./libs/package_json" }
|
||||
deno_permissions = { version = "0.77.0", path = "./runtime/permissions" }
|
||||
deno_resolver = { version = "0.49.0", path = "./libs/resolver" }
|
||||
deno_runtime = { version = "0.226.0", path = "./runtime" }
|
||||
deno_snapshots = { version = "0.33.0", path = "./cli/snapshot" }
|
||||
deno_subprocess_windows = { path = "./runtime/subprocess_windows", version = "0.13.0" }
|
||||
napi_sym = { version = "0.148.0", path = "./ext/napi/sym" }
|
||||
node_resolver = { version = "0.56.0", path = "./libs/node_resolver" }
|
||||
test_util = { package = "test_server", path = "./tests/util/server" }
|
||||
|
||||
deno_tunnel = "0.8.0"
|
||||
|
|
|
|||
25
Releases.md
25
Releases.md
|
|
@ -6,6 +6,31 @@ https://github.com/denoland/deno/releases
|
|||
We also have one-line install commands at:
|
||||
https://github.com/denoland/deno_install
|
||||
|
||||
### 2.5.3 / 2025.10.02
|
||||
|
||||
- feat(unstable): add permission broker (#30826)
|
||||
- feat(unstable): permission broker - support custom error messages (#30902)
|
||||
- feat(unstable): support named pipes on Windows for the permission broker
|
||||
(#30894)
|
||||
- fix(check): do not error for unsupported URL schemes (#30904)
|
||||
- fix(clean): do not panic on failure to get local cache path in clean --except
|
||||
(#30895)
|
||||
- fix(cli/util): terminate watch file with sigint (#30635)
|
||||
- fix(dts): update some GPU types to not cause errors in upcoming DOM type
|
||||
declarations (#30893)
|
||||
- fix(ext/node): allow ATTACH DATABASE with `--allow-all` (#30763)
|
||||
- fix(ext/node): setTimeout promisified to handle abort signal (#30855)
|
||||
- fix(fs): improve file stat checks (#30876)
|
||||
- fix(fs): improve file utime checks (#30872)
|
||||
- fix(npm): do not error when packument version contains both bundleDependencies
|
||||
and bundledDependencies (#30875)
|
||||
- fix(unstable/tunnel): rename `--connected` to `--tunnel` and better handle
|
||||
`DENO_DEPLOY_TOKEN` env variable (#30786)
|
||||
- fix: add support for passing v8 flags on `deno check` (#30868)
|
||||
- fix: do not purge lockfile when linking and the linked package's reqs have not
|
||||
changed (#30877)
|
||||
- fix: show --permission-set help only once (#30844)
|
||||
|
||||
### 2.5.2 / 2025.09.24
|
||||
|
||||
- feat(lsp): describe/it test editor support (#30802)
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "deno_bench_util"
|
||||
version = "0.211.0"
|
||||
version = "0.212.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "deno"
|
||||
version = "2.5.2"
|
||||
version = "2.5.3"
|
||||
authors.workspace = true
|
||||
default-run = "deno"
|
||||
edition.workspace = true
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "deno_lib"
|
||||
version = "0.35.0"
|
||||
version = "0.36.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
2.5.2
|
||||
2.5.3
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "denort"
|
||||
version = "2.5.2"
|
||||
version = "2.5.3"
|
||||
authors.workspace = true
|
||||
default-run = "denort"
|
||||
edition.workspace = true
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "deno_snapshots"
|
||||
version = "0.32.0"
|
||||
version = "0.33.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "deno_broadcast_channel"
|
||||
version = "0.211.0"
|
||||
version = "0.212.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "deno_bundle_runtime"
|
||||
version = "0.4.0"
|
||||
version = "0.5.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
2
ext/cache/Cargo.toml
vendored
2
ext/cache/Cargo.toml
vendored
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "deno_cache"
|
||||
version = "0.149.0"
|
||||
version = "0.150.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "deno_canvas"
|
||||
version = "0.86.0"
|
||||
version = "0.87.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "deno_console"
|
||||
version = "0.217.0"
|
||||
version = "0.218.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "deno_cron"
|
||||
version = "0.97.0"
|
||||
version = "0.98.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "deno_crypto"
|
||||
version = "0.231.0"
|
||||
version = "0.232.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "deno_fetch"
|
||||
version = "0.241.0"
|
||||
version = "0.242.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "deno_ffi"
|
||||
version = "0.204.0"
|
||||
version = "0.205.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "deno_fs"
|
||||
version = "0.127.0"
|
||||
version = "0.128.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "deno_http"
|
||||
version = "0.215.0"
|
||||
version = "0.216.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "deno_io"
|
||||
version = "0.127.0"
|
||||
version = "0.128.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "deno_kv"
|
||||
version = "0.125.0"
|
||||
version = "0.126.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "deno_napi"
|
||||
version = "0.148.0"
|
||||
version = "0.149.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "napi_sym"
|
||||
version = "0.147.0"
|
||||
version = "0.148.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "deno_net"
|
||||
version = "0.209.0"
|
||||
version = "0.210.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "deno_node"
|
||||
version = "0.155.0"
|
||||
version = "0.156.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "deno_os"
|
||||
version = "0.34.0"
|
||||
version = "0.35.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "deno_process"
|
||||
version = "0.32.0"
|
||||
version = "0.33.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "denort_helper"
|
||||
version = "0.15.0"
|
||||
version = "0.16.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "deno_signals"
|
||||
version = "0.8.0"
|
||||
version = "0.9.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "deno_telemetry"
|
||||
version = "0.39.0"
|
||||
version = "0.40.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "deno_tls"
|
||||
version = "0.204.0"
|
||||
version = "0.205.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "deno_url"
|
||||
version = "0.217.0"
|
||||
version = "0.218.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "deno_web"
|
||||
version = "0.248.0"
|
||||
version = "0.249.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "deno_webgpu"
|
||||
version = "0.184.0"
|
||||
version = "0.185.0"
|
||||
authors = ["the Deno authors"]
|
||||
edition.workspace = true
|
||||
license = "MIT"
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "deno_webidl"
|
||||
version = "0.217.0"
|
||||
version = "0.218.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "deno_websocket"
|
||||
version = "0.222.0"
|
||||
version = "0.223.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "deno_webstorage"
|
||||
version = "0.212.0"
|
||||
version = "0.213.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# Copyright 2018-2025 the Deno authors. MIT license.
|
||||
[package]
|
||||
name = "deno_config"
|
||||
version = "0.67.0"
|
||||
version = "0.68.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# Copyright 2018-2025 the Deno authors. MIT license.
|
||||
[package]
|
||||
name = "deno_crypto_provider"
|
||||
version = "0.11.0"
|
||||
version = "0.12.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# Copyright 2018-2025 the Deno authors. MIT license.
|
||||
[package]
|
||||
name = "deno_maybe_sync"
|
||||
version = "0.4.0"
|
||||
version = "0.5.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "node_resolver"
|
||||
version = "0.55.0"
|
||||
version = "0.56.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "deno_npm_cache"
|
||||
version = "0.36.0"
|
||||
version = "0.37.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "deno_npm_installer"
|
||||
version = "0.12.0"
|
||||
version = "0.13.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# Copyright 2018-2025 the Deno authors. MIT license.
|
||||
[package]
|
||||
name = "deno_package_json"
|
||||
version = "0.19.0"
|
||||
version = "0.20.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "deno_resolver"
|
||||
version = "0.48.0"
|
||||
version = "0.49.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "deno_runtime"
|
||||
version = "0.225.0"
|
||||
version = "0.226.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "deno_features"
|
||||
version = "0.14.0"
|
||||
version = "0.15.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "deno_permissions"
|
||||
version = "0.76.0"
|
||||
version = "0.77.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# Copyright 2018-2025 the Deno authors. MIT license.
|
||||
[package]
|
||||
name = "deno_subprocess_windows"
|
||||
version = "0.12.0"
|
||||
version = "0.13.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue