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

1.27.0 #16442

Merged
merged 2 commits into from
Oct 27, 2022
Merged

1.27.0 #16442

Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
1.27.0
  • Loading branch information
bartlomieju committed Oct 27, 2022
commit abafd11e7516a012c5feeb747352eb9b2d43886e
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.

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

### 1.27.0 / 2022.10.27

- Revert "Revert "refactor(ext/net): clean up variadic network ops (#16…
(#16422)
- Revert "refactor(ext/net): clean up variadic network ops (#16392)" (#16417)
- Revert realms from deno_core (#16366)
- core: enable --harmony-change-array-by-copy V8 flag (#16429)
- enable bench bot (#16339)
- experiment(ext/web): Don't expose event classes during the bootstrap phase
(#16213)
- feat(cli): check for updates in background (#15974)
- feat(cli): show error cause recursion information (#16384)
- feat(ext/ffi): Make op_ffi_ptr_of fast (#16297)
- feat(ext/net): add reuseAddress option for UDP (#13849)
- feat(ext/net): reusePort for TCP on Linux (#16398)
- feat(ext/web): use ArrayBuffer.was_detached() (#16307)
- feat(lint): add a report lint config setting (#16045)
- feat(runtime): make kill signal optional (#16299)
- feat(task): remove warning about being unstable (#16281)
- feat(task): support `sleep` suffixes (#16425)
- feat(unstable/npm): initial type checking of npm specifiers (#16332)
- feat(unstable/task): fail task on async command failure (#16301)
- feat(update): prompt for new version once per day (#16375)
- feat(upgrade): check if user has write access to deno exe (#16378)
- feat: Add new lockfile format (#16349)
- feat: Stabilize Deno.consoleSize() API (#15933)
- feat: Stabilize Deno.osRelease() API (#15973)
- feat: Stabilize Deno.stdin.setRaw() (#16399)
- feat: introduce navigator.language (#12322)
- feat: stabilize Deno.futime() and Deno.futimeSync() (#16415)
- feat: stabilize Deno.loadavg() (#16412)
- feat: stabilize Deno.utime() and Deno.utimeSync() (#16421)
- feat: support inlay hints (#16287)
- fix(build) assume a custom compiler will support --export-dynamic-symbol-list
linker flag. (#16387)
- fix(cli): Fixed bug where the progress bar did not clear (#16401)
- fix(cli): do not log update checker when log level is quiet (#16433)
- fix(compile): show an error when using npm specifiers (#16430)
- fix(core) Include causes when converting anyhow errors to JS exceptions
(#16397)
- fix(ext/fetch): fix `size_hint` on response body resource (#16254)
- fix(ext/ffi): Use BufferSource for FFI buffer types (#16355)
- fix(ext/ffi): Use PointerValue in UnsafePointerView and UnsafeFnPointer types
(#16354)
- fix(ext/net): don't remove sockets on unix listen (#16394)
- fix(ext/net): return an error from `startTls` and `serveHttp` if the original
connection is captured elsewhere (#16242)
- fix(lsp): allow caching deps in non-saved files (#16353)
- fix(lsp): regression - error when removing file (#16388)
- fix(npm): add support for npm packages in lock files (#15938)
- fix(typescript): allow synthetic default imports when using
`ModuleKind.ESNext` (#16438)
- fix(upgrade): Added error message when using canary option with M1 (#16382)
- fix(upgrade): put prompt date in the past when creating a file (#16380)
- fix: listenTlsWithReuseAddr test (#16420)
- fix: move generated napi symbols to cli/ (#16330)
- fix: upgrade swc_ecma_parser to 0.122.19 - deno_ast 0.20 (#16406)
- perf(core): avoid creating global handles in `op_queue_microtask` (#16359)
- perf(core): avoid isolate slots for ModuleMap (#16409)
- perf(core): do not drive JsInspector by default (#16410)
- perf(core): don't access isolate slots for JsRuntimeState (#16376)
- perf(ext/ffi): Fast UnsafePointerView read functions (#16351)
- perf(ext/flash): optimize path response streams (#16284)
- perf(ext/streams): fast path when consuming body of tee'd stream (#16329)
- perf(ext/web): add op_encode_binary_string (#16352)
- perf(ext/web): optimize transferArrayBuffer (#16294)
- perf(ext/web/encoding): avoid copy in decode (#16364)
- perf(ext/websocket): optimize `op_ws_next_event` (#16325)
- perf(ext/websocket): optimize socket.send (#16320)
- perf(serde_v8): `serde_v8::StringOrBuffer` return JS ArrayBuffer instead of
Uint8Array (#16360)

### 1.26.2 / 2022.10.17

- feat(core): Reorder extension initialization (#16136)
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.67.0"
version = "0.68.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.155.0", path = "../core" }
deno_core = { version = "0.156.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.26.2"
version = "1.27.0"
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.67.0", path = "../ext/broadcast_channel" }
deno_cache = { version = "0.5.0", path = "../ext/cache" }
deno_console = { version = "0.73.0", path = "../ext/console" }
deno_core = { version = "0.155.0", path = "../core" }
deno_crypto = { version = "0.87.0", path = "../ext/crypto" }
deno_fetch = { version = "0.96.0", path = "../ext/fetch" }
deno_net = { version = "0.65.0", path = "../ext/net" }
deno_node = { version = "0.10.0", path = "../ext/node" }
deno_url = { version = "0.73.0", path = "../ext/url" }
deno_web = { version = "0.104.0", path = "../ext/web" }
deno_webgpu = { version = "0.74.0", path = "../ext/webgpu" }
deno_websocket = { version = "0.78.0", path = "../ext/websocket" }
deno_webstorage = { version = "0.68.0", path = "../ext/webstorage" }
deno_broadcast_channel = { version = "0.68.0", path = "../ext/broadcast_channel" }
deno_cache = { version = "0.6.0", path = "../ext/cache" }
deno_console = { version = "0.74.0", path = "../ext/console" }
deno_core = { version = "0.156.0", path = "../core" }
deno_crypto = { version = "0.88.0", path = "../ext/crypto" }
deno_fetch = { version = "0.97.0", path = "../ext/fetch" }
deno_net = { version = "0.66.0", path = "../ext/net" }
deno_node = { version = "0.11.0", path = "../ext/node" }
deno_url = { version = "0.74.0", path = "../ext/url" }
deno_web = { version = "0.105.0", path = "../ext/web" }
deno_webgpu = { version = "0.75.0", path = "../ext/webgpu" }
deno_websocket = { version = "0.79.0", path = "../ext/websocket" }
deno_webstorage = { version = "0.69.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.20.0", features = ["bundler", "cjs", "codegen", "dep_graph", "module_specifier", "proposal", "react", "sourcemap", "transforms", "transpiling", "typescript", "view", "visit"] }
deno_core = { version = "0.155.0", path = "../core" }
deno_core = { version = "0.156.0", path = "../core" }
deno_doc = "0.47.0"
deno_emit = "0.10.0"
deno_graph = "0.37.1"
deno_lint = { version = "0.34.0", features = ["docs"] }
deno_runtime = { version = "0.81.0", path = "../runtime" }
deno_runtime = { version = "0.82.0", path = "../runtime" }
deno_task_shell = "0.7.0"
napi_sym = { path = "./napi_sym", version = "0.3.0" }
napi_sym = { path = "./napi_sym", version = "0.4.0" }

atty = "=0.2.14"
base64 = "=0.13.1"
Expand Down Expand Up @@ -122,7 +122,7 @@ winapi = { version = "=0.3.9", features = ["knownfolders", "mswsock", "objbase",
nix = "=0.24.2"

[dev-dependencies]
deno_bench_util = { version = "0.67.0", path = "../bench_util" }
deno_bench_util = { version = "0.68.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.160.0/";
static CURRENT_STD_URL_STR: &str = "https://deno.land/std@0.161.0/";

pub static CURRENT_STD_URL: Lazy<Url> =
Lazy::new(|| Url::parse(CURRENT_STD_URL_STR).unwrap());
Loading