From 0392d4003e21df859a297c1e9fbe8095924d8169 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jesper=20H=C3=A5kansson?= Date: Sat, 17 Jun 2023 11:58:07 +0200 Subject: [PATCH] 0.12.0 --- CHANGELOG.md | 114 +++++++++++++++ Cargo.lock | 226 ++++++++--------------------- Cargo.toml | 4 +- docs/index.html | 6 +- npm/package.json | 2 +- src/test/webdriver/chromedriver.rs | 2 +- 6 files changed, 184 insertions(+), 170 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c50c6b4..69624cba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,120 @@ ## 🤍 Unreleased +## ☀️ 0.12.0 + +- ### ✨ Features + + - **Add --no-pack flag to build command - [hamza1311], [ashleygwilliams], [issue/691], [issue/811], [pull/695], [pull/1291]** + + When calling wasm-pack build a user can optionally pass --no-pack and wasm-pack will build your wasm, generate js, and not build a package.json. + + [issue/691]: https://github.com/rustwasm/wasm-pack/issues/691 + [issue/811]: https://github.com/rustwasm/wasm-pack/issues/811 + [pull/695]: https://github.com/rustwasm/wasm-pack/pull/695 + [pull/1291]: https://github.com/rustwasm/wasm-pack/pull/1291 + [ashleygwilliams]: https://github.com/ashleygwilliams + + - **Add wasmbindgen option: omit_default_module_path - [matthiasgeihs], [pull/1272]** + + Adds an option to call wasm-bindgen with --omit_default_module_path. + + [pull/1272]: https://github.com/rustwasm/wasm-pack/pull/1272 + [matthiasgeihs]: https://github.com/matthiasgeihs + +- ### 🤕 Fixes + + - **Add HTTP header USER-AGENT - [LeviticusNelson], [issue/1266], [pull/1285]** + + We encountered some issues when we didn't send an User-Agent. This is now fixed. + + [issue/1266]: https://github.com/rustwasm/wasm-pack/issues/1266 + [pull/1285]: https://github.com/rustwasm/wasm-pack/pull/1285 + [LeviticusNelson]: https://github.com/LeviticusNelson + + - **Replace curl with ureq - [hamza1311], [issue/650], [issue/823], [issue/997], [issue/1079], [issue/1203], [issue/1234], [issue/1281], [pull/1290]** + + The HTTP client is now pure Rust. Removes the dependency of openssl which have caused a lot of issues for people using wasm-pack on various distributions. + + [issue/650]: https://github.com/rustwasm/wasm-pack/issues/650 + [issue/823]: https://github.com/rustwasm/wasm-pack/issues/823 + [issue/997]: https://github.com/rustwasm/wasm-pack/issues/997 + [issue/1079]: https://github.com/rustwasm/wasm-pack/issues/1079 + [issue/1203]: https://github.com/rustwasm/wasm-pack/issues/1203 + [issue/1234]: https://github.com/rustwasm/wasm-pack/issues/1234 + [issue/1281]: https://github.com/rustwasm/wasm-pack/issues/1281 + [pull/1290]: https://github.com/rustwasm/wasm-pack/pull/1290 + [hamza1311]: https://github.com/hamza1311 + + - **Update binary-install to 0.2.0. binary-install replaced curl with ureq - [drager]** + + See [PR](https://github.com/rustwasm/binary-install/pull/24) in binary-install repo for more information. + + [drager]: https://github.com/drager + + - **Remove --always-auth from npm login - [EstebanBorai], [pull/1288]** + + npm login doesn't support --always-auth anymore, instead it is under the adduser subcommand. + + [pull/1288]: https://github.com/rustwasm/wasm-pack/pull/1288 + [EstebanBorai]: https://github.com/EstebanBorai + + - **Turn off cargo colors during log level test - [dtolnay], [pull/1294]** + + [pull/1294]: https://github.com/rustwasm/wasm-pack/pull/1294 + [dtolnay]: https://github.com/dtolnay + + - **Fix getting the target-dir in wasm_bindgen_build - [tomasol], [issue/1278], [pull/1279]** + + Fixes a wasm-pack panic if --target-dir was supplied (and arguments are not sorted). + + [issue/1278]: https://github.com/rustwasm/wasm-pack/issues/1278 + [pull/1279]: https://github.com/rustwasm/wasm-pack/pull/1279 + [tomasol]: https://github.com/tomasol + + - **Respect package.readme in Cargo.toml - [heaths], [issue/1215], [pull/1298], [pull/1216]** + + wasm-pack now respects specifying readme=false: + + ```toml + [package] + readme = false + ``` + + [issue/1215]: https://github.com/rustwasm/wasm-pack/issues/1215 + [pull/1298]: https://github.com/rustwasm/wasm-pack/pull/1298 + [pull/1216]: https://github.com/rustwasm/wasm-pack/pull/1216 + [heaths]: https://github.com/heaths + +- ### 📖 Documentation + + - **Don't hide install options behind link - [oyamauchi], [issue/355], [pull/1242]** + + [issue/355]: https://github.com/rustwasm/wasm-pack/issues/355 + [pull/1242]: https://github.com/rustwasm/wasm-pack/issues/1242 + [oyamauchi]: https://github.com/oyamauchi + +- ### 🛠️ Maintenance + + - **Bump cargo-generate version to 0.18.2 - [sassman], [issue/1245] [pull/1269]** + + [issue/1245]: https://github.com/rustwasm/wasm-pack/issues/1245 + [pull/1269]: https://github.com/rustwasm/wasm-pack/pull/1269 + [sassman]: https://github.com/sassman + + - **Replace unmaintained actions-rs/toolchain action in CI workflows - [striezel], [pull/1246]** + + Now we are using https://github.com/dtolnay/rust-toolchain instead. + + [pull/1246]: https://github.com/rustwasm/wasm-pack/pull/1246 + [striezel]: https://github.com/striezel + + - **Update several dependencies - [hamza1311], [pull/1292]** + + Updated clap, toml, predicates and serial_test to their latest versions. + + [pull/1292]: https://github.com/rustwasm/wasm-pack/pull/1292 + ## 🌦️ 0.11.1 - ### 🤕 Fixes diff --git a/Cargo.lock b/Cargo.lock index 1f1599c6..4517d151 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -156,9 +156,9 @@ dependencies = [ [[package]] name = "base64" -version = "0.13.1" +version = "0.21.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" +checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d" [[package]] name = "base64ct" @@ -168,12 +168,11 @@ checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" [[package]] name = "binary-install" -version = "0.1.0" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "803f66374c8ed72df7f69451751560fe4bd5681ec96e0e0a21457c30b46482c8" +checksum = "93bff426ff93f3610dd2b946f3eb8cb2d1285ca8682834d43be531a3f93db2ff" dependencies = [ "anyhow", - "curl", "dirs-next", "flate2", "fs2", @@ -181,6 +180,7 @@ dependencies = [ "is_executable", "siphasher", "tar", + "ureq", "zip", ] @@ -318,9 +318,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.3.3" +version = "4.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca8f255e4b8027970e78db75e78831229c9815fdbfa67eb1a1b777a62e24b4a0" +checksum = "80672091db20273a15cf9fdd4e47ed43b5091ec9841bf4c6145c9dfbbcae09ed" dependencies = [ "clap_builder", "clap_derive", @@ -329,9 +329,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.3.3" +version = "4.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "acd4f3c17c83b0ba34ffbc4f8bbd74f079413f747f84a6f89292f138057e36ab" +checksum = "c1458a1df40e1e2afebb7ab60ce55c1fa8f431146205aa5f4887e0b111c27636" dependencies = [ "anstream", "anstyle", @@ -391,9 +391,9 @@ checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" [[package]] name = "cpufeatures" -version = "0.2.7" +version = "0.2.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e4c1eaa2012c47becbbad2ab175484c2a84d1185b566fb2cc5b8707343dfe58" +checksum = "03e69e28e9f7f77debdedbaafa2866e1de9ba56df55a8bd7cfc724c25a09987c" dependencies = [ "libc", ] @@ -409,9 +409,9 @@ dependencies = [ [[package]] name = "crossbeam-utils" -version = "0.8.15" +version = "0.8.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b" +checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" dependencies = [ "cfg-if", ] @@ -426,36 +426,6 @@ dependencies = [ "typenum", ] -[[package]] -name = "curl" -version = "0.4.44" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "509bd11746c7ac09ebd19f0b17782eae80aadee26237658a6b4808afb5c11a22" -dependencies = [ - "curl-sys", - "libc", - "openssl-probe", - "openssl-sys", - "schannel", - "socket2", - "winapi", -] - -[[package]] -name = "curl-sys" -version = "0.4.63+curl-8.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aeb0fef7046022a1e2ad67a004978f0e3cacb9e3123dc62ce768f92197b771dc" -dependencies = [ - "cc", - "libc", - "libz-sys", - "openssl-sys", - "pkg-config", - "vcpkg", - "winapi", -] - [[package]] name = "dashmap" version = "5.4.0" @@ -726,9 +696,9 @@ dependencies = [ [[package]] name = "gimli" -version = "0.27.2" +version = "0.27.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ad0a93d233ebf96623465aad4046a8d3aa4da22d4f4beba5388838c8a434bbb4" +checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e" [[package]] name = "glob" @@ -780,9 +750,9 @@ dependencies = [ [[package]] name = "human-panic" -version = "1.1.4" +version = "1.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c16465f6227e18e5a64eba488245d7b2974d4db0c4404ca5a69b550defa18d0a" +checksum = "38a841f87949b0dd751864e769a870be79dc34abcee1cf31d737a61d498b22b6" dependencies = [ "anstream", "anstyle", @@ -913,9 +883,9 @@ dependencies = [ [[package]] name = "js-sys" -version = "0.3.63" +version = "0.3.64" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f37a4a5928311ac501dee68b3c7613a1037d0edb30c8e5427bd832d55d1b790" +checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" dependencies = [ "wasm-bindgen", ] @@ -932,18 +902,6 @@ version = "0.2.146" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f92be4933c13fd498862a9e02a3055f8a8d9c039ce33db97306fd5a6caa7f29b" -[[package]] -name = "libz-sys" -version = "1.1.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56ee889ecc9568871456d42f603d6a0ce59ff328d291063a45cbdf0036baf6db" -dependencies = [ - "cc", - "libc", - "pkg-config", - "vcpkg", -] - [[package]] name = "linux-raw-sys" version = "0.3.8" @@ -962,9 +920,9 @@ dependencies = [ [[package]] name = "log" -version = "0.4.18" +version = "0.4.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "518ef76f2f87365916b142844c16d8fefd85039bc5699050210a7778ee1cd1de" +checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4" [[package]] name = "memchr" @@ -1020,24 +978,6 @@ version = "1.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" -[[package]] -name = "openssl-probe" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" - -[[package]] -name = "openssl-sys" -version = "0.9.88" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c2ce0f250f34a308dcfdbb351f511359857d4ed2134ba715a4eadd46e1ffd617" -dependencies = [ - "cc", - "libc", - "pkg-config", - "vcpkg", -] - [[package]] name = "os_info" version = "3.7.0" @@ -1249,9 +1189,9 @@ checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" [[package]] name = "rustix" -version = "0.37.19" +version = "0.37.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "acf8729d8542766f1b2cf77eb034d52f40d375bb8b615d0b147089946e16613d" +checksum = "b96e891d04aa506a6d1f318d2771bcb1c7dfda84e126660ace067c9b474bb2c0" dependencies = [ "bitflags", "errno", @@ -1263,14 +1203,24 @@ dependencies = [ [[package]] name = "rustls" -version = "0.20.8" +version = "0.21.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f" +checksum = "e32ca28af694bc1bbf399c33a516dbdf1c90090b8ab23c2bc24f834aa2247f5f" dependencies = [ "log", "ring", + "rustls-webpki", "sct", - "webpki", +] + +[[package]] +name = "rustls-webpki" +version = "0.100.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d6207cd5ed3d8dca7816f8f3725513a34609c0c765bf652b8c3cb4cfd87db46b" +dependencies = [ + "ring", + "untrusted", ] [[package]] @@ -1288,15 +1238,6 @@ dependencies = [ "winapi-util", ] -[[package]] -name = "schannel" -version = "0.1.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3" -dependencies = [ - "windows-sys 0.42.0", -] - [[package]] name = "scopeguard" version = "1.1.0" @@ -1353,9 +1294,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.96" +version = "1.0.93" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1" +checksum = "cad406b69c91885b5107daf2c29572f6c8cdb3c66826821e286c533490c0bc76" dependencies = [ "itoa", "ryu", @@ -1409,9 +1350,9 @@ dependencies = [ [[package]] name = "sha2" -version = "0.10.6" +version = "0.10.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0" +checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8" dependencies = [ "cfg-if", "cpufeatures", @@ -1445,16 +1386,6 @@ version = "1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" -[[package]] -name = "socket2" -version = "0.4.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" -dependencies = [ - "libc", - "winapi", -] - [[package]] name = "spin" version = "0.5.2" @@ -1652,19 +1583,19 @@ checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" [[package]] name = "ureq" -version = "2.6.2" +version = "2.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "338b31dd1314f68f3aabf3ed57ab922df95ffcd902476ca7ba3c4ce7b908c46d" +checksum = "d4b45063f47caea744e48f5baa99169bd8bd9b882d80a99941141327bbb00f99" dependencies = [ "base64", "flate2", "log", "once_cell", "rustls", + "rustls-webpki", "serde", "serde_json", "url", - "webpki", "webpki-roots", ] @@ -1687,19 +1618,13 @@ checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" [[package]] name = "uuid" -version = "1.3.3" +version = "1.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "345444e32442451b267fc254ae85a209c64be56d2890e601a0c37ff0c3c5ecd2" +checksum = "0fa2982af2eec27de306107c027578ff7f423d65f7250e40ce0fea8f45248b81" dependencies = [ "getrandom", ] -[[package]] -name = "vcpkg" -version = "0.2.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" - [[package]] name = "version_check" version = "0.9.4" @@ -1739,9 +1664,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" [[package]] name = "wasm-bindgen" -version = "0.2.86" +version = "0.2.87" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5bba0e8cb82ba49ff4e229459ff22a191bbe9a1cb3a341610c9c33efc27ddf73" +checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342" dependencies = [ "cfg-if", "wasm-bindgen-macro", @@ -1749,9 +1674,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-backend" -version = "0.2.86" +version = "0.2.87" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19b04bc93f9d6bdee709f6bd2118f57dd6679cf1176a1af464fca3ab0d66d8fb" +checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd" dependencies = [ "bumpalo", "log", @@ -1764,9 +1689,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro" -version = "0.2.86" +version = "0.2.87" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "14d6b024f1a526bb0234f52840389927257beb670610081360e5a03c5df9c258" +checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d" dependencies = [ "quote", "wasm-bindgen-macro-support", @@ -1774,9 +1699,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.86" +version = "0.2.87" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e128beba882dd1eb6200e1dc92ae6c5dbaa4311aa7bb211ca035779e5efc39f8" +checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" dependencies = [ "proc-macro2", "quote", @@ -1787,13 +1712,13 @@ dependencies = [ [[package]] name = "wasm-bindgen-shared" -version = "0.2.86" +version = "0.2.87" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed9d5b4305409d1fc9482fee2d7f9bcbf24b3972bf59817ef757e23982242a93" +checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" [[package]] name = "wasm-pack" -version = "0.11.1" +version = "0.12.0" dependencies = [ "anyhow", "assert_cmd", @@ -1828,31 +1753,21 @@ dependencies = [ [[package]] name = "web-sys" -version = "0.3.63" +version = "0.3.64" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3bdd9ef4e984da1187bf8110c5cf5b845fbc87a23602cdf912386a76fcd3a7c2" +checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" dependencies = [ "js-sys", "wasm-bindgen", ] -[[package]] -name = "webpki" -version = "0.22.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd" -dependencies = [ - "ring", - "untrusted", -] - [[package]] name = "webpki-roots" -version = "0.22.6" +version = "0.23.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87" +checksum = "b03058f88386e5ff5310d9111d53f48b17d732b401aeb83a8d5190f2ac459338" dependencies = [ - "webpki", + "rustls-webpki", ] [[package]] @@ -1906,21 +1821,6 @@ dependencies = [ "windows-targets 0.48.0", ] -[[package]] -name = "windows-sys" -version = "0.42.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" -dependencies = [ - "windows_aarch64_gnullvm 0.42.2", - "windows_aarch64_msvc 0.42.2", - "windows_i686_gnu 0.42.2", - "windows_i686_msvc 0.42.2", - "windows_x86_64_gnu 0.42.2", - "windows_x86_64_gnullvm 0.42.2", - "windows_x86_64_msvc 0.42.2", -] - [[package]] name = "windows-sys" version = "0.45.0" @@ -2055,9 +1955,9 @@ checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" [[package]] name = "winnow" -version = "0.4.6" +version = "0.4.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61de7bac303dc551fe038e2b3cef0f571087a47571ea6e79a87692ac99b99699" +checksum = "ca0ace3845f0d96209f0375e6d367e3eb87eb65d27d445bdc9f1843a26f39448" dependencies = [ "memchr", ] diff --git a/Cargo.toml b/Cargo.toml index 181e3293..97261694 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "wasm-pack" description = "📦✨ your favorite rust -> wasm workflow tool!" -version = "0.11.1" +version = "0.12.0" authors = ["Ashley Williams ", "Jesper Håkansson "] repository = "https://github.com/rustwasm/wasm-pack.git" license = "MIT OR Apache-2.0" @@ -13,7 +13,7 @@ documentation = "https://rustwasm.github.io/wasm-pack/" [dependencies] anyhow = "1.0.68" atty = "0.2.14" -binary-install = "0.1.0" +binary-install = "0.2.0" cargo_metadata = "0.15.2" chrono = "0.4.23" console = "0.15.5" diff --git a/docs/index.html b/docs/index.html index 57b688b6..a3240af4 100644 --- a/docs/index.html +++ b/docs/index.html @@ -42,9 +42,9 @@

wasm-pack

📦✨ your favorite rust -> wasm workflow tool!

- ✨ Install wasm-pack 0.11.1 ✨ -

11 May 2023 | - + ✨ Install wasm-pack 0.12.0 ✨ +

17 June 2023 | + Release Notes

diff --git a/npm/package.json b/npm/package.json index d091fd25..a473a55b 100644 --- a/npm/package.json +++ b/npm/package.json @@ -1,6 +1,6 @@ { "name": "wasm-pack", - "version": "0.11.1", + "version": "0.12.0", "description": "📦✨ your favorite rust -> wasm workflow tool!", "main": "binary.js", "scripts": { diff --git a/src/test/webdriver/chromedriver.rs b/src/test/webdriver/chromedriver.rs index 5aa123e8..95689b4b 100644 --- a/src/test/webdriver/chromedriver.rs +++ b/src/test/webdriver/chromedriver.rs @@ -9,7 +9,7 @@ use std::path::PathBuf; // Keep it up to date with each `wasm-pack` release. // https://chromedriver.storage.googleapis.com/LATEST_RELEASE -const DEFAULT_CHROMEDRIVER_VERSION: &str = "113.0.5672.63"; +const DEFAULT_CHROMEDRIVER_VERSION: &str = "114.0.5735.90"; const CHROMEDRIVER_LAST_UPDATED_STAMP: &str = "chromedriver_last_updated"; const CHROMEDRIVER_VERSION_STAMP: &str = "chromedriver_version";