From f6e189e62886711c30a68fc8f37adc9e095877a2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 21 Oct 2022 15:45:30 +0000 Subject: [PATCH] Bump getrandom from 0.2.7 to 0.2.8 (#2359) Bumps [getrandom](https://github.com/rust-random/getrandom) from 0.2.7 to 0.2.8.
Changelog

Sourced from getrandom's changelog.

[0.2.8] - 2022-10-20

Changed

Added

Fixed

Documentation

#284: rust-random/getrandom#284 #295: rust-random/getrandom#295 #272: rust-random/getrandom#272 #270: rust-random/getrandom#270 #280: rust-random/getrandom#280 #278: rust-random/getrandom#278 #276: rust-random/getrandom#276

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=getrandom&package-manager=cargo&previous-version=0.2.7&new-version=0.2.8)](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 2fe6fb3c9e..b2e349f470 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -660,9 +660,9 @@ dependencies = [ [[package]] name = "getrandom" -version = "0.2.7" +version = "0.2.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6" +checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" dependencies = [ "cfg-if", "js-sys", diff --git a/boa_wasm/Cargo.toml b/boa_wasm/Cargo.toml index 60b15212ef..d5a0205ce9 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"] } wasm-bindgen = "0.2.83" -getrandom = { version = "0.2.7", features = ["js"] } +getrandom = { version = "0.2.8", features = ["js"] } [lib] crate-type = ["cdylib", "lib"]