Skip to content

Commit 04ff5c7

Browse files
denobotbartlomieju
andauthored
1.45.0 (#24512)
Bumped versions for 1.45.0 --------- Co-authored-by: bartlomieju <[email protected]> Co-authored-by: Bartek Iwańczuk <[email protected]>
1 parent 28f9485 commit 04ff5c7

File tree

32 files changed

+168
-85
lines changed

32 files changed

+168
-85
lines changed

.github/workflows/ci.generate.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { stringify } from "jsr:@std/yaml@^0.221/stringify";
55
// Bump this number when you want to purge the cache.
66
// Note: the tools/release/01_bump_crate_versions.ts script will update this version
77
// automatically via regex, so ensure that this line maintains this format.
8-
const cacheVersion = 4;
8+
const cacheVersion = 5;
99

1010
const ubuntuX86Runner = "ubuntu-22.04";
1111
const ubuntuX86XlRunner = "ubuntu-22.04-xl";

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -367,8 +367,8 @@ jobs:
367367
path: |-
368368
~/.cargo/registry/index
369369
~/.cargo/registry/cache
370-
key: '4-cargo-home-${{ matrix.os }}-${{ matrix.arch }}-${{ hashFiles(''Cargo.lock'') }}'
371-
restore-keys: '4-cargo-home-${{ matrix.os }}-${{ matrix.arch }}'
370+
key: '5-cargo-home-${{ matrix.os }}-${{ matrix.arch }}-${{ hashFiles(''Cargo.lock'') }}'
371+
restore-keys: '5-cargo-home-${{ matrix.os }}-${{ matrix.arch }}'
372372
if: '!(matrix.skip)'
373373
- name: Restore cache build output (PR)
374374
uses: actions/cache/restore@v4
@@ -380,7 +380,7 @@ jobs:
380380
!./target/*/*.zip
381381
!./target/*/*.tar.gz
382382
key: never_saved
383-
restore-keys: '4-cargo-target-${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.profile }}-${{ matrix.job }}-'
383+
restore-keys: '5-cargo-target-${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.profile }}-${{ matrix.job }}-'
384384
- name: Apply and update mtime cache
385385
if: '!(matrix.skip) && (!startsWith(github.ref, ''refs/tags/''))'
386386
uses: ./.github/mtime_cache
@@ -669,7 +669,7 @@ jobs:
669669
!./target/*/gn_out
670670
!./target/*/*.zip
671671
!./target/*/*.tar.gz
672-
key: '4-cargo-target-${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.profile }}-${{ matrix.job }}-${{ github.sha }}'
672+
key: '5-cargo-target-${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.profile }}-${{ matrix.job }}-${{ github.sha }}'
673673
publish-canary:
674674
name: publish canary
675675
runs-on: ubuntu-22.04

Cargo.lock

Lines changed: 27 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ repository = "https://github.com/denoland/deno"
4646
deno_ast = { version = "=0.40.0", features = ["transpiling"] }
4747
deno_core = { version = "0.293.0" }
4848

49-
deno_bench_util = { version = "0.152.0", path = "./bench_util" }
49+
deno_bench_util = { version = "0.153.0", path = "./bench_util" }
5050
deno_lockfile = "0.20.0"
5151
deno_media_type = { version = "0.1.4", features = ["module_specifier"] }
52-
deno_permissions = { version = "0.18.0", path = "./runtime/permissions" }
53-
deno_runtime = { version = "0.166.0", path = "./runtime" }
52+
deno_permissions = { version = "0.19.0", path = "./runtime/permissions" }
53+
deno_runtime = { version = "0.167.0", path = "./runtime" }
5454
deno_terminal = "0.1.1"
55-
napi_sym = { version = "0.88.0", path = "./cli/napi/sym" }
55+
napi_sym = { version = "0.89.0", path = "./cli/napi/sym" }
5656
test_util = { package = "test_server", path = "./tests/util/server" }
5757

5858
denokv_proto = "0.8.1"
@@ -61,28 +61,28 @@ denokv_remote = "0.8.1"
6161
denokv_sqlite = { default-features = false, version = "0.8.1" }
6262

6363
# exts
64-
deno_broadcast_channel = { version = "0.152.0", path = "./ext/broadcast_channel" }
65-
deno_cache = { version = "0.90.0", path = "./ext/cache" }
66-
deno_canvas = { version = "0.27.0", path = "./ext/canvas" }
67-
deno_console = { version = "0.158.0", path = "./ext/console" }
68-
deno_cron = { version = "0.38.0", path = "./ext/cron" }
69-
deno_crypto = { version = "0.172.0", path = "./ext/crypto" }
70-
deno_fetch = { version = "0.182.0", path = "./ext/fetch" }
71-
deno_ffi = { version = "0.145.0", path = "./ext/ffi" }
72-
deno_fs = { version = "0.68.0", path = "./ext/fs" }
73-
deno_http = { version = "0.156.0", path = "./ext/http" }
74-
deno_io = { version = "0.68.0", path = "./ext/io" }
75-
deno_kv = { version = "0.66.0", path = "./ext/kv" }
76-
deno_napi = { version = "0.88.0", path = "./ext/napi" }
77-
deno_net = { version = "0.150.0", path = "./ext/net" }
78-
deno_node = { version = "0.95.0", path = "./ext/node" }
79-
deno_tls = { version = "0.145.0", path = "./ext/tls" }
80-
deno_url = { version = "0.158.0", path = "./ext/url" }
81-
deno_web = { version = "0.189.0", path = "./ext/web" }
82-
deno_webgpu = { version = "0.125.0", path = "./ext/webgpu" }
83-
deno_webidl = { version = "0.158.0", path = "./ext/webidl" }
84-
deno_websocket = { version = "0.163.0", path = "./ext/websocket" }
85-
deno_webstorage = { version = "0.153.0", path = "./ext/webstorage" }
64+
deno_broadcast_channel = { version = "0.153.0", path = "./ext/broadcast_channel" }
65+
deno_cache = { version = "0.91.0", path = "./ext/cache" }
66+
deno_canvas = { version = "0.28.0", path = "./ext/canvas" }
67+
deno_console = { version = "0.159.0", path = "./ext/console" }
68+
deno_cron = { version = "0.39.0", path = "./ext/cron" }
69+
deno_crypto = { version = "0.173.0", path = "./ext/crypto" }
70+
deno_fetch = { version = "0.183.0", path = "./ext/fetch" }
71+
deno_ffi = { version = "0.146.0", path = "./ext/ffi" }
72+
deno_fs = { version = "0.69.0", path = "./ext/fs" }
73+
deno_http = { version = "0.157.0", path = "./ext/http" }
74+
deno_io = { version = "0.69.0", path = "./ext/io" }
75+
deno_kv = { version = "0.67.0", path = "./ext/kv" }
76+
deno_napi = { version = "0.89.0", path = "./ext/napi" }
77+
deno_net = { version = "0.151.0", path = "./ext/net" }
78+
deno_node = { version = "0.96.0", path = "./ext/node" }
79+
deno_tls = { version = "0.146.0", path = "./ext/tls" }
80+
deno_url = { version = "0.159.0", path = "./ext/url" }
81+
deno_web = { version = "0.190.0", path = "./ext/web" }
82+
deno_webgpu = { version = "0.126.0", path = "./ext/webgpu" }
83+
deno_webidl = { version = "0.159.0", path = "./ext/webidl" }
84+
deno_websocket = { version = "0.164.0", path = "./ext/websocket" }
85+
deno_webstorage = { version = "0.154.0", path = "./ext/webstorage" }
8686

8787
aes = "=0.8.3"
8888
anyhow = "1.0.57"

0 commit comments

Comments
 (0)