From 60b8c2765be6438338a35bfc4dd437b180f21a7e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Aug 2022 10:07:30 -0700 Subject: [PATCH] Bump serde_yaml from 0.9.2 to 0.9.9 in /packer (#3998) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Summary: Bumps [serde_yaml](https://github.com/dtolnay/serde-yaml) from 0.9.2 to 0.9.9.
Release notes

Sourced from serde_yaml's releases.

0.9.9

0.9.8

0.9.7

0.9.6

0.9.5

0.9.4

0.9.3

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=serde_yaml&package-manager=cargo&previous-version=0.9.2&new-version=0.9.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)
Pull Request resolved: https://github.com/facebook/flipper/pull/3998 Reviewed By: mweststrate Differential Revision: D38781660 Pulled By: passy fbshipit-source-id: e8d92a9f89e264438f61dfc08a7ee5c25648eeb9 --- packer/Cargo.lock | 8 ++++---- packer/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/packer/Cargo.lock b/packer/Cargo.lock index 6ff24eaf9..d192da77d 100644 --- a/packer/Cargo.lock +++ b/packer/Cargo.lock @@ -664,9 +664,9 @@ dependencies = [ [[package]] name = "serde_yaml" -version = "0.9.2" +version = "0.9.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "826f989c0f374733af6c286f4822f293bc738def07e2782dc1cbb899960a504a" +checksum = "f50845f68d5c693aac7d72a25415ddd21cb8182c04eafe447b73af55a05f9e1b" dependencies = [ "indexmap", "itoa", @@ -801,9 +801,9 @@ checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3" [[package]] name = "unsafe-libyaml" -version = "0.2.1" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9dc1c637311091be28e5d462c07db78081e5828da80ba22605c81c4ad6f7f813" +checksum = "931179334a56395bcf64ba5e0ff56781381c1a5832178280c7d7f91d1679aeb0" [[package]] name = "version_check" diff --git a/packer/Cargo.toml b/packer/Cargo.toml index 66de21b94..88a1ee92b 100644 --- a/packer/Cargo.toml +++ b/packer/Cargo.toml @@ -14,7 +14,7 @@ clap = { version = "^3", features = ["derive", "cargo"] } shellexpand = "^2" tar = "0.4.38" serde = { version = "^1", features = ["derive"] } -serde_yaml = "0.9.2" +serde_yaml = "0.9.9" anyhow = "^1" sha2 = "0.10.2" data-encoding = "^2"