Skip to content

Commit

Permalink
1.44.3 (#24255)
Browse files Browse the repository at this point in the history
Bumped versions for 1.44.3

---------

Co-authored-by: bartlomieju <bartlomieju@users.noreply.github.com>
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
  • Loading branch information
3 people committed Jun 19, 2024
1 parent d1559a2 commit ab2ab0f
Show file tree
Hide file tree
Showing 32 changed files with 111 additions and 85 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.generate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 = 97;
const cacheVersion = 98;

const ubuntuX86Runner = "ubuntu-22.04";
const ubuntuX86XlRunner = "ubuntu-22.04-xl";
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -367,8 +367,8 @@ jobs:
path: |-
~/.cargo/registry/index
~/.cargo/registry/cache
key: '97-cargo-home-${{ matrix.os }}-${{ matrix.arch }}-${{ hashFiles(''Cargo.lock'') }}'
restore-keys: '97-cargo-home-${{ matrix.os }}-${{ matrix.arch }}'
key: '98-cargo-home-${{ matrix.os }}-${{ matrix.arch }}-${{ hashFiles(''Cargo.lock'') }}'
restore-keys: '98-cargo-home-${{ matrix.os }}-${{ matrix.arch }}'
if: '!(matrix.skip)'
- name: Restore cache build output (PR)
uses: actions/cache/restore@v4
Expand All @@ -380,7 +380,7 @@ jobs:
!./target/*/*.zip
!./target/*/*.tar.gz
key: never_saved
restore-keys: '97-cargo-target-${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.profile }}-${{ matrix.job }}-'
restore-keys: '98-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
Expand Down Expand Up @@ -669,7 +669,7 @@ jobs:
!./target/*/gn_out
!./target/*/*.zip
!./target/*/*.tar.gz
key: '97-cargo-target-${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.profile }}-${{ matrix.job }}-${{ github.sha }}'
key: '98-cargo-target-${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.profile }}-${{ matrix.job }}-${{ github.sha }}'
publish-canary:
name: publish canary
runs-on: ubuntu-22.04
Expand Down
54 changes: 27 additions & 27 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

52 changes: 26 additions & 26 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@ repository = "https://github.com/denoland/deno"
deno_ast = { version = "=0.39.2", features = ["transpiling"] }
deno_core = { version = "0.290.0" }

deno_bench_util = { version = "0.150.0", path = "./bench_util" }
deno_bench_util = { version = "0.151.0", path = "./bench_util" }
deno_lockfile = "0.20.0"
deno_media_type = { version = "0.1.4", features = ["module_specifier"] }
deno_permissions = { version = "0.16.0", path = "./runtime/permissions" }
deno_runtime = { version = "0.164.0", path = "./runtime" }
deno_permissions = { version = "0.17.0", path = "./runtime/permissions" }
deno_runtime = { version = "0.165.0", path = "./runtime" }
deno_terminal = "0.1.1"
napi_sym = { version = "0.86.0", path = "./cli/napi/sym" }
napi_sym = { version = "0.87.0", path = "./cli/napi/sym" }
test_util = { package = "test_server", path = "./tests/util/server" }

denokv_proto = "0.8.1"
Expand All @@ -61,28 +61,28 @@ denokv_remote = "0.8.1"
denokv_sqlite = { default-features = false, version = "0.8.1" }

# exts
deno_broadcast_channel = { version = "0.150.0", path = "./ext/broadcast_channel" }
deno_cache = { version = "0.88.0", path = "./ext/cache" }
deno_canvas = { version = "0.25.0", path = "./ext/canvas" }
deno_console = { version = "0.156.0", path = "./ext/console" }
deno_cron = { version = "0.36.0", path = "./ext/cron" }
deno_crypto = { version = "0.170.0", path = "./ext/crypto" }
deno_fetch = { version = "0.180.0", path = "./ext/fetch" }
deno_ffi = { version = "0.143.0", path = "./ext/ffi" }
deno_fs = { version = "0.66.0", path = "./ext/fs" }
deno_http = { version = "0.154.0", path = "./ext/http" }
deno_io = { version = "0.66.0", path = "./ext/io" }
deno_kv = { version = "0.64.0", path = "./ext/kv" }
deno_napi = { version = "0.86.0", path = "./ext/napi" }
deno_net = { version = "0.148.0", path = "./ext/net" }
deno_node = { version = "0.93.0", path = "./ext/node" }
deno_tls = { version = "0.143.0", path = "./ext/tls" }
deno_url = { version = "0.156.0", path = "./ext/url" }
deno_web = { version = "0.187.0", path = "./ext/web" }
deno_webgpu = { version = "0.123.0", path = "./ext/webgpu" }
deno_webidl = { version = "0.156.0", path = "./ext/webidl" }
deno_websocket = { version = "0.161.0", path = "./ext/websocket" }
deno_webstorage = { version = "0.151.0", path = "./ext/webstorage" }
deno_broadcast_channel = { version = "0.151.0", path = "./ext/broadcast_channel" }
deno_cache = { version = "0.89.0", path = "./ext/cache" }
deno_canvas = { version = "0.26.0", path = "./ext/canvas" }
deno_console = { version = "0.157.0", path = "./ext/console" }
deno_cron = { version = "0.37.0", path = "./ext/cron" }
deno_crypto = { version = "0.171.0", path = "./ext/crypto" }
deno_fetch = { version = "0.181.0", path = "./ext/fetch" }
deno_ffi = { version = "0.144.0", path = "./ext/ffi" }
deno_fs = { version = "0.67.0", path = "./ext/fs" }
deno_http = { version = "0.155.0", path = "./ext/http" }
deno_io = { version = "0.67.0", path = "./ext/io" }
deno_kv = { version = "0.65.0", path = "./ext/kv" }
deno_napi = { version = "0.87.0", path = "./ext/napi" }
deno_net = { version = "0.149.0", path = "./ext/net" }
deno_node = { version = "0.94.0", path = "./ext/node" }
deno_tls = { version = "0.144.0", path = "./ext/tls" }
deno_url = { version = "0.157.0", path = "./ext/url" }
deno_web = { version = "0.188.0", path = "./ext/web" }
deno_webgpu = { version = "0.124.0", path = "./ext/webgpu" }
deno_webidl = { version = "0.157.0", path = "./ext/webidl" }
deno_websocket = { version = "0.162.0", path = "./ext/websocket" }
deno_webstorage = { version = "0.152.0", path = "./ext/webstorage" }

aes = "=0.8.3"
anyhow = "1.0.57"
Expand Down
26 changes: 26 additions & 0 deletions Releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,32 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at:
https://github.com/denoland/deno_install

### 1.44.3 / 2024.06.18

- feat(lsp): multi deno.json resolver scopes (#24206)
- fix(cli): missing flag for `--unstable-process` (#24199)
- fix(docs): correctly resolve href for built-ins (#24228)
- fix(ext/console): bump default max str lengthto 10_00 (#24245)
- fix(ext/http): actually await `goAhead` promise (#24226)
- fix(ext/node): add missing BlockList & SocketAddress classes (#24229)
- fix(ext/node): `server.close()` does graceful shutdown (#24184)
- fix(ext/node): better support for `node:diagnostics_channel` module (#24088)
- fix(ext/node): make process.versions own property (#24240)
- fix(ext/node): use `Deno.FsFile.statSync()` (#24234)
- fix(ext/permissions): add correct feature flags to winapi (#24218)
- fix(ext/web): fix `AbortSignal.timeout()` leak (#23842)
- fix(ext/webgpu): fix surface creation panic when adapter not initialized
(#24201)
- fix(inspector): crash on "Debugger.setBlackboxPatterns" (#24204)
- fix(lsp): use import map from workspace root (#24246)
- fix(napi): Read reference ownership before calling finalizer to avoid crash
(#24203)
- fix(no-slow-types): handle named type in mapped type (#24205)
- fix(npm): use more relaxed package.json version constraint parsing (#24202)
- fix(repl): prevent panic when deleting globalThis.closed property (#24014)
- perf(lsp): store settings in Arc (#24191)
- perf(node): ensure cjs wrapper module has deterministic output (#24248)

### 1.44.2 / 2024.06.13

- FUTURE: support `deno install <alias>@npm:<package>` (#24156)
Expand Down
2 changes: 1 addition & 1 deletion bench_util/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno_bench_util"
version = "0.150.0"
version = "0.151.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
Loading

0 comments on commit ab2ab0f

Please sign in to comment.