Skip to content

Commit

Permalink
chore: forward v1.31.2 release commit to main (denoland#18114)
Browse files Browse the repository at this point in the history
Co-authored-by: Yoshiya Hinosawa <[email protected]>
  • Loading branch information
denobot and kt3k authored Mar 10, 2023
1 parent e340806 commit 857393d
Show file tree
Hide file tree
Showing 33 changed files with 123 additions and 86 deletions.
56 changes: 28 additions & 28 deletions Cargo.lock

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

54 changes: 27 additions & 27 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,36 +46,36 @@ repository = "https://github.com/denoland/deno"
v8 = { version = "0.64.0", default-features = false }
deno_ast = { version = "0.24.0", features = ["transpiling"] }

deno_core = { version = "0.173.0", path = "./core" }
deno_ops = { version = "0.51.0", path = "./ops" }
serde_v8 = { version = "0.84.0", path = "./serde_v8" }
deno_runtime = { version = "0.99.0", path = "./runtime" }
napi_sym = { version = "0.21.0", path = "./cli/napi/sym" }
deno_bench_util = { version = "0.85.0", path = "./bench_util" }
deno_core = { version = "0.174.0", path = "./core" }
deno_ops = { version = "0.52.0", path = "./ops" }
serde_v8 = { version = "0.85.0", path = "./serde_v8" }
deno_runtime = { version = "0.100.0", path = "./runtime" }
napi_sym = { version = "0.22.0", path = "./cli/napi/sym" }
deno_bench_util = { version = "0.86.0", path = "./bench_util" }
test_util = { path = "./test_util" }
deno_lockfile = { version = "0.7.0", path = "./lockfile" }
deno_lockfile = { version = "0.8.0", path = "./lockfile" }

# exts
deno_broadcast_channel = { version = "0.85.0", path = "./ext/broadcast_channel" }
deno_cache = { version = "0.23.0", path = "./ext/cache" }
deno_console = { version = "0.91.0", path = "./ext/console" }
deno_crypto = { version = "0.105.0", path = "./ext/crypto" }
deno_fetch = { version = "0.115.0", path = "./ext/fetch" }
deno_ffi = { version = "0.78.0", path = "./ext/ffi" }
deno_flash = { version = "0.27.0", path = "./ext/flash" }
deno_fs = { version = "0.1.0", path = "./ext/fs" }
deno_http = { version = "0.86.0", path = "./ext/http" }
deno_io = { version = "0.1.0", path = "./ext/io" }
deno_net = { version = "0.83.0", path = "./ext/net" }
deno_node = { version = "0.28.0", path = "./ext/node" }
deno_tls = { version = "0.78.0", path = "./ext/tls" }
deno_url = { version = "0.91.0", path = "./ext/url" }
deno_web = { version = "0.122.0", path = "./ext/web" }
deno_webgpu = { version = "0.92.0", path = "./ext/webgpu" }
deno_webidl = { version = "0.91.0", path = "./ext/webidl" }
deno_websocket = { version = "0.96.0", path = "./ext/websocket" }
deno_webstorage = { version = "0.86.0", path = "./ext/webstorage" }
deno_napi = { version = "0.21.0", path = "./ext/napi" }
deno_broadcast_channel = { version = "0.86.0", path = "./ext/broadcast_channel" }
deno_cache = { version = "0.24.0", path = "./ext/cache" }
deno_console = { version = "0.92.0", path = "./ext/console" }
deno_crypto = { version = "0.106.0", path = "./ext/crypto" }
deno_fetch = { version = "0.116.0", path = "./ext/fetch" }
deno_ffi = { version = "0.79.0", path = "./ext/ffi" }
deno_flash = { version = "0.28.0", path = "./ext/flash" }
deno_fs = { version = "0.2.0", path = "./ext/fs" }
deno_http = { version = "0.87.0", path = "./ext/http" }
deno_io = { version = "0.2.0", path = "./ext/io" }
deno_net = { version = "0.84.0", path = "./ext/net" }
deno_node = { version = "0.29.0", path = "./ext/node" }
deno_tls = { version = "0.79.0", path = "./ext/tls" }
deno_url = { version = "0.92.0", path = "./ext/url" }
deno_web = { version = "0.123.0", path = "./ext/web" }
deno_webgpu = { version = "0.93.0", path = "./ext/webgpu" }
deno_webidl = { version = "0.92.0", path = "./ext/webidl" }
deno_websocket = { version = "0.97.0", path = "./ext/websocket" }
deno_webstorage = { version = "0.87.0", path = "./ext/webstorage" }
deno_napi = { version = "0.22.0", path = "./ext/napi" }

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

### 1.31.2 / 2023.03.10

- Revert "perf: disable snapshot compression (#18061)" (#18074)
- deps: bump `regexp` to `^1.7.0` (#17966)
- deps: bump once_cell to ^1.17.1 (#18075)
- feat(core): prevent isolate drop for CLI main worker (#18059)
- feat(ext/ffi): Make External pointers keep reference to V8 buffer (#17955)
- feat(ops): reland fast zero copy string arguments (#17996)
- feat(ops): relational ops (#18023)
- fix(check): include dts files in tsc roots (#18026)
- fix(cli): add space after period in `--v8-flags` (#18063)
- fix(cli,ext/web): Upgrading uuid from =1.1.2 to 1.3.0 (#17963)
- fix(core): introduce `SafeRegExp` to primordials (#17592)
- fix(ext/crypto): correctly limit ECDSA and hash algorithms (#18030)
- fix(ext/ffi): Remove deno_core::OpState qualifiers, fix ops returning pointer
defaults (#17959)
- fix(ext/node): remove unused _hex module (#18045)
- fix(ext/node): util.types.isSharedArrayBuffer (#17836)
- fix(ext/webstorage): check size of inputs before insert (#18087)
- fix(lockfile): don't touch lockfile is npm specifiers are identical (#17973)
- fix(npm): improve peer dependency resolution with circular dependencies
(#18069)
- fix(prompt): better output with control chars (#18108)
- fix(rumtime): Add `Deno.` prefix for registered symbols (#18086)
- fix(runtime/windows): ensure `Deno.stdin.setRaw(false)` properly disables raw
mode (#17983)
- fix: Split extension registration and snapshotting (#18098)
- fix: attempt to only allow one deno process to update the node_modules folder
at a time (#18058)
- fix: lazily surface errors in package.json deps parsing (#17974)
- perf(core): over-allocate in ModuleMap when running from snapshot (#18083)
- perf(ext/node): improve createHash performance (#18033)
- perf: disable snapshot compression (#18061)
- perf: don't add unload event listener (#18082)
- perf: move runtime bootstrap code to snapshot time (#18062)
- perf: move setting up Deno namespace to snapshot time (#18067)
- wpt: unlock nightly with --no-ignore (#17998)

### 1.31.1 / 2023.02.25

- feat: add `DENO_NO_PACKAGE_JSON` env var (#17926)
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.85.0"
version = "0.86.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.31.1"
version = "1.31.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.178.0/";
static CURRENT_STD_URL_STR: &str = "https://deno.land/std@0.179.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.21.0"
version = "0.22.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
Loading

0 comments on commit 857393d

Please sign in to comment.