diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-10-17 23:11:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-17 23:11:16 +0200 |
commit | 204c46dcc1dc5d77ecbe4bb0c4b131a5110885bc (patch) | |
tree | f00c84ecfcbe6b7a0e2d48d20feb4af293a05bb7 /ext | |
parent | 9df8d9d83140beb24a53b0ac52b1eaf2ea34c095 (diff) |
chore: forward v1.26.2 to main (#16331)
Co-authored-by: bartlomieju <bartlomieju@users.noreply.github.com>
<!--
Before submitting a PR, please read http://deno.land/manual/contributing
1. Give the PR a descriptive title.
Examples of good title:
- fix(std/http): Fix race condition in server
- docs(console): Update docstrings
- feat(doc): Handle nested reexports
Examples of bad title:
- fix #7123
- update docs
- fix bugs
2. Ensure there is a related issue and it is referenced in the PR text.
3. Ensure there are tests that cover the changes.
4. Ensure `cargo test` passes.
5. Ensure `./tools/format.js` passes without changing files.
6. Ensure `./tools/lint.js` passes.
-->
Co-authored-by: denobot <33910674+denobot@users.noreply.github.com>
Co-authored-by: bartlomieju <bartlomieju@users.noreply.github.com>
Diffstat (limited to 'ext')
-rw-r--r-- | ext/broadcast_channel/Cargo.toml | 4 | ||||
-rw-r--r-- | ext/cache/Cargo.toml | 4 | ||||
-rw-r--r-- | ext/console/Cargo.toml | 4 | ||||
-rw-r--r-- | ext/crypto/Cargo.toml | 6 | ||||
-rw-r--r-- | ext/fetch/Cargo.toml | 6 | ||||
-rw-r--r-- | ext/ffi/Cargo.toml | 4 | ||||
-rw-r--r-- | ext/flash/Cargo.toml | 8 | ||||
-rw-r--r-- | ext/http/Cargo.toml | 6 | ||||
-rw-r--r-- | ext/napi/Cargo.toml | 4 | ||||
-rw-r--r-- | ext/net/Cargo.toml | 6 | ||||
-rw-r--r-- | ext/node/Cargo.toml | 4 | ||||
-rw-r--r-- | ext/tls/Cargo.toml | 4 | ||||
-rw-r--r-- | ext/url/Cargo.toml | 8 | ||||
-rw-r--r-- | ext/web/Cargo.toml | 10 | ||||
-rw-r--r-- | ext/webgpu/Cargo.toml | 4 | ||||
-rw-r--r-- | ext/webidl/Cargo.toml | 4 | ||||
-rw-r--r-- | ext/websocket/Cargo.toml | 6 | ||||
-rw-r--r-- | ext/webstorage/Cargo.toml | 6 |
18 files changed, 49 insertions, 49 deletions
diff --git a/ext/broadcast_channel/Cargo.toml b/ext/broadcast_channel/Cargo.toml index a019f9ccb..45f504350 100644 --- a/ext/broadcast_channel/Cargo.toml +++ b/ext/broadcast_channel/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_broadcast_channel" -version = "0.66.0" +version = "0.67.0" authors = ["the Deno authors"] edition = "2021" license = "MIT" @@ -15,6 +15,6 @@ path = "lib.rs" [dependencies] async-trait = "0.1" -deno_core = { version = "0.154.0", path = "../../core" } +deno_core = { version = "0.155.0", path = "../../core" } tokio = { version = "1.21", features = ["full"] } uuid = { version = "1.0.0", features = ["v4"] } diff --git a/ext/cache/Cargo.toml b/ext/cache/Cargo.toml index 861fb6357..816cca8d7 100644 --- a/ext/cache/Cargo.toml +++ b/ext/cache/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_cache" -version = "0.4.0" +version = "0.5.0" authors = ["the Deno authors"] edition = "2021" license = "MIT" @@ -15,7 +15,7 @@ path = "lib.rs" [dependencies] async-trait = "0.1" -deno_core = { version = "0.154.0", path = "../../core" } +deno_core = { version = "0.155.0", path = "../../core" } rusqlite = { version = "0.28.0", features = ["unlock_notify", "bundled"] } serde = { version = "1.0.129", features = ["derive"] } sha2 = "0.10.2" diff --git a/ext/console/Cargo.toml b/ext/console/Cargo.toml index aa9aa61fa..bf0d761f7 100644 --- a/ext/console/Cargo.toml +++ b/ext/console/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_console" -version = "0.72.0" +version = "0.73.0" authors = ["the Deno authors"] edition = "2021" license = "MIT" @@ -14,4 +14,4 @@ description = "Implementation of Console API for Deno" path = "lib.rs" [dependencies] -deno_core = { version = "0.154.0", path = "../../core" } +deno_core = { version = "0.155.0", path = "../../core" } diff --git a/ext/crypto/Cargo.toml b/ext/crypto/Cargo.toml index 504941600..b8be2a62b 100644 --- a/ext/crypto/Cargo.toml +++ b/ext/crypto/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_crypto" -version = "0.86.0" +version = "0.87.0" authors = ["the Deno authors"] edition = "2021" license = "MIT" @@ -24,8 +24,8 @@ const-oid = "0.9.0" ctr = "0.9.1" # https://github.com/dalek-cryptography/curve25519-dalek/pull/397 curve25519-dalek = "2.1.3" -deno_core = { version = "0.154.0", path = "../../core" } -deno_web = { version = "0.103.0", path = "../web" } +deno_core = { version = "0.155.0", path = "../../core" } +deno_web = { version = "0.104.0", path = "../web" } elliptic-curve = { version = "0.12.1", features = ["std", "pem"] } num-traits = "0.2.14" once_cell = "1.10.0" diff --git a/ext/fetch/Cargo.toml b/ext/fetch/Cargo.toml index 1b6d7c1e6..047817e42 100644 --- a/ext/fetch/Cargo.toml +++ b/ext/fetch/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_fetch" -version = "0.95.0" +version = "0.96.0" authors = ["the Deno authors"] edition = "2021" license = "MIT" @@ -16,8 +16,8 @@ path = "lib.rs" [dependencies] bytes = "1.1.0" data-url = "0.1.1" -deno_core = { version = "0.154.0", path = "../../core" } -deno_tls = { version = "0.59.0", path = "../tls" } +deno_core = { version = "0.155.0", path = "../../core" } +deno_tls = { version = "0.60.0", path = "../tls" } dyn-clone = "1" http = "0.2.6" reqwest = { version = "0.11.11", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli", "socks"] } diff --git a/ext/ffi/Cargo.toml b/ext/ffi/Cargo.toml index bff51205b..5f1e2d991 100644 --- a/ext/ffi/Cargo.toml +++ b/ext/ffi/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_ffi" -version = "0.59.0" +version = "0.60.0" authors = ["the Deno authors"] edition = "2021" license = "MIT" @@ -14,7 +14,7 @@ description = "Dynamic library ffi for deno" path = "lib.rs" [dependencies] -deno_core = { version = "0.154.0", path = "../../core" } +deno_core = { version = "0.155.0", path = "../../core" } dlopen = "0.1.8" dynasmrt = "1.2.3" libffi = "3.0.0" diff --git a/ext/flash/Cargo.toml b/ext/flash/Cargo.toml index 60bd04b7f..4172ed6e4 100644 --- a/ext/flash/Cargo.toml +++ b/ext/flash/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_flash" -version = "0.8.0" +version = "0.9.0" authors = ["the Deno authors"] edition = "2021" license = "MIT" @@ -14,10 +14,10 @@ description = "Fast HTTP/1 server implementation for Deno" path = "lib.rs" [dependencies] -deno_core = { path = "../../core", version = "0.154.0" } -deno_tls = { version = "0.59.0", path = "../tls" } +deno_core = { path = "../../core", version = "0.155.0" } +deno_tls = { version = "0.60.0", path = "../tls" } # For HTTP/2 and websocket upgrades -deno_websocket = { version = "0.77.0", path = "../websocket" } +deno_websocket = { version = "0.78.0", path = "../websocket" } http = "0.2.6" httparse = "1.8" libc = "0.2" diff --git a/ext/http/Cargo.toml b/ext/http/Cargo.toml index b51d8a5af..584bf8354 100644 --- a/ext/http/Cargo.toml +++ b/ext/http/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_http" -version = "0.66.0" +version = "0.67.0" authors = ["the Deno authors"] edition = "2021" license = "MIT" @@ -23,8 +23,8 @@ base64 = "0.13.0" brotli = "3.3.4" bytes = "1" cache_control = "0.2.0" -deno_core = { version = "0.154.0", path = "../../core" } -deno_websocket = { version = "0.77.0", path = "../websocket" } +deno_core = { version = "0.155.0", path = "../../core" } +deno_websocket = { version = "0.78.0", path = "../websocket" } flate2 = "1.0.23" fly-accept-encoding = "0.2.0" hyper = { version = "0.14.18", features = ["server", "stream", "http1", "http2", "runtime"] } diff --git a/ext/napi/Cargo.toml b/ext/napi/Cargo.toml index 7cf2e61bd..6985fdd4b 100644 --- a/ext/napi/Cargo.toml +++ b/ext/napi/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_napi" -version = "0.2.0" +version = "0.3.0" authors = ["the Deno authors"] edition = "2021" license = "MIT" @@ -14,5 +14,5 @@ description = "NAPI implementation for Deno" path = "lib.rs" [dependencies] -deno_core = { version = "0.154.0", path = "../../core" } +deno_core = { version = "0.155.0", path = "../../core" } libloading = { version = "0.7" } diff --git a/ext/net/Cargo.toml b/ext/net/Cargo.toml index f278f69c1..a6871a0cf 100644 --- a/ext/net/Cargo.toml +++ b/ext/net/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_net" -version = "0.64.0" +version = "0.65.0" authors = ["the Deno authors"] edition = "2021" license = "MIT" @@ -14,8 +14,8 @@ description = "Networking for Deno" path = "lib.rs" [dependencies] -deno_core = { version = "0.154.0", path = "../../core" } -deno_tls = { version = "0.59.0", path = "../tls" } +deno_core = { version = "0.155.0", path = "../../core" } +deno_tls = { version = "0.60.0", path = "../tls" } log = "0.4.16" serde = { version = "1.0.136", features = ["derive"] } socket2 = "0.4.4" diff --git a/ext/node/Cargo.toml b/ext/node/Cargo.toml index 0fcf6a921..b3b589311 100644 --- a/ext/node/Cargo.toml +++ b/ext/node/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_node" -version = "0.9.0" +version = "0.10.0" authors = ["the Deno authors"] edition = "2021" license = "MIT" @@ -14,7 +14,7 @@ description = "Node compatibility for Deno" path = "lib.rs" [dependencies] -deno_core = { version = "0.154.0", path = "../../core" } +deno_core = { version = "0.155.0", path = "../../core" } once_cell = "1.12.0" path-clean = "=0.1.0" regex = "1" diff --git a/ext/tls/Cargo.toml b/ext/tls/Cargo.toml index 6427d8148..81ce330c3 100644 --- a/ext/tls/Cargo.toml +++ b/ext/tls/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_tls" -version = "0.59.0" +version = "0.60.0" authors = ["the Deno authors"] edition = "2021" license = "MIT" @@ -14,7 +14,7 @@ description = "TLS for Deno" path = "lib.rs" [dependencies] -deno_core = { version = "0.154.0", path = "../../core" } +deno_core = { version = "0.155.0", path = "../../core" } once_cell = "1.10.0" rustls = { version = "0.20.5", features = ["dangerous_configuration"] } rustls-native-certs = "0.6.2" diff --git a/ext/url/Cargo.toml b/ext/url/Cargo.toml index 51249cf4f..e10cfa6c8 100644 --- a/ext/url/Cargo.toml +++ b/ext/url/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_url" -version = "0.72.0" +version = "0.73.0" authors = ["the Deno authors"] edition = "2021" license = "MIT" @@ -14,14 +14,14 @@ description = "URL API implementation for Deno" path = "lib.rs" [dependencies] -deno_core = { version = "0.154.0", path = "../../core" } +deno_core = { version = "0.155.0", path = "../../core" } serde = { version = "1.0.136", features = ["derive"] } serde_repr = "0.1.7" urlpattern = "0.2.0" [dev-dependencies] -deno_bench_util = { version = "0.66.0", path = "../../bench_util" } -deno_webidl = { version = "0.72.0", path = "../webidl" } +deno_bench_util = { version = "0.67.0", path = "../../bench_util" } +deno_webidl = { version = "0.73.0", path = "../webidl" } [[bench]] name = "url_ops" diff --git a/ext/web/Cargo.toml b/ext/web/Cargo.toml index dde2a2c01..3be31fca0 100644 --- a/ext/web/Cargo.toml +++ b/ext/web/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_web" -version = "0.103.0" +version = "0.104.0" authors = ["the Deno authors"] edition = "2021" license = "MIT" @@ -16,7 +16,7 @@ path = "lib.rs" [dependencies] async-trait = "0.1.51" base64-simd = "0.7" -deno_core = { version = "0.154.0", path = "../../core" } +deno_core = { version = "0.155.0", path = "../../core" } encoding_rs = "0.8.31" flate2 = "1" serde = "1.0.136" @@ -24,9 +24,9 @@ tokio = { version = "1.21", features = ["full"] } uuid = { version = "1.0.0", features = ["v4", "serde"] } [dev-dependencies] -deno_bench_util = { version = "0.66.0", path = "../../bench_util" } -deno_url = { version = "0.72.0", path = "../url" } -deno_webidl = { version = "0.72.0", path = "../webidl" } +deno_bench_util = { version = "0.67.0", path = "../../bench_util" } +deno_url = { version = "0.73.0", path = "../url" } +deno_webidl = { version = "0.73.0", path = "../webidl" } [[bench]] name = "encoding" diff --git a/ext/webgpu/Cargo.toml b/ext/webgpu/Cargo.toml index 736be332f..61fa6dc83 100644 --- a/ext/webgpu/Cargo.toml +++ b/ext/webgpu/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_webgpu" -version = "0.73.0" +version = "0.74.0" authors = ["the Deno authors"] edition = "2021" license = "MIT" @@ -11,7 +11,7 @@ repository = "https://github.com/gfx-rs/wgpu" description = "WebGPU implementation for Deno" [dependencies] -deno_core = { version = "0.154.0", path = "../../core" } +deno_core = { version = "0.155.0", path = "../../core" } serde = { version = "1.0", features = ["derive"] } tokio = { version = "1.21", features = ["full"] } wgpu-core = { version = "0.13", features = ["trace", "replay", "serde"] } diff --git a/ext/webidl/Cargo.toml b/ext/webidl/Cargo.toml index bd4549bb8..cd900686e 100644 --- a/ext/webidl/Cargo.toml +++ b/ext/webidl/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_webidl" -version = "0.72.0" +version = "0.73.0" authors = ["the Deno authors"] edition = "2021" license = "MIT" @@ -14,4 +14,4 @@ description = "WebIDL implementation for Deno" path = "lib.rs" [dependencies] -deno_core = { version = "0.154.0", path = "../../core" } +deno_core = { version = "0.155.0", path = "../../core" } diff --git a/ext/websocket/Cargo.toml b/ext/websocket/Cargo.toml index a0d0aebe6..82a6c5e28 100644 --- a/ext/websocket/Cargo.toml +++ b/ext/websocket/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_websocket" -version = "0.77.0" +version = "0.78.0" authors = ["the Deno authors"] edition = "2021" license = "MIT" @@ -14,8 +14,8 @@ description = "Implementation of WebSocket API for Deno" path = "lib.rs" [dependencies] -deno_core = { version = "0.154.0", path = "../../core" } -deno_tls = { version = "0.59.0", path = "../tls" } +deno_core = { version = "0.155.0", path = "../../core" } +deno_tls = { version = "0.60.0", path = "../tls" } http = "0.2.6" hyper = { version = "0.14.18" } serde = { version = "1.0.136", features = ["derive"] } diff --git a/ext/webstorage/Cargo.toml b/ext/webstorage/Cargo.toml index 2eddceb24..7055f6545 100644 --- a/ext/webstorage/Cargo.toml +++ b/ext/webstorage/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_webstorage" -version = "0.67.0" +version = "0.68.0" authors = ["the Deno authors"] edition = "2021" license = "MIT" @@ -14,7 +14,7 @@ description = "Implementation of WebStorage API for Deno" path = "lib.rs" [dependencies] -deno_core = { version = "0.154.0", path = "../../core" } -deno_web = { version = "0.103.0", path = "../web" } +deno_core = { version = "0.155.0", path = "../../core" } +deno_web = { version = "0.104.0", path = "../web" } rusqlite = { version = "0.28.0", features = ["unlock_notify", "bundled"] } serde = { version = "1.0.136", features = ["derive"] } |