Skip to content

Commit

Permalink
1.34.3 (#19525)
Browse files Browse the repository at this point in the history
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 15, 2023
1 parent df233a4 commit ef24d1a
Show file tree
Hide file tree
Showing 32 changed files with 114 additions and 83 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.generate.ts
Expand Up @@ -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 = 39;
const cacheVersion = 40;

const Runners = (() => {
const ubuntuRunner = "ubuntu-22.04";
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Expand Up @@ -298,8 +298,8 @@ jobs:
path: |-
~/.cargo/registry/index
~/.cargo/registry/cache
key: '39-cargo-home-${{ matrix.os }}-${{ hashFiles(''Cargo.lock'') }}'
restore-keys: '39-cargo-home-${{ matrix.os }}'
key: '40-cargo-home-${{ matrix.os }}-${{ hashFiles(''Cargo.lock'') }}'
restore-keys: '40-cargo-home-${{ matrix.os }}'
if: '!(github.event_name == ''pull_request'' && matrix.skip_pr)'
- name: Restore cache build output (PR)
uses: actions/cache/restore@v3
Expand All @@ -311,7 +311,7 @@ jobs:
!./target/*/*.zip
!./target/*/*.tar.gz
key: never_saved
restore-keys: '39-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-${{ matrix.job }}-'
restore-keys: '40-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
Expand Down Expand Up @@ -592,7 +592,7 @@ jobs:
!./target/*/gn_out
!./target/*/*.zip
!./target/*/*.tar.gz
key: '39-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-${{ matrix.job }}-${{ github.sha }}'
key: '40-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-${{ matrix.job }}-${{ github.sha }}'
publish-canary:
name: publish canary
runs-on: ubuntu-22.04
Expand Down
52 changes: 26 additions & 26 deletions Cargo.lock

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

50 changes: 25 additions & 25 deletions Cargo.toml
Expand Up @@ -44,38 +44,38 @@ repository = "https://github.com/denoland/deno"
v8 = { version = "0.73.0", default-features = false }
deno_ast = { version = "0.27.0", features = ["transpiling"] }

deno_core = { version = "0.190.0", path = "./core" }
deno_ops = { version = "0.68.0", path = "./ops" }
serde_v8 = { version = "0.101.0", path = "./serde_v8" }
deno_runtime = { version = "0.116.0", path = "./runtime" }
napi_sym = { version = "0.38.0", path = "./cli/napi/sym" }
deno_bench_util = { version = "0.102.0", path = "./bench_util" }
deno_core = { version = "0.191.0", path = "./core" }
deno_ops = { version = "0.69.0", path = "./ops" }
serde_v8 = { version = "0.102.0", path = "./serde_v8" }
deno_runtime = { version = "0.117.0", path = "./runtime" }
napi_sym = { version = "0.39.0", path = "./cli/napi/sym" }
deno_bench_util = { version = "0.103.0", path = "./bench_util" }
test_util = { path = "./test_util" }
deno_lockfile = "0.14.1"
deno_media_type = { version = "0.1.0", features = ["module_specifier"] }
deno_npm = "0.8.1"
deno_semver = "0.2.2"

# exts
deno_broadcast_channel = { version = "0.102.0", path = "./ext/broadcast_channel" }
deno_cache = { version = "0.40.0", path = "./ext/cache" }
deno_console = { version = "0.108.0", path = "./ext/console" }
deno_crypto = { version = "0.122.0", path = "./ext/crypto" }
deno_fetch = { version = "0.132.0", path = "./ext/fetch" }
deno_ffi = { version = "0.95.0", path = "./ext/ffi" }
deno_fs = { version = "0.18.0", path = "./ext/fs" }
deno_http = { version = "0.103.0", path = "./ext/http" }
deno_io = { version = "0.18.0", path = "./ext/io" }
deno_net = { version = "0.100.0", path = "./ext/net" }
deno_node = { version = "0.45.0", path = "./ext/node" }
deno_kv = { version = "0.16.0", path = "./ext/kv" }
deno_tls = { version = "0.95.0", path = "./ext/tls" }
deno_url = { version = "0.108.0", path = "./ext/url" }
deno_web = { version = "0.139.0", path = "./ext/web" }
deno_webidl = { version = "0.108.0", path = "./ext/webidl" }
deno_websocket = { version = "0.113.0", path = "./ext/websocket" }
deno_webstorage = { version = "0.103.0", path = "./ext/webstorage" }
deno_napi = { version = "0.38.0", path = "./ext/napi" }
deno_broadcast_channel = { version = "0.103.0", path = "./ext/broadcast_channel" }
deno_cache = { version = "0.41.0", path = "./ext/cache" }
deno_console = { version = "0.109.0", path = "./ext/console" }
deno_crypto = { version = "0.123.0", path = "./ext/crypto" }
deno_fetch = { version = "0.133.0", path = "./ext/fetch" }
deno_ffi = { version = "0.96.0", path = "./ext/ffi" }
deno_fs = { version = "0.19.0", path = "./ext/fs" }
deno_http = { version = "0.104.0", path = "./ext/http" }
deno_io = { version = "0.19.0", path = "./ext/io" }
deno_net = { version = "0.101.0", path = "./ext/net" }
deno_node = { version = "0.46.0", path = "./ext/node" }
deno_kv = { version = "0.17.0", path = "./ext/kv" }
deno_tls = { version = "0.96.0", path = "./ext/tls" }
deno_url = { version = "0.109.0", path = "./ext/url" }
deno_web = { version = "0.140.0", path = "./ext/web" }
deno_webidl = { version = "0.109.0", path = "./ext/webidl" }
deno_websocket = { version = "0.114.0", path = "./ext/websocket" }
deno_webstorage = { version = "0.104.0", path = "./ext/webstorage" }
deno_napi = { version = "0.39.0", path = "./ext/napi" }

aes = "=0.8.2"
anyhow = "1.0.57"
Expand Down
31 changes: 31 additions & 0 deletions Releases.md
Expand Up @@ -6,6 +6,37 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at:
https://github.com/denoland/deno_install

### 1.34.3 / 2023.06.15

- feat(UNSTABLE) kv queue implementation (#19459)
- fix(cli): avoid crash on import of invalid module names (#19523)
- fix(compile): some npm dependencies were missing in compiled output (#19503)
- fix(config): do not canonicalize config file path before loading (#19436)
- fix(ext/http): Include hostname in onListen argument (#19497)
- fix(ext/http): replace await Deno.serve with await Deno.serve().finished
(#19485)
- fix(ext/node): HTTPS server (#19362)
- fix(ext/node): handle 'upgrade' responses (#19412)
- fix(ext/node): make Buffer.slice be the same as subarray (#19481)
- fix(ext/websockets): ensure we fully send frames before close (#19484)
- fix(fmt): do not panic formatting json with multiple values (#19442)
- fix(lsp): don't pre-load documents matched in the config file's "exclude"
(#19431)
- fix(lsp): update import map config when deno.json changes (#19476)
- fix(ext/node): Worker constructor doesn't check type: module of package.json
(#19480)
- fix(npm): warn when tarball contains hardlink or symlink (#19474)
- fix: reload config files on watcher restarts (#19487)
- perf(ext/http): from_maybe_shared_unchecked for header values (#19478)
- perf(http): cache verified headers (#19465)
- perf(node): cache realpath_sync calls in read permission check (#19379)
- perf(serve): hoist promise error callback (#19456)
- perf(serve): hoist repeated condition (#19449)
- perf(web): optimize timer resolution (#19493)
- perf: don't run microtask checkpoint if macrotask callback did no work
(#19492)
- perf: optimize ByteString checks, hoist server rid getter (#19452)

### 1.34.2 / 2023.06.08

- fix: do not show cache initialization errors if stderr is piped (#18920)
Expand Down
2 changes: 1 addition & 1 deletion bench_util/Cargo.toml
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno_bench_util"
version = "0.102.0"
version = "0.103.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno"
version = "1.34.2"
version = "1.34.3"
authors.workspace = true
default-run = "deno"
edition.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion cli/deno_std.rs
Expand Up @@ -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.191.0/";
pub const CURRENT_STD_URL_STR: &str = "https://deno.land/std@0.192.0/";

0 comments on commit ef24d1a

Please sign in to comment.