Skip to content
This repository has been archived by the owner on Mar 3, 2023. It is now read-only.

Upgrade protobuf to 3.16.1 CVE-2021-22569 #3797

Merged
merged 4 commits into from
Mar 25, 2022
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -285,9 +285,9 @@ http_file(
# protobuf dependencies for C++ and Java
http_archive(
name = "com_google_protobuf",
sha256 = "03d2e5ef101aee4c2f6ddcf145d2a04926b9c19e7086944df3842b1b8502b783",
strip_prefix = "protobuf-3.8.0",
urls = ["https://github.com/protocolbuffers/protobuf/archive/v3.8.0.tar.gz"],
sha256 = "fb9158b00b2df4949f66da0bb8a9eaf662b842c7987d096b260759d629805d7f",
strip_prefix = "protobuf-3.16.1",
urls = ["https://github.com/protocolbuffers/protobuf/archive/v3.16.1.tar.gz"],
)
# end protobuf dependencies for C++ and Java

Expand Down
1 change: 1 addition & 0 deletions heron/common/src/cpp/network/event_loop_impl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
*/

#include "network/event_loop_impl.h"
#include <signal.h>
nicknezis marked this conversation as resolved.
Show resolved Hide resolved
#include <errno.h>
#include <iostream>
#include "glog/logging.h"
Expand Down