Skip to content

Commit 9ca1320

Browse files
denobotnathanwhit
andauthored
1.44.2 (#24192)
Bumped versions for 1.44.2 Co-authored-by: nathanwhit <[email protected]>
1 parent a38bd0f commit 9ca1320

File tree

32 files changed

+114
-85
lines changed

32 files changed

+114
-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 = 96;
8+
const cacheVersion = 97;
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: '96-cargo-home-${{ matrix.os }}-${{ matrix.arch }}-${{ hashFiles(''Cargo.lock'') }}'
371-
restore-keys: '96-cargo-home-${{ matrix.os }}-${{ matrix.arch }}'
370+
key: '97-cargo-home-${{ matrix.os }}-${{ matrix.arch }}-${{ hashFiles(''Cargo.lock'') }}'
371+
restore-keys: '97-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: '96-cargo-target-${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.profile }}-${{ matrix.job }}-'
383+
restore-keys: '97-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: '96-cargo-target-${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.profile }}-${{ matrix.job }}-${{ github.sha }}'
672+
key: '97-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.39.1", features = ["transpiling"] }
4747
deno_core = { version = "0.288.0" }
4848

49-
deno_bench_util = { version = "0.149.0", path = "./bench_util" }
49+
deno_bench_util = { version = "0.150.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.15.0", path = "./runtime/permissions" }
53-
deno_runtime = { version = "0.163.0", path = "./runtime" }
52+
deno_permissions = { version = "0.16.0", path = "./runtime/permissions" }
53+
deno_runtime = { version = "0.164.0", path = "./runtime" }
5454
deno_terminal = "0.1.1"
55-
napi_sym = { version = "0.85.0", path = "./cli/napi/sym" }
55+
napi_sym = { version = "0.86.0", path = "./cli/napi/sym" }
5656
test_util = { package = "test_server", path = "./tests/util/server" }
5757

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

6363
# exts
64-
deno_broadcast_channel = { version = "0.149.0", path = "./ext/broadcast_channel" }
65-
deno_cache = { version = "0.87.0", path = "./ext/cache" }
66-
deno_canvas = { version = "0.24.0", path = "./ext/canvas" }
67-
deno_console = { version = "0.155.0", path = "./ext/console" }
68-
deno_cron = { version = "0.35.0", path = "./ext/cron" }
69-
deno_crypto = { version = "0.169.0", path = "./ext/crypto" }
70-
deno_fetch = { version = "0.179.0", path = "./ext/fetch" }
71-
deno_ffi = { version = "0.142.0", path = "./ext/ffi" }
72-
deno_fs = { version = "0.65.0", path = "./ext/fs" }
73-
deno_http = { version = "0.153.0", path = "./ext/http" }
74-
deno_io = { version = "0.65.0", path = "./ext/io" }
75-
deno_kv = { version = "0.63.0", path = "./ext/kv" }
76-
deno_napi = { version = "0.85.0", path = "./ext/napi" }
77-
deno_net = { version = "0.147.0", path = "./ext/net" }
78-
deno_node = { version = "0.92.0", path = "./ext/node" }
79-
deno_tls = { version = "0.142.0", path = "./ext/tls" }
80-
deno_url = { version = "0.155.0", path = "./ext/url" }
81-
deno_web = { version = "0.186.0", path = "./ext/web" }
82-
deno_webgpu = { version = "0.122.0", path = "./ext/webgpu" }
83-
deno_webidl = { version = "0.155.0", path = "./ext/webidl" }
84-
deno_websocket = { version = "0.160.0", path = "./ext/websocket" }
85-
deno_webstorage = { version = "0.150.0", path = "./ext/webstorage" }
64+
deno_broadcast_channel = { version = "0.150.0", path = "./ext/broadcast_channel" }
65+
deno_cache = { version = "0.88.0", path = "./ext/cache" }
66+
deno_canvas = { version = "0.25.0", path = "./ext/canvas" }
67+
deno_console = { version = "0.156.0", path = "./ext/console" }
68+
deno_cron = { version = "0.36.0", path = "./ext/cron" }
69+
deno_crypto = { version = "0.170.0", path = "./ext/crypto" }
70+
deno_fetch = { version = "0.180.0", path = "./ext/fetch" }
71+
deno_ffi = { version = "0.143.0", path = "./ext/ffi" }
72+
deno_fs = { version = "0.66.0", path = "./ext/fs" }
73+
deno_http = { version = "0.154.0", path = "./ext/http" }
74+
deno_io = { version = "0.66.0", path = "./ext/io" }
75+
deno_kv = { version = "0.64.0", path = "./ext/kv" }
76+
deno_napi = { version = "0.86.0", path = "./ext/napi" }
77+
deno_net = { version = "0.148.0", path = "./ext/net" }
78+
deno_node = { version = "0.93.0", path = "./ext/node" }
79+
deno_tls = { version = "0.143.0", path = "./ext/tls" }
80+
deno_url = { version = "0.156.0", path = "./ext/url" }
81+
deno_web = { version = "0.187.0", path = "./ext/web" }
82+
deno_webgpu = { version = "0.123.0", path = "./ext/webgpu" }
83+
deno_webidl = { version = "0.156.0", path = "./ext/webidl" }
84+
deno_websocket = { version = "0.161.0", path = "./ext/websocket" }
85+
deno_webstorage = { version = "0.151.0", path = "./ext/webstorage" }
8686

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

Releases.md

+29
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,35 @@ 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.44.2 / 2024.06.13
10+
11+
- FUTURE: support `deno install <alias>@npm:<package>` (#24156)
12+
- feat(lsp): respect editor indentation options (#24181)
13+
- feat(lsp): workspace jsr resolution (#24121)
14+
- fix(check): attempt to resolve types from pkg before `@types` pkg (#24152)
15+
- fix(cli): Explicitly cache NPM packages during `deno install` (#24190)
16+
- fix(cli): Overwrite existing bin entries in `node_modules` (#24123)
17+
- fix(ext/http): print `[]` around ipv6 addresses (#24150)
18+
- fix(ext/net): make node:http2 work with DENO_FUTURE=1 (#24144)
19+
- fix(ext/node): ServerResponse header array handling (#24149)
20+
- fix(ext/node): add crypto and zlib constants (#24151)
21+
- fix(ext/node): fix vm memory usage and context initialization (#23976)
22+
- fix(ext/node): lossy UTF-8 read node_modules files (#24140)
23+
- fix(ext/node): send data frame with end_stream flag on _final call (#24147)
24+
- fix(ext/node): support stdin child_process IPC & fd stdout/stderr (#24106)
25+
- fix(ext/web): correct string tag for MessageEvent (#24134)
26+
- fix(ext/websocket): correctly order messages when sending blobs (#24133)
27+
- fix(jupyter): Avoid panicking when `DEBUG` env var is set (#24168)
28+
- fix(lsp): don't sort workspace files (#24180)
29+
- fix(lsp): strip .js before probing for valid import fix (#24188)
30+
- fix(npm): resolve dynamic npm imports individually (#24170)
31+
- fix: Rewrite Node-API (#24101)
32+
- fix: clean up some node-api details (#24178)
33+
- fix: do not panic linting files with UTF-8 BOM (#24136)
34+
- fix: don't panic when cache is not available (#24175)
35+
- fix: make writing to the deps cache more reliable (#24135)
36+
- fix: upgrade deno_core (#24128)
37+
938
### 1.44.1 / 2024.06.05
1039

1140
- fix(console): add missing AssertionError to js (#22358)

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.149.0"
5+
version = "0.150.0"
66
authors.workspace = true
77
edition.workspace = true
88
license.workspace = true

0 commit comments

Comments
 (0)