Skip to content

Commit

Permalink
1.32.0 (denoland#18367)
Browse files Browse the repository at this point in the history
Bumped versions for 1.32.0

---------

Co-authored-by: mmastrac <[email protected]>
Co-authored-by: Matt Mastracci <[email protected]>
Co-authored-by: David Sherret <[email protected]>
  • Loading branch information
4 people committed Mar 22, 2023
1 parent 533e331 commit 25b564b
Show file tree
Hide file tree
Showing 32 changed files with 119 additions and 84 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.66.0", default-features = false }
deno_ast = { version = "0.25.0", features = ["transpiling"] }

deno_core = { version = "0.175.0", path = "./core" }
deno_ops = { version = "0.53.0", path = "./ops" }
serde_v8 = { version = "0.86.0", path = "./serde_v8" }
deno_runtime = { version = "0.101.0", path = "./runtime" }
napi_sym = { version = "0.23.0", path = "./cli/napi/sym" }
deno_bench_util = { version = "0.87.0", path = "./bench_util" }
deno_core = { version = "0.176.0", path = "./core" }
deno_ops = { version = "0.54.0", path = "./ops" }
serde_v8 = { version = "0.87.0", path = "./serde_v8" }
deno_runtime = { version = "0.102.0", path = "./runtime" }
napi_sym = { version = "0.24.0", path = "./cli/napi/sym" }
deno_bench_util = { version = "0.88.0", path = "./bench_util" }
test_util = { path = "./test_util" }
deno_lockfile = { version = "0.9.0", path = "./lockfile" }
deno_lockfile = { version = "0.10.0", path = "./lockfile" }

# exts
deno_broadcast_channel = { version = "0.87.0", path = "./ext/broadcast_channel" }
deno_cache = { version = "0.25.0", path = "./ext/cache" }
deno_console = { version = "0.93.0", path = "./ext/console" }
deno_crypto = { version = "0.107.0", path = "./ext/crypto" }
deno_fetch = { version = "0.117.0", path = "./ext/fetch" }
deno_ffi = { version = "0.80.0", path = "./ext/ffi" }
deno_flash = { version = "0.29.0", path = "./ext/flash" }
deno_fs = { version = "0.3.0", path = "./ext/fs" }
deno_http = { version = "0.88.0", path = "./ext/http" }
deno_io = { version = "0.3.0", path = "./ext/io" }
deno_net = { version = "0.85.0", path = "./ext/net" }
deno_node = { version = "0.30.0", path = "./ext/node" }
deno_kv = { version = "0.1.0", path = "./ext/kv" }
deno_tls = { version = "0.80.0", path = "./ext/tls" }
deno_url = { version = "0.93.0", path = "./ext/url" }
deno_web = { version = "0.124.0", path = "./ext/web" }
deno_webidl = { version = "0.93.0", path = "./ext/webidl" }
deno_websocket = { version = "0.98.0", path = "./ext/websocket" }
deno_webstorage = { version = "0.88.0", path = "./ext/webstorage" }
deno_napi = { version = "0.23.0", path = "./ext/napi" }
deno_broadcast_channel = { version = "0.88.0", path = "./ext/broadcast_channel" }
deno_cache = { version = "0.26.0", path = "./ext/cache" }
deno_console = { version = "0.94.0", path = "./ext/console" }
deno_crypto = { version = "0.108.0", path = "./ext/crypto" }
deno_fetch = { version = "0.118.0", path = "./ext/fetch" }
deno_ffi = { version = "0.81.0", path = "./ext/ffi" }
deno_flash = { version = "0.30.0", path = "./ext/flash" }
deno_fs = { version = "0.4.0", path = "./ext/fs" }
deno_http = { version = "0.89.0", path = "./ext/http" }
deno_io = { version = "0.4.0", path = "./ext/io" }
deno_net = { version = "0.86.0", path = "./ext/net" }
deno_node = { version = "0.31.0", path = "./ext/node" }
deno_kv = { version = "0.2.0", path = "./ext/kv" }
deno_tls = { version = "0.81.0", path = "./ext/tls" }
deno_url = { version = "0.94.0", path = "./ext/url" }
deno_web = { version = "0.125.0", path = "./ext/web" }
deno_webidl = { version = "0.94.0", path = "./ext/webidl" }
deno_websocket = { version = "0.99.0", path = "./ext/websocket" }
deno_webstorage = { version = "0.89.0", path = "./ext/webstorage" }
deno_napi = { version = "0.24.0", path = "./ext/napi" }

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

### 1.32.0 / 2023.03.22

- BREAKING(unstable): remove WebGPU (#18094)
- feat(ext/fs): FileInfo.dev is supported on Windows (#18237)
- feat(cli): --ext parameter for run, compile, and bundle (#17172)
- feat(compile): Add support for web workers in standalone mode (#17657)
- feat(compile): Enable multiple roots for a standalone module graph (#17663)
- feat(core): deno_core::extension! macro to simplify extension registration
(#18210)
- feat(ext/kv): key-value store (#18232)
- feat(ext/net): Add multicasting APIs to DatagramConn (#10706) (#17811)
- feat(ext/url): URLSearchParams.size (#17884)
- feat(repl): add `DENO_REPL_HISTORY` to change history file path (#18047)
- feat(serde_v8): support BigInt serialization (#18225)
- feat: TypeScript 5.0.2 (except decorators) (#18294)
- fix(cli): preserve blob store when resetting file watcher (#18253)
- fix(cli/integration): clippy lints (#18248)
- fix(ext/kv): don't request permissions for ":memory:" (#18346)
- fix(ext/kv): reverse mapping between `AnyValue::Bool` and `KeyPart::Bool`
(#18365)
- fix(ext/node): add createDecipheriv (#18245)
- fix(ext/node): resource leak in createHmac (#18229)
- fix(ext/node): use Deno.Command from `ext:runtime` (#18289)
- fix(repl): Hide indexable properties in tab completion (#18141)
- fix(runtime): Extract error code for all OS error variants (#17958)
- fix: include error in message about not being able to create the TypeScript
cache (#18356)
- perf(check): type check local files only when not using `--all` (#18329)
- perf(core) Reduce copying and cloning in extension initialization (#18252)
- perf(core) Reduce script name and script code copies (#18298)
- perf(core): preserve ops between snapshots (#18080)
- perf(core): use static specifier in ExtensionFileSource (#18271)
- perf: disable WAL for transpiled source cache (#18084)
- perf: disable runtime snapshot compression (#18239)

### 1.31.3 / 2023.03.16

- fix(check): regression where config "types" entries caused type checking
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.87.0"
version = "0.88.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.3"
version = "1.32.0"
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.180.0/";
static CURRENT_STD_URL_STR: &str = "https://deno.land/std@0.181.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.23.0"
version = "0.24.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
Loading

0 comments on commit 25b564b

Please sign in to comment.