Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: forward v1.28.1 release commit to main #16678

Merged
merged 1 commit into from
Nov 17, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1.28.1 (#16677)
Co-authored-by: bartlomieju <[email protected]>
  • Loading branch information
denobot and bartlomieju committed Nov 16, 2022
commit 3cd9db8215ae5799f59365fe86c235416d904729
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.

19 changes: 19 additions & 0 deletions Releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,25 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at:
https://github.com/denoland/deno_install

### 1.28.1 / 2022.11.16

- fix(bundle): explicit error when using an npm specifier with deno bundle
(#16637)
- fix(cli): add a jsdoc tag for `UnstableRunOptions` (#16525)
- fix(ext/webstorage): make web storages re-assignable (#16661)
- fix(install): support npm specifiers (#16634)
- fix(lock): ensure npm dependencies are written with --lock-write (#16668)
- fix(npm): don't fail if conditional exports don't contains types (#16651)
- fix(npm): handle peer dep being resolved without resolved dep higher in tree
and then with (#16640)
- fix(npm): probing for files that have a file stem (#16641)
- fix(npm): properly handle getting `@types` package for scoped packages
(#16655)
- fix(npm): support dist tags specified in npm package dependencies (#16652)
- fix(npm): support non-all lowercase package names (#16669)
- fix(npm): using types for packages with subpath (#16656)
- perf(runtime/spawn): collect output using `op_read_all` (#16596)

### 1.28.0 / 2022.11.13

- feat(lock): don't require --unstable for auto discovery (#16582)
Expand Down
4 changes: 2 additions & 2 deletions bench_util/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
[package]
name = "deno_bench_util"
version = "0.71.0"
version = "0.72.0"
authors = ["the Deno authors"]
edition = "2021"
license = "MIT"
Expand All @@ -15,7 +15,7 @@ path = "lib.rs"

[dependencies]
bencher = "0.1"
deno_core = { version = "0.159.0", path = "../core" }
deno_core = { version = "0.160.0", path = "../core" }
once_cell = "1.10.0"
tokio = { version = "1.21", features = ["full"] }

Expand Down
36 changes: 18 additions & 18 deletions 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.0"
version = "1.28.1"
authors = ["the Deno authors"]
default-run = "deno"
edition = "2021"
Expand All @@ -26,19 +26,19 @@ harness = false
path = "./bench/lsp_bench_standalone.rs"

[build-dependencies]
deno_broadcast_channel = { version = "0.71.0", path = "../ext/broadcast_channel" }
deno_cache = { version = "0.9.0", path = "../ext/cache" }
deno_console = { version = "0.77.0", path = "../ext/console" }
deno_core = { version = "0.159.0", path = "../core" }
deno_crypto = { version = "0.91.0", path = "../ext/crypto" }
deno_fetch = { version = "0.100.0", path = "../ext/fetch" }
deno_net = { version = "0.69.0", path = "../ext/net" }
deno_node = { version = "0.14.0", path = "../ext/node" }
deno_url = { version = "0.77.0", path = "../ext/url" }
deno_web = { version = "0.108.0", path = "../ext/web" }
deno_webgpu = { version = "0.78.0", path = "../ext/webgpu" }
deno_websocket = { version = "0.82.0", path = "../ext/websocket" }
deno_webstorage = { version = "0.72.0", path = "../ext/webstorage" }
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_core = { version = "0.160.0", path = "../core" }
deno_crypto = { version = "0.92.0", path = "../ext/crypto" }
deno_fetch = { version = "0.101.0", path = "../ext/fetch" }
deno_net = { version = "0.70.0", path = "../ext/net" }
deno_node = { version = "0.15.0", path = "../ext/node" }
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_websocket = { version = "0.83.0", path = "../ext/websocket" }
deno_webstorage = { version = "0.73.0", path = "../ext/webstorage" }
regex = "=1.6.0"
serde = { version = "=1.0.144", features = ["derive"] }
serde_json = "1.0.64"
Expand All @@ -51,14 +51,14 @@ winres = "=0.1.12"

[dependencies]
deno_ast = { version = "0.21.0", features = ["bundler", "cjs", "codegen", "dep_graph", "module_specifier", "proposal", "react", "sourcemap", "transforms", "transpiling", "typescript", "view", "visit"] }
deno_core = { version = "0.159.0", path = "../core" }
deno_core = { version = "0.160.0", path = "../core" }
deno_doc = "0.49.0"
deno_emit = "0.11.0"
deno_graph = "0.38.0"
deno_lint = { version = "0.35.0", features = ["docs"] }
deno_runtime = { version = "0.85.0", path = "../runtime" }
deno_runtime = { version = "0.86.0", path = "../runtime" }
deno_task_shell = "0.7.2"
napi_sym = { path = "./napi_sym", version = "0.7.0" }
napi_sym = { path = "./napi_sym", version = "0.8.0" }

atty = "=0.2.14"
base32 = "=0.4.0"
Expand Down Expand Up @@ -124,7 +124,7 @@ winapi = { version = "=0.3.9", features = ["knownfolders", "mswsock", "objbase",
nix = "=0.24.2"

[dev-dependencies]
deno_bench_util = { version = "0.71.0", path = "../bench_util" }
deno_bench_util = { version = "0.72.0", path = "../bench_util" }
dotenv = "=0.15.0"
flaky_test = "=0.1.0"
once_cell = "=1.14.0"
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.164.0/";
static CURRENT_STD_URL_STR: &str = "https://deno.land/std@0.165.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
@@ -1,6 +1,6 @@
[package]
name = "napi_sym"
version = "0.7.0"
version = "0.8.0"
edition = "2021"
license = "MIT"
readme = "README.md"
Expand Down
6 changes: 3 additions & 3 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
[package]
name = "deno_core"
version = "0.159.0"
version = "0.160.0"
authors = ["the Deno authors"]
edition = "2021"
license = "MIT"
Expand All @@ -19,7 +19,7 @@ v8_use_custom_libcxx = ["v8/use_custom_libcxx"]
[dependencies]
anyhow = "1.0.57"
bytes = "1"
deno_ops = { path = "../ops", version = "0.37.0" }
deno_ops = { path = "../ops", version = "0.38.0" }
futures = "0.3.21"
# Stay on 1.6 to avoid a dependency cycle in ahash https://github.com/tkaitchuck/aHash/issues/95
# Projects not depending on ahash are unafected as cargo will pull any 1.X that is >= 1.6.
Expand All @@ -31,7 +31,7 @@ parking_lot = "0.12.0"
pin-project = "1.0.11"
serde = { version = "1.0.136", features = ["derive"] }
serde_json = { version = "1.0.79", features = ["preserve_order"] }
serde_v8 = { version = "0.70.0", path = "../serde_v8" }
serde_v8 = { version = "0.71.0", path = "../serde_v8" }
smallvec = "1.8"
sourcemap = "6.1"
url = { version = "2.3.1", features = ["serde", "expose_internals"] }
Expand Down
4 changes: 2 additions & 2 deletions 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.71.0"
version = "0.72.0"
authors = ["the Deno authors"]
edition = "2021"
license = "MIT"
Expand All @@ -15,6 +15,6 @@ path = "lib.rs"

[dependencies]
async-trait = "0.1"
deno_core = { version = "0.159.0", path = "../../core" }
deno_core = { version = "0.160.0", path = "../../core" }
tokio = { version = "1.21", features = ["full"] }
uuid = { version = "1.0.0", features = ["v4"] }
Loading