Skip to content

Commit c841d16

Browse files
denobotbartlomieju
andauthored
1.45.1 (#24535)
Bumped versions for 1.45.1 Co-authored-by: bartlomieju <[email protected]>
1 parent 3d0e1b6 commit c841d16

File tree

32 files changed

+92
-85
lines changed

32 files changed

+92
-85
lines changed

.github/workflows/ci.generate.ts

+1-1
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 = 5;
8+
const cacheVersion = 6;
99

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

.github/workflows/ci.yml

+4-4
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: '5-cargo-home-${{ matrix.os }}-${{ matrix.arch }}-${{ hashFiles(''Cargo.lock'') }}'
371-
restore-keys: '5-cargo-home-${{ matrix.os }}-${{ matrix.arch }}'
370+
key: '6-cargo-home-${{ matrix.os }}-${{ matrix.arch }}-${{ hashFiles(''Cargo.lock'') }}'
371+
restore-keys: '6-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: '5-cargo-target-${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.profile }}-${{ matrix.job }}-'
383+
restore-keys: '6-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: '5-cargo-target-${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.profile }}-${{ matrix.job }}-${{ github.sha }}'
672+
key: '6-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

+27-27
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+26-26
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.153.0", path = "./bench_util" }
49+
deno_bench_util = { version = "0.154.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.19.0", path = "./runtime/permissions" }
53-
deno_runtime = { version = "0.167.0", path = "./runtime" }
52+
deno_permissions = { version = "0.20.0", path = "./runtime/permissions" }
53+
deno_runtime = { version = "0.168.0", path = "./runtime" }
5454
deno_terminal = "0.1.1"
55-
napi_sym = { version = "0.89.0", path = "./cli/napi/sym" }
55+
napi_sym = { version = "0.90.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.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" }
64+
deno_broadcast_channel = { version = "0.154.0", path = "./ext/broadcast_channel" }
65+
deno_cache = { version = "0.92.0", path = "./ext/cache" }
66+
deno_canvas = { version = "0.29.0", path = "./ext/canvas" }
67+
deno_console = { version = "0.160.0", path = "./ext/console" }
68+
deno_cron = { version = "0.40.0", path = "./ext/cron" }
69+
deno_crypto = { version = "0.174.0", path = "./ext/crypto" }
70+
deno_fetch = { version = "0.184.0", path = "./ext/fetch" }
71+
deno_ffi = { version = "0.147.0", path = "./ext/ffi" }
72+
deno_fs = { version = "0.70.0", path = "./ext/fs" }
73+
deno_http = { version = "0.158.0", path = "./ext/http" }
74+
deno_io = { version = "0.70.0", path = "./ext/io" }
75+
deno_kv = { version = "0.68.0", path = "./ext/kv" }
76+
deno_napi = { version = "0.90.0", path = "./ext/napi" }
77+
deno_net = { version = "0.152.0", path = "./ext/net" }
78+
deno_node = { version = "0.97.0", path = "./ext/node" }
79+
deno_tls = { version = "0.147.0", path = "./ext/tls" }
80+
deno_url = { version = "0.160.0", path = "./ext/url" }
81+
deno_web = { version = "0.191.0", path = "./ext/web" }
82+
deno_webgpu = { version = "0.127.0", path = "./ext/webgpu" }
83+
deno_webidl = { version = "0.160.0", path = "./ext/webidl" }
84+
deno_websocket = { version = "0.165.0", path = "./ext/websocket" }
85+
deno_webstorage = { version = "0.155.0", path = "./ext/webstorage" }
8686

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

Releases.md

+7
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ https://github.com/denoland/deno/releases
66
We also have one-line install commands at:
77
https://github.com/denoland/deno_install
88

9+
### 1.45.1 / 2024.07.11
10+
11+
- fix(node): Ignore broken default install scripts (#24534)
12+
- fix(npm): only warn about lifecycle scripts not being run when setting up
13+
directory (#24530)
14+
- fix(workspace): allow using --import-map flag with workspace (#24527)
15+
916
### 1.45.0 / 2024.07.10
1017

1118
- BREAKING(unstable/ffi): remove callback reentrant flag (#24367)

bench_util/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "deno_bench_util"
5-
version = "0.153.0"
5+
version = "0.154.0"
66
authors.workspace = true
77
edition.workspace = true
88
license.workspace = true

cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "deno"
5-
version = "1.45.0"
5+
version = "1.45.1"
66
authors.workspace = true
77
default-run = "deno"
88
edition.workspace = true

cli/napi/sym/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "napi_sym"
5-
version = "0.89.0"
5+
version = "0.90.0"
66
authors.workspace = true
77
edition.workspace = true
88
license.workspace = true

ext/broadcast_channel/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "deno_broadcast_channel"
5-
version = "0.153.0"
5+
version = "0.154.0"
66
authors.workspace = true
77
edition.workspace = true
88
license.workspace = true

0 commit comments

Comments
 (0)