Skip to content

Commit

Permalink
chore: forward v1.30.1 release commit to main (denoland#17623)
Browse files Browse the repository at this point in the history
This is the release commit being forwarded back to main for 1.30.1
  • Loading branch information
denobot authored Feb 2, 2023
1 parent dc854e8 commit 65755a1
Show file tree
Hide file tree
Showing 30 changed files with 99 additions and 78 deletions.
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
Original file line number Diff line number Diff line change
Expand Up @@ -44,34 +44,34 @@ repository = "https://github.com/denoland/deno"
v8 = { version = "0.60.1", default-features = false }
deno_ast = { version = "0.23.2", features = ["transpiling"] }

deno_core = { version = "0.168.0", path = "./core" }
deno_ops = { version = "0.46.0", path = "./ops" }
serde_v8 = { version = "0.79.0", path = "./serde_v8" }
deno_runtime = { version = "0.94.0", path = "./runtime" }
napi_sym = { version = "0.16.0", path = "./cli/napi/sym" }
deno_bench_util = { version = "0.80.0", path = "./bench_util" }
deno_core = { version = "0.169.0", path = "./core" }
deno_ops = { version = "0.47.0", path = "./ops" }
serde_v8 = { version = "0.80.0", path = "./serde_v8" }
deno_runtime = { version = "0.95.0", path = "./runtime" }
napi_sym = { version = "0.17.0", path = "./cli/napi/sym" }
deno_bench_util = { version = "0.81.0", path = "./bench_util" }
test_util = { path = "./test_util" }
deno_lockfile = { version = "0.2.0", path = "./lockfile" }
deno_lockfile = { version = "0.3.0", path = "./lockfile" }

# exts
deno_broadcast_channel = { version = "0.80.0", path = "./ext/broadcast_channel" }
deno_cache = { version = "0.18.0", path = "./ext/cache" }
deno_console = { version = "0.86.0", path = "./ext/console" }
deno_crypto = { version = "0.100.0", path = "./ext/crypto" }
deno_fetch = { version = "0.110.0", path = "./ext/fetch" }
deno_ffi = { version = "0.73.0", path = "./ext/ffi" }
deno_flash = { version = "0.22.0", path = "./ext/flash" }
deno_http = { version = "0.81.0", path = "./ext/http" }
deno_net = { version = "0.78.0", path = "./ext/net" }
deno_node = { version = "0.23.0", path = "./ext/node" }
deno_tls = { version = "0.73.0", path = "./ext/tls" }
deno_url = { version = "0.86.0", path = "./ext/url" }
deno_web = { version = "0.117.0", path = "./ext/web" }
deno_webgpu = { version = "0.87.0", path = "./ext/webgpu" }
deno_webidl = { version = "0.86.0", path = "./ext/webidl" }
deno_websocket = { version = "0.91.0", path = "./ext/websocket" }
deno_webstorage = { version = "0.81.0", path = "./ext/webstorage" }
deno_napi = { version = "0.16.0", path = "./ext/napi" }
deno_broadcast_channel = { version = "0.81.0", path = "./ext/broadcast_channel" }
deno_cache = { version = "0.19.0", path = "./ext/cache" }
deno_console = { version = "0.87.0", path = "./ext/console" }
deno_crypto = { version = "0.101.0", path = "./ext/crypto" }
deno_fetch = { version = "0.111.0", path = "./ext/fetch" }
deno_ffi = { version = "0.74.0", path = "./ext/ffi" }
deno_flash = { version = "0.23.0", path = "./ext/flash" }
deno_http = { version = "0.82.0", path = "./ext/http" }
deno_net = { version = "0.79.0", path = "./ext/net" }
deno_node = { version = "0.24.0", path = "./ext/node" }
deno_tls = { version = "0.74.0", path = "./ext/tls" }
deno_url = { version = "0.87.0", path = "./ext/url" }
deno_web = { version = "0.118.0", path = "./ext/web" }
deno_webgpu = { version = "0.88.0", path = "./ext/webgpu" }
deno_webidl = { version = "0.87.0", path = "./ext/webidl" }
deno_websocket = { version = "0.92.0", path = "./ext/websocket" }
deno_webstorage = { version = "0.82.0", path = "./ext/webstorage" }
deno_napi = { version = "0.17.0", path = "./ext/napi" }

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

### 1.30.1 / 2023.02.02

- Revert "fix(watch): preserve `ProcState::file_fetcher` between restarts
(#15466) (#17591)
- fix(core): Add lint check for core (#17223)
- fix(ext): internal `structuredClone` for `ArrayBuffer` and `TypedArray`
subclasses (#17431)
- fix(fmt): semiColons: false - handle prop with following generator and do
while with no block body (#17567)
- fix(install): tsconfig.json -> deno.json for config file suffix (#17573)
- fix(lockfile): emit trailing newline (#17618)
- fix(lsp): update document dependencies on configuration change (#17556)
- fix(napi): guard threadsafe function counters behind a mutex (#17552)
- fix(napi): remove wrong length check in napi_create_function (#17614)
- fix(napi): return node globalThis from napi_get_global (#17613)
- fix(repl): handle @types/node not being cached in the repl (#17617)
- fix(upgrade): ensure temp dir cleanup on failure (#17535)
- fix: ensure "fs" -> "node:fs" error/quick fix works when user has import map
(#17566)
- perf(ops): Remove unnecessary fast call fallback options usage (#17585)

### 1.30.0 / 2023.01.25

- feat(cli): add `DENO_V8_FLAGS` env var (#17313)
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.80.0"
version = "0.81.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.30.0"
version = "1.30.1"
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.174.0/";
static CURRENT_STD_URL_STR: &str = "https://deno.land/std@0.176.0/";

pub static CURRENT_STD_URL: Lazy<Url> =
Lazy::new(|| Url::parse(CURRENT_STD_URL_STR).expect("invalid std url"));
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.16.0"
version = "0.17.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.168.0"
version = "0.169.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.80.0"
version = "0.81.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.18.0"
version = "0.19.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.86.0"
version = "0.87.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
Loading

0 comments on commit 65755a1

Please sign in to comment.