From 12974ec800270b9c295f952c74acb06688c18ee6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 7 Apr 2023 15:02:45 +0000 Subject: [PATCH] Bump getrandom from 0.2.8 to 0.2.9 (#2792) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [getrandom](https://github.com/rust-random/getrandom) from 0.2.8 to 0.2.9.
Changelog

Sourced from getrandom's changelog.

[0.2.9] - 2023-04-03

Added

Breaking Changes

Fixed

Changed

#282: rust-random/getrandom#282 #291: rust-random/getrandom#291 #301: rust-random/getrandom#301 #303: rust-random/getrandom#303 #307: rust-random/getrandom#307 #310: rust-random/getrandom#310 #312: rust-random/getrandom#312 #315: rust-random/getrandom#315 #317: rust-random/getrandom#317 #325: rust-random/getrandom#325 #326: rust-random/getrandom#326 #331: rust-random/getrandom#331 #332: rust-random/getrandom#332 #333: rust-random/getrandom#333 #334: rust-random/getrandom#334 #335: rust-random/getrandom#335 #337: rust-random/getrandom#337 #344: rust-random/getrandom#344 #347: rust-random/getrandom#347

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=getrandom&package-manager=cargo&previous-version=0.2.8&new-version=0.2.9)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
--- Cargo.lock | 4 ++-- boa_wasm/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 53cd1e3a87..ac33f2a95a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1661,9 +1661,9 @@ dependencies = [ [[package]] name = "getrandom" -version = "0.2.8" +version = "0.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" +checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4" dependencies = [ "cfg-if 1.0.0", "js-sys", diff --git a/boa_wasm/Cargo.toml b/boa_wasm/Cargo.toml index 31528450e2..58835a8f3f 100644 --- a/boa_wasm/Cargo.toml +++ b/boa_wasm/Cargo.toml @@ -14,7 +14,7 @@ rust-version.workspace = true [dependencies] boa_engine = { workspace = true, features = ["console", "annex-b"] } wasm-bindgen = "0.2.84" -getrandom = { version = "0.2.8", features = ["js"] } +getrandom = { version = "0.2.9", features = ["js"] } [lib] crate-type = ["cdylib", "lib"]