-
Notifications
You must be signed in to change notification settings - Fork 285
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(cactus-core-api): address CVE-2021-38192 - GHSA-x4qm-mcjq-v2gf
Performs a minor semver upgrades to tonic, tonic-build and prost so that the vulnerable version of prost-types is no longer in the dependency tree. Fixes #2612 Signed-off-by: Peter Somogyvari <peter.somogyvari@accenture.com>
- Loading branch information
Showing
8 changed files
with
606 additions
and
633 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 17 additions & 5 deletions
22
packages/cactus-core-api/src/main/rust/generated/proto-rs/common.ack.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 10 additions & 10 deletions
20
packages/cactus-core-api/src/main/rust/generated/proto-rs/common.query.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
/// the payload to define the data that is being requested | ||
#[derive(Clone, PartialEq, ::prost::Message, serde::Serialize, serde::Deserialize)] | ||
#[derive(serde::Serialize, serde::Deserialize, Clone, PartialEq, ::prost::Message)] | ||
pub struct Query { | ||
#[prost(string, repeated, tag = "1")] | ||
pub policy: ::std::vec::Vec<std::string::String>, | ||
pub policy: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, | ||
#[prost(string, tag = "2")] | ||
pub address: std::string::String, | ||
pub address: ::prost::alloc::string::String, | ||
#[prost(string, tag = "3")] | ||
pub requesting_relay: std::string::String, | ||
pub requesting_relay: ::prost::alloc::string::String, | ||
#[prost(string, tag = "4")] | ||
pub requesting_network: std::string::String, | ||
pub requesting_network: ::prost::alloc::string::String, | ||
#[prost(string, tag = "5")] | ||
pub certificate: std::string::String, | ||
pub certificate: ::prost::alloc::string::String, | ||
#[prost(string, tag = "6")] | ||
pub requestor_signature: std::string::String, | ||
pub requestor_signature: ::prost::alloc::string::String, | ||
#[prost(string, tag = "7")] | ||
pub nonce: std::string::String, | ||
pub nonce: ::prost::alloc::string::String, | ||
#[prost(string, tag = "8")] | ||
pub request_id: std::string::String, | ||
pub request_id: ::prost::alloc::string::String, | ||
#[prost(string, tag = "9")] | ||
pub requesting_org: std::string::String, | ||
pub requesting_org: ::prost::alloc::string::String, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.