Skip to content

Commit

Permalink
Bump 3rdparty/broker from 3dc3aef to aa81a91
Browse files Browse the repository at this point in the history
Bumps [3rdparty/broker](https://github.com/zeek/broker) from `3dc3aef` to `aa81a91`.
- [Release notes](https://github.com/zeek/broker/releases)
- [Commits](zeek/broker@3dc3aef...aa81a91)

---
updated-dependencies:
- dependency-name: 3rdparty/broker
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Jul 15, 2024
1 parent 6662a2a commit 8e45ced
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 3rdparty/broker
Submodule broker updated 97 files
+9 −12 .cirrus.yml
+1 −0 .clang-tidy
+3 −0 .gitmodules
+32 −0 CHANGES
+32 −0 CMakeLists.txt
+1 −1 VERSION
+1 −0 auxil/prometheus-cpp
+7 −5 bindings/python/_broker.cpp
+1 −1 ci/windows/Dockerfile
+1 −1 cmake
+23 −26 libbroker/CMakeLists.txt
+3 −3 libbroker/broker/alm/multipath.test.cc
+1 −1 libbroker/broker/alm/routing_table.test.cc
+1 −1 libbroker/broker/backend.test.cc
+19 −11 libbroker/broker/broker-test.test.cc
+17 −9 libbroker/broker/broker-test.test.hh
+0 −709 libbroker/broker/core.test.cc
+1 −1 libbroker/broker/detail/peer_status_map.test.cc
+29 −164 libbroker/broker/endpoint.cc
+12 −45 libbroker/broker/endpoint.hh
+1 −1 libbroker/broker/error.test.cc
+18 −0 libbroker/broker/fwd.hh
+0 −511 libbroker/broker/integration.test.cc
+22 −27 libbroker/broker/internal/channel.hh
+87 −82 libbroker/broker/internal/channel.test.cc
+24 −0 libbroker/broker/internal/checked.hh
+4 −3 libbroker/broker/internal/clone_actor.cc
+3 −2 libbroker/broker/internal/clone_actor.hh
+2 −0 libbroker/broker/internal/connector.cc
+50 −43 libbroker/broker/internal/core_actor.cc
+13 −10 libbroker/broker/internal/core_actor.hh
+0 −172 libbroker/broker/internal/core_actor.test.cc
+0 −1 libbroker/broker/internal/flow_scope.hh
+21 −15 libbroker/broker/internal/master_actor.cc
+5 −6 libbroker/broker/internal/master_actor.hh
+0 −45 libbroker/broker/internal/master_resolver.cc
+0 −21 libbroker/broker/internal/master_resolver.hh
+0 −316 libbroker/broker/internal/metric_collector.cc
+0 −200 libbroker/broker/internal/metric_collector.hh
+0 −178 libbroker/broker/internal/metric_collector.test.cc
+0 −39 libbroker/broker/internal/metric_exporter.cc
+0 −194 libbroker/broker/internal/metric_exporter.hh
+0 −229 libbroker/broker/internal/metric_exporter.test.cc
+71 −78 libbroker/broker/internal/metric_factory.cc
+49 −59 libbroker/broker/internal/metric_factory.hh
+0 −161 libbroker/broker/internal/metric_scraper.cc
+0 −113 libbroker/broker/internal/metric_scraper.hh
+0 −101 libbroker/broker/internal/metric_view.cc
+0 −118 libbroker/broker/internal/metric_view.hh
+0 −2 libbroker/broker/internal/peering.hh
+0 −361 libbroker/broker/internal/prometheus.cc
+0 −79 libbroker/broker/internal/prometheus.hh
+3 −1 libbroker/broker/internal/store_actor.cc
+15 −5 libbroker/broker/internal/store_actor.hh
+0 −47 libbroker/broker/internal/with_native_labels.hh
+0 −280 libbroker/broker/master.test.cc
+1 −1 libbroker/broker/publisher.cc
+1 −1 libbroker/broker/publisher.hh
+0 −129 libbroker/broker/publisher.test.cc
+0 −79 libbroker/broker/status_subscriber.test.cc
+1 −1 libbroker/broker/store_event.test.cc
+0 −90 libbroker/broker/subscriber.test.cc
+0 −79 libbroker/broker/telemetry/counter.cc
+0 −143 libbroker/broker/telemetry/counter.hh
+0 −358 libbroker/broker/telemetry/fwd.hh
+0 −94 libbroker/broker/telemetry/gauge.cc
+0 −166 libbroker/broker/telemetry/gauge.hh
+0 −144 libbroker/broker/telemetry/histogram.cc
+0 −145 libbroker/broker/telemetry/histogram.hh
+0 −85 libbroker/broker/telemetry/histogram.test.cc
+0 −132 libbroker/broker/telemetry/metric_family.cc
+0 −64 libbroker/broker/telemetry/metric_family.hh
+0 −293 libbroker/broker/telemetry/metric_registry.cc
+0 −393 libbroker/broker/telemetry/metric_registry.hh
+0 −13 libbroker/broker/telemetry/metric_registry_impl.cc
+0 −105 libbroker/broker/telemetry/metric_registry_impl.hh
+8 −0 libbroker/broker/topic.hh
+2 −0 libbroker/broker/variant_list.hh
+4 −4 libbroker/broker/variant_table.hh
+15 −13 libbroker/broker/zeek.hh
+11 −0 tests/btest/Baseline/endpoint.forwarding/receiver.txt
+259 −0 tests/btest/Baseline/endpoint.publish-and-receive-batch/receiver.txt
+13 −0 tests/btest/Baseline/endpoint.publish-and-receive/receiver.txt
+2 −0 tests/btest/Baseline/endpoint.unpeer/invalid.txt
+5 −0 tests/btest/Baseline/endpoint.unpeer/originator.txt
+5 −0 tests/btest/Baseline/endpoint.unpeer/responder.responder.txt
+11 −7 tests/btest/CMakeLists.txt
+1 −1 tests/btest/btest.cfg
+162 −0 tests/btest/endpoint/forwarding.cc
+9 −0 tests/btest/endpoint/forwarding.py
+12 −0 tests/btest/endpoint/publish-and-receive-batch.py
+140 −0 tests/btest/endpoint/publish-and-receive.cc
+8 −0 tests/btest/endpoint/publish-and-receive.py
+121 −0 tests/btest/endpoint/unpeer.cc
+14 −0 tests/btest/endpoint/unpeer.py
+0 −63 tests/btest/http-status/multi-node.py
+0 −58 tests/btest/http-status/single-node.py

0 comments on commit 8e45ced

Please sign in to comment.