Skip to content

Commit

Permalink
1.29.0 (denoland#17052)
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 authored Dec 14, 2022
1 parent 9f82abb commit 0d4e4af
Show file tree
Hide file tree
Showing 29 changed files with 134 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.60.0", default-features = false }
deno_ast = { version = "0.21.0", features = ["transpiling"] }

deno_core = { version = "0.162.0", path = "./core" }
deno_ops = { version = "0.40.0", path = "./ops" }
serde_v8 = { version = "0.73.0", path = "./serde_v8" }
deno_runtime = { version = "0.88.0", path = "./runtime" }
napi_sym = { version = "0.10.0", path = "./cli/napi/sym" }
deno_bench_util = { version = "0.74.0", path = "./bench_util" }
deno_core = { version = "0.163.0", path = "./core" }
deno_ops = { version = "0.41.0", path = "./ops" }
serde_v8 = { version = "0.74.0", path = "./serde_v8" }
deno_runtime = { version = "0.89.0", path = "./runtime" }
napi_sym = { version = "0.11.0", path = "./cli/napi/sym" }
deno_bench_util = { version = "0.75.0", path = "./bench_util" }
test_util = { path = "./test_util" }

# exts
deno_broadcast_channel = { version = "0.74.0", path = "./ext/broadcast_channel" }
deno_cache = { version = "0.12.0", path = "./ext/cache" }
deno_console = { version = "0.80.0", path = "./ext/console" }
deno_crypto = { version = "0.94.0", path = "./ext/crypto" }
deno_fetch = { version = "0.103.0", path = "./ext/fetch" }
deno_ffi = { version = "0.67.0", path = "./ext/ffi" }
deno_flash = { version = "0.16.0", path = "./ext/flash" }
deno_http = { version = "0.74.0", path = "./ext/http" }
deno_net = { version = "0.72.0", path = "./ext/net" }
deno_node = { version = "0.17.0", path = "./ext/node" }
deno_tls = { version = "0.67.0", path = "./ext/tls" }
deno_url = { version = "0.80.0", path = "./ext/url" }
deno_web = { version = "0.111.0", path = "./ext/web" }
deno_webgpu = { version = "0.81.0", path = "./ext/webgpu" }
deno_webidl = { version = "0.80.0", path = "./ext/webidl" }
deno_websocket = { version = "0.85.0", path = "./ext/websocket" }
deno_webstorage = { version = "0.75.0", path = "./ext/webstorage" }
deno_napi = { version = "0.10.0", path = "./ext/napi" }
deno_broadcast_channel = { version = "0.75.0", path = "./ext/broadcast_channel" }
deno_cache = { version = "0.13.0", path = "./ext/cache" }
deno_console = { version = "0.81.0", path = "./ext/console" }
deno_crypto = { version = "0.95.0", path = "./ext/crypto" }
deno_fetch = { version = "0.104.0", path = "./ext/fetch" }
deno_ffi = { version = "0.68.0", path = "./ext/ffi" }
deno_flash = { version = "0.17.0", path = "./ext/flash" }
deno_http = { version = "0.75.0", path = "./ext/http" }
deno_net = { version = "0.73.0", path = "./ext/net" }
deno_node = { version = "0.18.0", path = "./ext/node" }
deno_tls = { version = "0.68.0", path = "./ext/tls" }
deno_url = { version = "0.81.0", path = "./ext/url" }
deno_web = { version = "0.112.0", path = "./ext/web" }
deno_webgpu = { version = "0.82.0", path = "./ext/webgpu" }
deno_webidl = { version = "0.81.0", path = "./ext/webidl" }
deno_websocket = { version = "0.86.0", path = "./ext/websocket" }
deno_webstorage = { version = "0.76.0", path = "./ext/webstorage" }
deno_napi = { version = "0.11.0", path = "./ext/napi" }

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

### 1.29.0 / 2022.12.14

- feat(cli): support configuring the lock file in the config file (#16781)
- feat(cli): support deno bench in the config file (#16608)
- feat(ext/ffi): better type hints for Deno.dlopen (#16874)
- feat(flags): add `deno check --all` as new preferred alias for `--remote`
(#16702)
- feat(fmt): improve width calculation (#16982)
- feat(init): Generate deno.json by default (#16389)
- feat(init): Generate main_bench.ts by default (#16786)
- feat(init): Use jsonc for configuration file (#17002)
- feat(napi): improve napi coverage (#16198)
- feat(npm): add support for `NPM_CONFIG_REGISTRY` (#16980)
- feat(ops): Fast zero copy string arguments (#16777)
- feat(repl): run "deno repl" with no permissions (#16795)
- feat(repl): support npm packages (#16770)
- feat: Stabilize Deno.TcpConn.setNoDelay() and Deno.TcpConn.setKeepAlive()
(#17003)
- feat: add `--inspect-wait` flag (#17001)
- feat: ignore `node_modules` and `.git` folders when collecting files
everywhere (#16862)
- feat: improve download progress bar (#16984)
- feat: support `createNew` in `Deno.writeFile` (#17023)
- feat: upgrade to TypeScript 4.9.3 (#16973)
- fix(cli/upgrade): properly cleanup after finished (#16930)
- fix(compile): ensure import map is used when specified in deno config file
(#16990)
- fix(ext/fetch): new Request should soft clone (#16869)
- fix(ext/websocket): Reland make try_send ops infallible (#16968)
- fix(fmt): panic in yaml header with multi-byte characters (#17042)
- fix(napi): respect --quiet flag in unimplemented warnings (#16935)
- fix(npm): ancestor that resolves peer dependency should not include self in id
(#16693)
- fix(npm): dependency types were sometimes not being resolved when package had
no types entry (#16958)
- fix(npm): support loose node semver ranges like `>= ^x.x.x` (#17037)
- fix(ops): disallow auto-borrowing OpState across potential await point
(#16952)
- fix(permissions): Allow ancestor path for --allow-ffi (#16765)
- fix(task): improve word parsing (#16911)
- fix(task): support redirects in pipe sequences (#16903)
- fix(test): handle scenario where --trace-ops would cause an unhandled promise
rejection (#16970)
- fix(test): improve how `--fail-fast` shuts down when hitting limit (#16956)
- fix(upgrade): respect the `--quiet` flag (#16888)
- fix(upgrade/windows): correct command in windows access denied message
(#17049)
- fix(upgrade/windows): show informative message on access denied error (#16887)
- fix(vendor): properly handle bare specifiers that start with http (#16885)
- fix(windows): support special key presses in raw mode (#16904)
- fix: always derive http client from cli flags (#17029)
- fix: default to `"inherit"` for `Deno.Command#spawn()`'s `stdout` & `stderr`
(#17025)
- fix: respect the `--quiet` flag in more cases (#16998)
- npm: ensure runtime exceptions are surfaced when debugger is attached (#16943)
- perf(ext/websocket): skip Events constructor checks (#16365)
- perf: use fast api for io read/write sync (#15863)
- unstable: remove Deno.spawn, Deno.spawnSync, Deno.spawnChild APIs (#16893)

### 1.28.3 / 2022.12.01

- Revert "fix(ext/flash): graceful server startup/shutdown with unsettl…
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.74.0"
version = "0.75.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.3"
version = "1.29.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.167.0/";
static CURRENT_STD_URL_STR: &str = "https://deno.land/std@0.168.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.10.0"
version = "0.11.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.162.0"
version = "0.163.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
Loading

0 comments on commit 0d4e4af

Please sign in to comment.