Skip to content

Commit

Permalink
1.33.0 (denoland#18879)
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 committed Apr 27, 2023
1 parent 683dbd7 commit 39ece1f
Show file tree
Hide file tree
Showing 30 changed files with 118 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,38 +44,38 @@ repository = "https://github.com/denoland/deno"
v8 = { version = "0.71.0", default-features = false }
deno_ast = { version = "0.26.0", features = ["transpiling"] }

deno_core = { version = "0.181.0", path = "./core" }
deno_ops = { version = "0.59.0", path = "./ops" }
serde_v8 = { version = "0.92.0", path = "./serde_v8" }
deno_runtime = { version = "0.107.0", path = "./runtime" }
napi_sym = { version = "0.29.0", path = "./cli/napi/sym" }
deno_bench_util = { version = "0.93.0", path = "./bench_util" }
deno_core = { version = "0.182.0", path = "./core" }
deno_ops = { version = "0.60.0", path = "./ops" }
serde_v8 = { version = "0.93.0", path = "./serde_v8" }
deno_runtime = { version = "0.108.0", path = "./runtime" }
napi_sym = { version = "0.30.0", path = "./cli/napi/sym" }
deno_bench_util = { version = "0.94.0", path = "./bench_util" }
test_util = { path = "./test_util" }
deno_lockfile = "0.13.0"
deno_media_type = { version = "0.1.0", features = ["module_specifier"] }
deno_npm = "0.3.0"
deno_semver = "0.2.1"

# exts
deno_broadcast_channel = { version = "0.93.0", path = "./ext/broadcast_channel" }
deno_cache = { version = "0.31.0", path = "./ext/cache" }
deno_console = { version = "0.99.0", path = "./ext/console" }
deno_crypto = { version = "0.113.0", path = "./ext/crypto" }
deno_fetch = { version = "0.123.0", path = "./ext/fetch" }
deno_ffi = { version = "0.86.0", path = "./ext/ffi" }
deno_fs = { version = "0.9.0", path = "./ext/fs" }
deno_http = { version = "0.94.0", path = "./ext/http" }
deno_io = { version = "0.9.0", path = "./ext/io" }
deno_net = { version = "0.91.0", path = "./ext/net" }
deno_node = { version = "0.36.0", path = "./ext/node" }
deno_kv = { version = "0.7.0", path = "./ext/kv" }
deno_tls = { version = "0.86.0", path = "./ext/tls" }
deno_url = { version = "0.99.0", path = "./ext/url" }
deno_web = { version = "0.130.0", path = "./ext/web" }
deno_webidl = { version = "0.99.0", path = "./ext/webidl" }
deno_websocket = { version = "0.104.0", path = "./ext/websocket" }
deno_webstorage = { version = "0.94.0", path = "./ext/webstorage" }
deno_napi = { version = "0.29.0", path = "./ext/napi" }
deno_broadcast_channel = { version = "0.94.0", path = "./ext/broadcast_channel" }
deno_cache = { version = "0.32.0", path = "./ext/cache" }
deno_console = { version = "0.100.0", path = "./ext/console" }
deno_crypto = { version = "0.114.0", path = "./ext/crypto" }
deno_fetch = { version = "0.124.0", path = "./ext/fetch" }
deno_ffi = { version = "0.87.0", path = "./ext/ffi" }
deno_fs = { version = "0.10.0", path = "./ext/fs" }
deno_http = { version = "0.95.0", path = "./ext/http" }
deno_io = { version = "0.10.0", path = "./ext/io" }
deno_net = { version = "0.92.0", path = "./ext/net" }
deno_node = { version = "0.37.0", path = "./ext/node" }
deno_kv = { version = "0.8.0", path = "./ext/kv" }
deno_tls = { version = "0.87.0", path = "./ext/tls" }
deno_url = { version = "0.100.0", path = "./ext/url" }
deno_web = { version = "0.131.0", path = "./ext/web" }
deno_webidl = { version = "0.100.0", path = "./ext/webidl" }
deno_websocket = { version = "0.105.0", path = "./ext/websocket" }
deno_webstorage = { version = "0.95.0", path = "./ext/webstorage" }
deno_napi = { version = "0.30.0", path = "./ext/napi" }

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

### 1.33.0 / 2023.04.27

- BREAKING(unstable): remove "Deno.serve(handler, options)" overload (#18759)
- Revert "chore(ext/websocket): Add autobahn|testsuite fuzzingclient (#…
(#18856)
- feat(bench): add `--no-run` flag (#18433)
- feat(cli): don't check permissions for statically analyzable dynamic imports
(#18713)
- feat(cli): flatten deno.json configuaration (#17799)
- feat(ext/ffi): support marking symbols as optional (#18529)
- feat(ext/http): Rework Deno.serve using hyper 1.0-rc3 (#18619)
- feat(ext/kv): add more atomic operation helpers (#18854)
- feat(ext/kv): return ok bool from atomic commit (#18873)
- feat(ext/url): `URL.canParse` (#18286)
- feat(lint): add `Deno.run` to `no-deprecated-deno-api` (#18869)
- feat(node/crypto): Elliptic Curve Diffie-Hellman (ECDH) support (#18832)
- feat(node/http): implement ClientRequest.setTimeout() (#18783)
- feat(task): introduce built-in `unset` command to `deno task` (#18606)
- feat: Deprecate Deno.run API in favor of Deno.Command (#17630) (#18866)
- fix(compile): write bytes directly to output file (#18777)
- fix(core): Wrap safe collections' argument of primordials (#18750)
- fix(coverage): exclude test files (#18748)
- fix(dts): `URLPatternComponentResult` groups should have possibly undefined
key values (#18643)
- fix(ext/node): add crypto.sign|verify methods (#18765)
- fix(ext/node): fix hash.flush (#18818)
- fix(ext/node): implement asymmetric keygen (#18651)
- fix(ext/node): improve vm.runInThisContext (#18767)
- fix(ext/node): prime generation (#18861)
- fix(lsp): show dependency errors for repeated imports (#18807)
- fix(npm): only include top level packages in top level node_modules directory
(#18824)
- fix(test): allow explicit undefined for boolean test options (#18786)
- fix(test): handle dispatched exceptions from test functions (#18853)
- perf(ext/http): avoid spread arg deopt in op_http_wait (#18850)
- perf(ext/http): optimize away code based on callback length (#18849)
- perf(ext/http): optimize for zero or one-packet response streams (#18834)
- perf(ext/http): use smi for slab IDs (#18848)
- perf(ext/websocket): various performance improvements (#18862)

### 1.32.5 / 2023.04.18

- feat(UNSTABLE/kv): AtomicOperation#sum (#18704)
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.93.0"
version = "0.94.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.32.5"
version = "1.33.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 @@ -2,4 +2,4 @@

// WARNING: Ensure this is the only deno_std version reference as this
// is automatically updated by the version bump workflow.
pub const CURRENT_STD_URL_STR: &str = "https://deno.land/std@0.184.0/";
pub const CURRENT_STD_URL_STR: &str = "https://deno.land/std@0.185.0/";
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.29.0"
version = "0.30.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.181.0"
version = "0.182.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.93.0"
version = "0.94.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
Loading

0 comments on commit 39ece1f

Please sign in to comment.