Skip to content

Commit

Permalink
chore: forward v1.28.2 release commit to main (denoland#16796)
Browse files Browse the repository at this point in the history
Co-authored-by: bartlomieju <[email protected]>
Co-authored-by: Bartek Iwańczuk <[email protected]>
  • Loading branch information
3 people committed Nov 24, 2022
1 parent 823a5f6 commit 72dd7ad
Show file tree
Hide file tree
Showing 29 changed files with 105 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.55.0", default-features = false }
deno_ast = { version = "0.21.0", features = ["transpiling"] }

deno_core = { version = "0.160.0", path = "./core" }
deno_ops = { version = "0.38.0", path = "./ops" }
serde_v8 = { version = "0.71.0", path = "./serde_v8" }
deno_runtime = { version = "0.86.0", path = "./runtime" }
napi_sym = { version = "0.8.0", path = "./cli/napi_sym" }
deno_bench_util = { version = "0.72.0", path = "./bench_util" }
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" }
test_util = { path = "./test_util" }

# exts
deno_broadcast_channel = { version = "0.72.0", path = "./ext/broadcast_channel" }
deno_cache = { version = "0.10.0", path = "./ext/cache" }
deno_console = { version = "0.78.0", path = "./ext/console" }
deno_crypto = { version = "0.92.0", path = "./ext/crypto" }
deno_fetch = { version = "0.101.0", path = "./ext/fetch" }
deno_ffi = { version = "0.65.0", path = "./ext/ffi" }
deno_flash = { version = "0.14.0", path = "./ext/flash" }
deno_http = { version = "0.72.0", path = "./ext/http" }
deno_net = { version = "0.70.0", path = "./ext/net" }
deno_node = { version = "0.15.0", path = "./ext/node" }
deno_tls = { version = "0.65.0", path = "./ext/tls" }
deno_url = { version = "0.78.0", path = "./ext/url" }
deno_web = { version = "0.109.0", path = "./ext/web" }
deno_webgpu = { version = "0.79.0", path = "./ext/webgpu" }
deno_webidl = { version = "0.78.0", path = "./ext/webidl" }
deno_websocket = { version = "0.83.0", path = "./ext/websocket" }
deno_webstorage = { version = "0.73.0", path = "./ext/webstorage" }
deno_napi = { version = "0.8.0", path = "./ext/napi" }
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" }

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

### 1.28.2 / 2022.11.24

- feat(cli): add warning for incorrectly ordered flags (#16734)
- feat(core): Ability to create snapshots from existing snapshots (#16597)
- fix(ext/flash): graceful server startup/shutdown with unsettled promises in
mind (#16616)
- fix(ext/node): handle URL in createRequire (#16682)
- fix(ext/websocket): uncatchable errors on send (#16743)
- fix(fmt/markdown): scenario where whitespace was being incorrectly stripped in
inline links (#16769)
- fix(info): handle circular npm dependencies (#16692)
- fix(inspector): ensure console methods provided by inspector are available
(#16724)
- fix(install): `deno install -f` should overwrite lockfile from previous
installation (#16744)
- fix(npm): add suggestions to error message when can't find binary entrypoint
(#16733)
- fix(npm): automatically find binary entrypoint when values are all the same
(#16735)
- fix(npm): handle directory resolution when resolving declaration files
(#16706)
- fix(npm): use an http client with connection pool (#16705)
- fix(npm/check): prioritize exports over types entry (#16788)
- fix(npm/types): resolve main entrypoint declaration file when no types entry
(#16791)
- fix(types/unstable): change interface base for `CommandOutput` (#16696)
- fix: Make npm packages works with import maps (#16754)
- perf(ext/flash): optimize response streaming (#16660)
- perf(npm): make dependency resolution faster (#16694)

### 1.28.1 / 2022.11.16

- fix(bundle): explicit error when using an npm specifier with deno bundle
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.72.0"
version = "0.73.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.1"
version = "1.28.2"
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.165.0/";
static CURRENT_STD_URL_STR: &str = "https://deno.land/std@0.166.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.8.0"
version = "0.9.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.160.0"
version = "0.161.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.72.0"
version = "0.73.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.10.0"
version = "0.11.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.78.0"
version = "0.79.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion ext/crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno_crypto"
version = "0.92.0"
version = "0.93.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
Loading

0 comments on commit 72dd7ad

Please sign in to comment.