From c0617d11f6391f1b1b3afffe0152c73b5989ab80 Mon Sep 17 00:00:00 2001 From: denobot <33910674+denobot@users.noreply.github.com> Date: Fri, 1 Sep 2023 16:15:50 +0200 Subject: [PATCH] 1.36.4 (#20348) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumped versions for 1.36.4 Co-authored-by: Divy Srivastava Co-authored-by: Bartek IwaƄczuk --- .github/workflows/ci.generate.ts | 2 +- .github/workflows/ci.yml | 8 +++--- Cargo.lock | 47 ++++++++++++++++---------------- Cargo.toml | 44 +++++++++++++++--------------- Releases.md | 24 ++++++++++++++++ bench_util/Cargo.toml | 2 +- cli/Cargo.toml | 2 +- cli/deno_std.rs | 2 +- cli/napi/sym/Cargo.toml | 2 +- ext/broadcast_channel/Cargo.toml | 2 +- ext/cache/Cargo.toml | 2 +- ext/console/Cargo.toml | 2 +- ext/crypto/Cargo.toml | 2 +- ext/fetch/Cargo.toml | 2 +- ext/ffi/Cargo.toml | 2 +- ext/fs/Cargo.toml | 2 +- ext/http/Cargo.toml | 2 +- ext/io/Cargo.toml | 2 +- ext/kv/Cargo.toml | 3 +- ext/kv/remote.rs | 4 +-- ext/napi/Cargo.toml | 2 +- ext/net/Cargo.toml | 2 +- ext/node/Cargo.toml | 2 +- ext/tls/Cargo.toml | 2 +- ext/url/Cargo.toml | 2 +- ext/web/Cargo.toml | 2 +- ext/webidl/Cargo.toml | 2 +- ext/websocket/Cargo.toml | 2 +- ext/webstorage/Cargo.toml | 2 +- runtime/Cargo.toml | 2 +- 30 files changed, 102 insertions(+), 76 deletions(-) diff --git a/.github/workflows/ci.generate.ts b/.github/workflows/ci.generate.ts index 648dc19732..17122d39fd 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 = 51; +const cacheVersion = 52; const Runners = (() => { const ubuntuRunner = "ubuntu-22.04"; diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 813f912f66..2cc7845b59 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -315,8 +315,8 @@ jobs: path: |- ~/.cargo/registry/index ~/.cargo/registry/cache - key: '51-cargo-home-${{ matrix.os }}-${{ hashFiles(''Cargo.lock'') }}' - restore-keys: '51-cargo-home-${{ matrix.os }}' + key: '52-cargo-home-${{ matrix.os }}-${{ hashFiles(''Cargo.lock'') }}' + restore-keys: '52-cargo-home-${{ matrix.os }}' if: '!(github.event_name == ''pull_request'' && matrix.skip_pr)' - name: Restore cache build output (PR) uses: actions/cache/restore@v3 @@ -328,7 +328,7 @@ jobs: !./target/*/*.zip !./target/*/*.tar.gz key: never_saved - restore-keys: '51-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-${{ matrix.job }}-' + restore-keys: '52-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 @@ -616,7 +616,7 @@ jobs: !./target/*/gn_out !./target/*/*.zip !./target/*/*.tar.gz - key: '51-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-${{ matrix.job }}-${{ github.sha }}' + key: '52-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 d1a6d176e7..fa7113dac8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -833,7 +833,7 @@ dependencies = [ [[package]] name = "deno" -version = "1.36.3" +version = "1.36.4" dependencies = [ "async-trait", "base32", @@ -990,7 +990,7 @@ dependencies = [ [[package]] name = "deno_bench_util" -version = "0.111.0" +version = "0.112.0" dependencies = [ "bencher", "deno_core", @@ -1000,7 +1000,7 @@ dependencies = [ [[package]] name = "deno_broadcast_channel" -version = "0.111.0" +version = "0.112.0" dependencies = [ "async-trait", "deno_core", @@ -1010,7 +1010,7 @@ dependencies = [ [[package]] name = "deno_cache" -version = "0.49.0" +version = "0.50.0" dependencies = [ "async-trait", "deno_core", @@ -1059,7 +1059,7 @@ dependencies = [ [[package]] name = "deno_console" -version = "0.117.0" +version = "0.118.0" dependencies = [ "deno_core", ] @@ -1093,7 +1093,7 @@ dependencies = [ [[package]] name = "deno_crypto" -version = "0.131.0" +version = "0.132.0" dependencies = [ "aes", "aes-gcm", @@ -1162,7 +1162,7 @@ dependencies = [ [[package]] name = "deno_fetch" -version = "0.141.0" +version = "0.142.0" dependencies = [ "bytes", "data-url 0.3.0", @@ -1178,7 +1178,7 @@ dependencies = [ [[package]] name = "deno_ffi" -version = "0.104.0" +version = "0.105.0" dependencies = [ "deno_core", "dlopen", @@ -1194,7 +1194,7 @@ dependencies = [ [[package]] name = "deno_fs" -version = "0.27.0" +version = "0.28.0" dependencies = [ "async-trait", "deno_core", @@ -1234,7 +1234,7 @@ dependencies = [ [[package]] name = "deno_http" -version = "0.112.0" +version = "0.113.0" dependencies = [ "async-compression", "async-trait", @@ -1270,7 +1270,7 @@ dependencies = [ [[package]] name = "deno_io" -version = "0.27.0" +version = "0.28.0" dependencies = [ "async-trait", "deno_core", @@ -1283,13 +1283,14 @@ dependencies = [ [[package]] name = "deno_kv" -version = "0.25.0" +version = "0.26.0" dependencies = [ "anyhow", "async-trait", "base64 0.13.1", "chrono", "deno_core", + "deno_unsync", "hex", "log", "num-bigint", @@ -1347,7 +1348,7 @@ dependencies = [ [[package]] name = "deno_napi" -version = "0.47.0" +version = "0.48.0" dependencies = [ "deno_core", "libloading", @@ -1355,7 +1356,7 @@ dependencies = [ [[package]] name = "deno_net" -version = "0.109.0" +version = "0.110.0" dependencies = [ "deno_core", "deno_tls", @@ -1371,7 +1372,7 @@ dependencies = [ [[package]] name = "deno_node" -version = "0.54.0" +version = "0.55.0" dependencies = [ "aes", "brotli", @@ -1467,7 +1468,7 @@ dependencies = [ [[package]] name = "deno_runtime" -version = "0.125.0" +version = "0.126.0" dependencies = [ "console_static_text", "deno_ast", @@ -1550,7 +1551,7 @@ dependencies = [ [[package]] name = "deno_tls" -version = "0.104.0" +version = "0.105.0" dependencies = [ "deno_core", "once_cell", @@ -1573,7 +1574,7 @@ dependencies = [ [[package]] name = "deno_url" -version = "0.117.0" +version = "0.118.0" dependencies = [ "deno_bench_util", "deno_core", @@ -1584,7 +1585,7 @@ dependencies = [ [[package]] name = "deno_web" -version = "0.148.0" +version = "0.149.0" dependencies = [ "async-trait", "base64-simd", @@ -1605,7 +1606,7 @@ dependencies = [ [[package]] name = "deno_webidl" -version = "0.117.0" +version = "0.118.0" dependencies = [ "deno_bench_util", "deno_core", @@ -1613,7 +1614,7 @@ dependencies = [ [[package]] name = "deno_websocket" -version = "0.122.0" +version = "0.123.0" dependencies = [ "bytes", "deno_core", @@ -1630,7 +1631,7 @@ dependencies = [ [[package]] name = "deno_webstorage" -version = "0.112.0" +version = "0.113.0" dependencies = [ "deno_core", "deno_web", @@ -3217,7 +3218,7 @@ dependencies = [ [[package]] name = "napi_sym" -version = "0.47.0" +version = "0.48.0" dependencies = [ "proc-macro2 1.0.66", "quote 1.0.33", diff --git a/Cargo.toml b/Cargo.toml index 2fe72de970..1817622256 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -42,9 +42,9 @@ deno_ast = { version = "0.28.0", features = ["transpiling"] } deno_core = "0.204.0" -deno_runtime = { version = "0.125.0", path = "./runtime" } -napi_sym = { version = "0.47.0", path = "./cli/napi/sym" } -deno_bench_util = { version = "0.111.0", path = "./bench_util" } +deno_runtime = { version = "0.126.0", path = "./runtime" } +napi_sym = { version = "0.48.0", path = "./cli/napi/sym" } +deno_bench_util = { version = "0.112.0", path = "./bench_util" } test_util = { path = "./test_util" } deno_lockfile = "0.15.0" deno_media_type = { version = "0.1.1", features = ["module_specifier"] } @@ -52,25 +52,25 @@ deno_npm = "0.12.0" deno_semver = "0.4.0" # exts -deno_broadcast_channel = { version = "0.111.0", path = "./ext/broadcast_channel" } -deno_cache = { version = "0.49.0", path = "./ext/cache" } -deno_console = { version = "0.117.0", path = "./ext/console" } -deno_crypto = { version = "0.131.0", path = "./ext/crypto" } -deno_fetch = { version = "0.141.0", path = "./ext/fetch" } -deno_ffi = { version = "0.104.0", path = "./ext/ffi" } -deno_fs = { version = "0.27.0", path = "./ext/fs" } -deno_http = { version = "0.112.0", path = "./ext/http" } -deno_io = { version = "0.27.0", path = "./ext/io" } -deno_net = { version = "0.109.0", path = "./ext/net" } -deno_node = { version = "0.54.0", path = "./ext/node" } -deno_kv = { version = "0.25.0", path = "./ext/kv" } -deno_tls = { version = "0.104.0", path = "./ext/tls" } -deno_url = { version = "0.117.0", path = "./ext/url" } -deno_web = { version = "0.148.0", path = "./ext/web" } -deno_webidl = { version = "0.117.0", path = "./ext/webidl" } -deno_websocket = { version = "0.122.0", path = "./ext/websocket" } -deno_webstorage = { version = "0.112.0", path = "./ext/webstorage" } -deno_napi = { version = "0.47.0", path = "./ext/napi" } +deno_broadcast_channel = { version = "0.112.0", path = "./ext/broadcast_channel" } +deno_cache = { version = "0.50.0", path = "./ext/cache" } +deno_console = { version = "0.118.0", path = "./ext/console" } +deno_crypto = { version = "0.132.0", path = "./ext/crypto" } +deno_fetch = { version = "0.142.0", path = "./ext/fetch" } +deno_ffi = { version = "0.105.0", path = "./ext/ffi" } +deno_fs = { version = "0.28.0", path = "./ext/fs" } +deno_http = { version = "0.113.0", path = "./ext/http" } +deno_io = { version = "0.28.0", path = "./ext/io" } +deno_net = { version = "0.110.0", path = "./ext/net" } +deno_node = { version = "0.55.0", path = "./ext/node" } +deno_kv = { version = "0.26.0", path = "./ext/kv" } +deno_tls = { version = "0.105.0", path = "./ext/tls" } +deno_url = { version = "0.118.0", path = "./ext/url" } +deno_web = { version = "0.149.0", path = "./ext/web" } +deno_webidl = { version = "0.118.0", path = "./ext/webidl" } +deno_websocket = { version = "0.123.0", path = "./ext/websocket" } +deno_webstorage = { version = "0.113.0", path = "./ext/webstorage" } +deno_napi = { version = "0.48.0", path = "./ext/napi" } aes = "=0.8.3" anyhow = "1.0.57" diff --git a/Releases.md b/Releases.md index 19655a75b8..f963d98314 100644 --- a/Releases.md +++ b/Releases.md @@ -6,6 +6,30 @@ https://github.com/denoland/deno/releases We also have one-line install commands at: https://github.com/denoland/deno_install +### 1.36.4 / 2023.09.01 + +- feat(ext/kv): connect to remote database (#20178) +- feat(node): use i32 for priority_t on MacOS and {Free,Open}BSD (#20286) +- fix(bench): explicit timers don't force high precision measurements (#20272) +- fix(ext/http): don't panic on stream responses in cancelled requests (#20316) +- fix(ext/kv): don't panic if listening on queues and KV is not closed (#20317) +- fix(ext/node): fix argv[1] in Worker (#20305) +- fix(ext/node): shared global buffer unlock correctness fix (#20314) +- fix(ext/tls): upgrade webpki version (#20285) +- fix(fmt/markdown): ignore trailing words in code block info string for + language detection (#20310) +- fix(kv) increase number of allowed mutations in atomic (#20126) +- fix(lsp): delete test modules with all tests deleted (#20321) +- fix(lsp): implement deno.suggest.completeFunctionCalls (#20214) +- fix(lsp): test explorer panic on step result (#20289) +- fix(lsp/testing): don't queue modules without tests (#20277) +- fix(lsp/testing): use full ancestry to compute static id of step (#20297) +- fix(napi): ignore tsfn recv error (#20324) +- fix(network): adjust Listener type params (#18642) +- fix(node): propagate create cipher errors (#20280) +- fix(node/http): don't leak resources on destroyed request (#20040) +- fix: unexpected lsp function arg comma completion (#20311) + ### 1.36.3 / 2023.08.24 - fix(build): socket2 compile error diff --git a/bench_util/Cargo.toml b/bench_util/Cargo.toml index e467e4e208..4d87d9e90a 100644 --- a/bench_util/Cargo.toml +++ b/bench_util/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_bench_util" -version = "0.111.0" +version = "0.112.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 69635141bf..5fa68f8397 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno" -version = "1.36.3" +version = "1.36.4" authors.workspace = true default-run = "deno" edition.workspace = true diff --git a/cli/deno_std.rs b/cli/deno_std.rs index 9a7202c0e2..7f4f62c158 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.200.0/"; +pub const CURRENT_STD_URL_STR: &str = "https://deno.land/std@0.201.0/"; diff --git a/cli/napi/sym/Cargo.toml b/cli/napi/sym/Cargo.toml index 8472efdb74..649a274c6c 100644 --- a/cli/napi/sym/Cargo.toml +++ b/cli/napi/sym/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "napi_sym" -version = "0.47.0" +version = "0.48.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 f4b9aaaf19..ed87c145cd 100644 --- a/ext/broadcast_channel/Cargo.toml +++ b/ext/broadcast_channel/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_broadcast_channel" -version = "0.111.0" +version = "0.112.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/ext/cache/Cargo.toml b/ext/cache/Cargo.toml index f256c03edb..af72142d56 100644 --- a/ext/cache/Cargo.toml +++ b/ext/cache/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_cache" -version = "0.49.0" +version = "0.50.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/ext/console/Cargo.toml b/ext/console/Cargo.toml index 142ce57372..44d1ac91d4 100644 --- a/ext/console/Cargo.toml +++ b/ext/console/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_console" -version = "0.117.0" +version = "0.118.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/ext/crypto/Cargo.toml b/ext/crypto/Cargo.toml index a80586cf03..83a646145b 100644 --- a/ext/crypto/Cargo.toml +++ b/ext/crypto/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_crypto" -version = "0.131.0" +version = "0.132.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/ext/fetch/Cargo.toml b/ext/fetch/Cargo.toml index de7f8801ac..8064724d6d 100644 --- a/ext/fetch/Cargo.toml +++ b/ext/fetch/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_fetch" -version = "0.141.0" +version = "0.142.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/ext/ffi/Cargo.toml b/ext/ffi/Cargo.toml index 453966fb9c..3c90618089 100644 --- a/ext/ffi/Cargo.toml +++ b/ext/ffi/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_ffi" -version = "0.104.0" +version = "0.105.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/ext/fs/Cargo.toml b/ext/fs/Cargo.toml index 1225e1c707..20fcf7e9bc 100644 --- a/ext/fs/Cargo.toml +++ b/ext/fs/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_fs" -version = "0.27.0" +version = "0.28.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/ext/http/Cargo.toml b/ext/http/Cargo.toml index bab1413678..4b0abc6bc8 100644 --- a/ext/http/Cargo.toml +++ b/ext/http/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_http" -version = "0.112.0" +version = "0.113.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/ext/io/Cargo.toml b/ext/io/Cargo.toml index 9c138d541e..99351096be 100644 --- a/ext/io/Cargo.toml +++ b/ext/io/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_io" -version = "0.27.0" +version = "0.28.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/ext/kv/Cargo.toml b/ext/kv/Cargo.toml index 459555a89e..92b3b6e212 100644 --- a/ext/kv/Cargo.toml +++ b/ext/kv/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_kv" -version = "0.25.0" +version = "0.26.0" authors.workspace = true edition.workspace = true license.workspace = true @@ -19,6 +19,7 @@ async-trait.workspace = true base64.workspace = true chrono.workspace = true deno_core.workspace = true +deno_unsync = "0.1.1" hex.workspace = true log.workspace = true num-bigint.workspace = true diff --git a/ext/kv/remote.rs b/ext/kv/remote.rs index 74792a9988..da13e015fd 100644 --- a/ext/kv/remote.rs +++ b/ext/kv/remote.rs @@ -24,8 +24,8 @@ use chrono::Utc; use deno_core::error::type_error; use deno_core::error::AnyError; use deno_core::futures::TryFutureExt; -use deno_core::task::JoinHandle; use deno_core::OpState; +use deno_unsync::JoinHandle; use prost::Message; use rand::Rng; use serde::Deserialize; @@ -357,7 +357,7 @@ impl MetadataRefresher { pub fn new(url: String, access_token: String) -> Self { let (tx, rx) = watch::channel(MetadataState::Pending); let handle = - deno_core::task::spawn(metadata_refresh_task(url, access_token, tx)); + deno_unsync::spawn(metadata_refresh_task(url, access_token, tx)); Self { handle, metadata_rx: rx, diff --git a/ext/napi/Cargo.toml b/ext/napi/Cargo.toml index 72820060d0..df11e7f118 100644 --- a/ext/napi/Cargo.toml +++ b/ext/napi/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_napi" -version = "0.47.0" +version = "0.48.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/ext/net/Cargo.toml b/ext/net/Cargo.toml index a29e9fff82..fc61af6e1e 100644 --- a/ext/net/Cargo.toml +++ b/ext/net/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_net" -version = "0.109.0" +version = "0.110.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/ext/node/Cargo.toml b/ext/node/Cargo.toml index 2e8b26a7a1..81c79e74d1 100644 --- a/ext/node/Cargo.toml +++ b/ext/node/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_node" -version = "0.54.0" +version = "0.55.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/ext/tls/Cargo.toml b/ext/tls/Cargo.toml index a06af68acf..cbe5434a95 100644 --- a/ext/tls/Cargo.toml +++ b/ext/tls/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_tls" -version = "0.104.0" +version = "0.105.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/ext/url/Cargo.toml b/ext/url/Cargo.toml index 0cd4efec27..8aa5a471db 100644 --- a/ext/url/Cargo.toml +++ b/ext/url/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_url" -version = "0.117.0" +version = "0.118.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/ext/web/Cargo.toml b/ext/web/Cargo.toml index a3759618fb..f0c7008af7 100644 --- a/ext/web/Cargo.toml +++ b/ext/web/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_web" -version = "0.148.0" +version = "0.149.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/ext/webidl/Cargo.toml b/ext/webidl/Cargo.toml index 77282a9a92..ee1c68d8ec 100644 --- a/ext/webidl/Cargo.toml +++ b/ext/webidl/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_webidl" -version = "0.117.0" +version = "0.118.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/ext/websocket/Cargo.toml b/ext/websocket/Cargo.toml index 7b9e44b19d..2af6592ac6 100644 --- a/ext/websocket/Cargo.toml +++ b/ext/websocket/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_websocket" -version = "0.122.0" +version = "0.123.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/ext/webstorage/Cargo.toml b/ext/webstorage/Cargo.toml index 6264690206..3eaac2e910 100644 --- a/ext/webstorage/Cargo.toml +++ b/ext/webstorage/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_webstorage" -version = "0.112.0" +version = "0.113.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index d4401effd3..f624126ac3 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_runtime" -version = "0.125.0" +version = "0.126.0" authors.workspace = true edition.workspace = true license.workspace = true