Merge pull request #1148 from rustwasm/0.10.3

0.10.3
master
Jesper Håkansson 3 years ago committed by GitHub
commit 23da178499
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 45
      CHANGELOG.md
  2. 443
      Cargo.lock
  3. 2
      Cargo.toml
  4. 6
      docs/index.html
  5. 2
      npm/package.json
  6. 2
      src/test/webdriver/chromedriver.rs
  7. 2
      src/test/webdriver/geckodriver.rs

@ -2,6 +2,51 @@
## 🤍 Unreleased
## 🌦 0.10.3
- ### 🤕 Fixes
- **Use bash to create release tarballs - [nasso], [issue/1097] [pull/1144]**
Fixes Windows installer failure due to malformatted tar.
[pull/1144]: https://github.com/rustwasm/wasm-pack/pull/1144
[issue/1097]: https://github.com/rustwasm/wasm-pack/issues/1097
[nasso]: https://github.com/nasso
- **Clean up package.json from previous runs - [main--], [issue/1110-comment] [pull/1119]**
Remove the package.json file from previous runs to avoid crashes.
[pull/1119]: https://github.com/rustwasm/wasm-pack/pull/1119
[issue/1110-comment]: https://github.com/rustwasm/wasm-pack/pull/1110#issuecomment-1059008962
[main--]: https://github.com/main--
- **Do not remove the pkg directory - [huntc], [issue/1099] [pull/1110]**
A recent change ensured that the pkg directory was removed as the first step of attempting to create it.
Unfortunately, this caused a problem for webpack when watching the pkg directory.
Webpack was unable to recover its watching and so any watch server must be restarted,
which is a blocker when using it. This PR and release fixes this.
[pull/1110]: https://github.com/rustwasm/wasm-pack/pull/1110
[issue/1099]: https://github.com/rustwasm/wasm-pack/issues/1099
[huntc]: https://github.com/huntc
- **Bump regex from 1.5.4 to 1.5.6 - [dependabot], [pull/1147]**
Version 1.5.5 of the regex crate fixed a security bug in the regex compiler.
[pull/1147]: https://github.com/rustwasm/wasm-pack/pull/1147
- **Bump openssl-src from 111.17.0+1.1.1m to 111.20.0+1.1.1o - [dependabot], [pull/1146]**
Bring in bug fixes from the new version of openssl-src.
[pull/1146]: https://github.com/rustwasm/wasm-pack/pull/1146
[dependabot]: https://github.com/apps/dependabot
## 🌦 0.10.2
- ### ✨ Features

443
Cargo.lock generated

File diff suppressed because it is too large Load Diff

@ -1,7 +1,7 @@
[package]
name = "wasm-pack"
description = "📦✨ your favorite rust -> wasm workflow tool!"
version = "0.10.2"
version = "0.10.3"
authors = ["Ashley Williams <ashley666ashley@gmail.com>", "Jesper Håkansson <jesper@jesperh.se>"]
repository = "https://github.com/rustwasm/wasm-pack.git"
license = "MIT/Apache-2.0"

@ -42,9 +42,9 @@
<h2>📦✨ your favorite rust -> wasm workflow tool!</h2>
</div>
<div class="five columns" id="installer">
<a class="button button-primary" href="/wasm-pack/installer">✨ Install wasm-pack 0.10.2</a>
<p>16 Dec 2021 |
<a href="https://github.com/rustwasm/wasm-pack/releases/tag/v0.10.2">
<a class="button button-primary" href="/wasm-pack/installer">✨ Install wasm-pack 0.10.3</a>
<p>13 June 2022 |
<a href="https://github.com/rustwasm/wasm-pack/releases/tag/v0.10.3">
Release Notes
</a>
</p>

@ -1,6 +1,6 @@
{
"name": "wasm-pack",
"version": "0.10.2",
"version": "0.10.3",
"description": "📦✨ your favorite rust -> wasm workflow tool!",
"main": "binary.js",
"scripts": {

@ -9,7 +9,7 @@ use target;
// Keep it up to date with each `wasm-pack` release.
// https://chromedriver.storage.googleapis.com/LATEST_RELEASE
const DEFAULT_CHROMEDRIVER_VERSION: &str = "96.0.4664.45";
const DEFAULT_CHROMEDRIVER_VERSION: &str = "102.0.5005.61";
const CHROMEDRIVER_LAST_UPDATED_STAMP: &str = "chromedriver_last_updated";
const CHROMEDRIVER_VERSION_STAMP: &str = "chromedriver_version";

@ -9,7 +9,7 @@ use target;
// Keep it up to date with each `wasm-pack` release.
// https://github.com/mozilla/geckodriver/releases/latest
const DEFAULT_GECKODRIVER_VERSION: &str = "v0.30.0";
const DEFAULT_GECKODRIVER_VERSION: &str = "v0.31.0";
const DEFAULT_WINDOWS_GECKODRIVER_VERSION: &str = "v0.24.0";
const GECKODRIVER_LAST_UPDATED_STAMP: &str = "geckodriver_last_updated";

Loading…
Cancel
Save