Skip to content

Commit

Permalink
chore: forward v1.28.3 release commit to main (denoland#16884)
Browse files Browse the repository at this point in the history
Co-authored-by: kt3k <[email protected]>
  • Loading branch information
denobot and kt3k committed Dec 1, 2022
1 parent b1e29d1 commit 98d062e
Show file tree
Hide file tree
Showing 29 changed files with 109 additions and 75 deletions.
50 changes: 25 additions & 25 deletions Cargo.lock

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

48 changes: 24 additions & 24 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,33 +43,33 @@ repository = "https://github.com/denoland/deno"
v8 = { version = "0.58.0", default-features = false }
deno_ast = { version = "0.21.0", features = ["transpiling"] }

deno_core = { version = "0.161.0", path = "./core" }
deno_ops = { version = "0.39.0", path = "./ops" }
serde_v8 = { version = "0.72.0", path = "./serde_v8" }
deno_runtime = { version = "0.87.0", path = "./runtime" }
napi_sym = { version = "0.9.0", path = "./cli/napi/sym" }
deno_bench_util = { version = "0.73.0", path = "./bench_util" }
deno_core = { version = "0.162.0", path = "./core" }
deno_ops = { version = "0.40.0", path = "./ops" }
serde_v8 = { version = "0.73.0", path = "./serde_v8" }
deno_runtime = { version = "0.88.0", path = "./runtime" }
napi_sym = { version = "0.10.0", path = "./cli/napi/sym" }
deno_bench_util = { version = "0.74.0", path = "./bench_util" }
test_util = { path = "./test_util" }

# exts
deno_broadcast_channel = { version = "0.73.0", path = "./ext/broadcast_channel" }
deno_cache = { version = "0.11.0", path = "./ext/cache" }
deno_console = { version = "0.79.0", path = "./ext/console" }
deno_crypto = { version = "0.93.0", path = "./ext/crypto" }
deno_fetch = { version = "0.102.0", path = "./ext/fetch" }
deno_ffi = { version = "0.66.0", path = "./ext/ffi" }
deno_flash = { version = "0.15.0", path = "./ext/flash" }
deno_http = { version = "0.73.0", path = "./ext/http" }
deno_net = { version = "0.71.0", path = "./ext/net" }
deno_node = { version = "0.16.0", path = "./ext/node" }
deno_tls = { version = "0.66.0", path = "./ext/tls" }
deno_url = { version = "0.79.0", path = "./ext/url" }
deno_web = { version = "0.110.0", path = "./ext/web" }
deno_webgpu = { version = "0.80.0", path = "./ext/webgpu" }
deno_webidl = { version = "0.79.0", path = "./ext/webidl" }
deno_websocket = { version = "0.84.0", path = "./ext/websocket" }
deno_webstorage = { version = "0.74.0", path = "./ext/webstorage" }
deno_napi = { version = "0.9.0", path = "./ext/napi" }
deno_broadcast_channel = { version = "0.74.0", path = "./ext/broadcast_channel" }
deno_cache = { version = "0.12.0", path = "./ext/cache" }
deno_console = { version = "0.80.0", path = "./ext/console" }
deno_crypto = { version = "0.94.0", path = "./ext/crypto" }
deno_fetch = { version = "0.103.0", path = "./ext/fetch" }
deno_ffi = { version = "0.67.0", path = "./ext/ffi" }
deno_flash = { version = "0.16.0", path = "./ext/flash" }
deno_http = { version = "0.74.0", path = "./ext/http" }
deno_net = { version = "0.72.0", path = "./ext/net" }
deno_node = { version = "0.17.0", path = "./ext/node" }
deno_tls = { version = "0.67.0", path = "./ext/tls" }
deno_url = { version = "0.80.0", path = "./ext/url" }
deno_web = { version = "0.111.0", path = "./ext/web" }
deno_webgpu = { version = "0.81.0", path = "./ext/webgpu" }
deno_webidl = { version = "0.80.0", path = "./ext/webidl" }
deno_websocket = { version = "0.85.0", path = "./ext/websocket" }
deno_webstorage = { version = "0.75.0", path = "./ext/webstorage" }
deno_napi = { version = "0.10.0", path = "./ext/napi" }

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

### 1.28.3 / 2022.12.01

- Revert "fix(ext/flash): graceful server startup/shutdown with unsettl…
(#16839)
- feat(core): send "executionContextDestroyed" notification on program end
(#16831)
- feat(core): show unresolved promise origin (#16650)
- feat(core): support initializing extensions with and without JS (#16789)
- feat(ops): fast calls for Wasm (#16776)
- feat(ops): support raw pointer arguments (#16826)
- feat(unstable): rework Deno.Command (#16812)
- fix(cli/js): improve resource sanitizer messages (#16798)
- fix(coverage): Error if the emit cache is invalid (#16850)
- fix(ext/ffi): Null buffer pointer value is inconsistent (#16625)
- fix(ext/node): allow absolute path in createRequire (#16853)
- fix(ext/web): fix typings for readable stream readers (#16191)
- fix(fmt/markdown): fix emoji width calculation in tables (#16870)
- fix(inspector): send "isDefault" in aux data (#16836)
- fix(lsp): analyze fs dependencies of dependencies to find npm package
requirements (#16866)
- fix(npm): allow to inspect npm modules with --inspect-brk (#16841)
- fix(npm): better error message when attempting to use typescript in npm
packages (#16813)
- fix(npm): don't resolve JS files when resolving types (#16854)
- fix(npm): ensure npm package downloaded once per run when using `--reload`
(#16842)
- fix(npm): improve package.json exports support for types (#16880)
- fix(ops): circular dependency in deno_ops test (#16809)
- fix(repl): more reliable history handling (#16797)
- fix(repl): respect --quiet flag (#16875)
- fix(runtime): feature-flag snapshot from snapshot (#16843)
- fix(task): output encoding issues on windows (#16794)
- perf(ops): Reenable fast unit result optimization (#16827)

### 1.28.2 / 2022.11.24

- feat(cli): add warning for incorrectly ordered flags (#16734)
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.73.0"
version = "0.74.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno"
version = "1.28.2"
version = "1.28.3"
authors.workspace = true
default-run = "deno"
edition.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion cli/deno_std.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use once_cell::sync::Lazy;

// WARNING: Ensure this is the only deno_std version reference as this
// is automatically updated by the version bump workflow.
static CURRENT_STD_URL_STR: &str = "https://deno.land/std@0.166.0/";
static CURRENT_STD_URL_STR: &str = "https://deno.land/std@0.167.0/";

pub static CURRENT_STD_URL: Lazy<Url> =
Lazy::new(|| Url::parse(CURRENT_STD_URL_STR).unwrap());
2 changes: 1 addition & 1 deletion cli/napi/sym/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "napi_sym"
version = "0.9.0"
version = "0.10.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno_core"
version = "0.161.0"
version = "0.162.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion ext/broadcast_channel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno_broadcast_channel"
version = "0.73.0"
version = "0.74.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion ext/cache/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno_cache"
version = "0.11.0"
version = "0.12.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion ext/console/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno_console"
version = "0.79.0"
version = "0.80.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
Loading

0 comments on commit 98d062e

Please sign in to comment.