Skip to content

Commit dd33c86

Browse files
authored
Update Envoy to f97e3d8 (Jun 26th 2023) (#1000)
- Update the ENVOY_COMMIT and ENVOY_SHA in [bazel/repositories.bzl](https://github.com/envoyproxy/nighthawk/blob/main/bazel/repositories.bzl) to the latest Envoy's commit. - Update [requirements.txt](https://github.com/envoyproxy/nighthawk/blob/main/requirements.txt]) with latest python dependencies - Small function signature change to support compilation with new dependencies Signed-off-by: tomjzzhang <[email protected]>
1 parent 1e58252 commit dd33c86

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

bazel/repositories.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
22

3-
ENVOY_COMMIT = "4222f18fe3eb34a9530d3b1d916bcb8f18dc627d"
4-
ENVOY_SHA = "25f7f65b3214e5544a3bdb8688e7ccb98388e1c34e8aef1faa5858af13879d8a"
3+
ENVOY_COMMIT = "f97e3d8e7e772aa0fd58c7a8f1df98e4e049d706"
4+
ENVOY_SHA = "60d12232982adeb896bd7e5696f158317c1dba838168b8bd66cf657f386a5b61"
55

66
HDR_HISTOGRAM_C_VERSION = "0.11.2" # October 12th, 2020
77
HDR_HISTOGRAM_C_SHA = "637f28b5f64de2e268131e4e34e6eef0b91cf5ff99167db447d9b2825eae6bad"

requirements.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# Last updated 2023-05-22
1+
# Last updated 2023-06-26
22
apipkg==3.0.1
33
chardet==5.1.0
44
importlib_metadata==6.4.1
55
more_itertools==9.1.0
66
py==1.11.0
7-
pytest==7.3.1
7+
pytest==7.4.0
88
pytest-dependency==0.5.1 # versions below 1.0.0 are unstable, so we should only take in bugfixes automatically
99
pytest-xdist==3.3.1
1010
pyyaml==6.0.0
@@ -13,14 +13,14 @@ six==1.16.0
1313
zipp==3.15.0
1414
# TODO(935): Remove all below dependencies after using actual dependency manager if possible.
1515
certifi==2023.5.7
16-
urllib3==2.0.2
16+
urllib3==2.0.3
1717
idna==3.4
18-
pluggy==1.0.0
18+
pluggy==1.2.0
1919
packaging==23.1
2020
attrs==23.1.0
2121
iniconfig==2.0.0
2222
execnet==1.9.0
2323
tomli==2.0.1
24-
pyparsing==3.0.9
24+
pyparsing==3.1.0
2525
charset_normalizer==2.1.1 # Don't update charset_normalizer to 3.x.x; the latest requests==2.28.1 can only use >=2 <3.
2626
exceptiongroup==1.1.1

source/client/process_impl.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ class StatsConfigImpl : public Envoy::Server::Configuration::StatsConfig {
116116

117117
void addSink(Envoy::Stats::SinkPtr sink) { sinks_.emplace_back(std::move(sink)); }
118118

119-
bool enableDeferredCreationStats() const { return false; }
119+
bool enableDeferredCreationStats() const override { return false; }
120120

121121
private:
122122
std::list<Envoy::Stats::SinkPtr> sinks_;

0 commit comments

Comments
 (0)