You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by gi...@apache.org on 2021/06/29 06:01:00 UTC

[qpid-dispatch] branch dependabot/npm_and_yarn/console/react/patternfly/patternfly-4.115.2 updated (7d85ee7 -> fc953e0)

This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch dependabot/npm_and_yarn/console/react/patternfly/patternfly-4.115.2
in repository https://gitbox.apache.org/repos/asf/qpid-dispatch.git.


 discard 7d85ee7  Bump @patternfly/patternfly from 4.102.2 to 4.115.2 in /console/react
     add e3f2733  DISPATCH-2179: Set SSLDomain.VERIFY_PEER or SSLDomain.VERIFY_PEER_NAME based on the ssl_disable_peer_name_verify flag. Removed --ssl-disable-peer-name-verify from run_qdstat in system_tests_qdstat. This closes #1270.
     add e740ded  DISPATCH-2184: invoke Q2 unblock handler on Q2 disable
     add f964ab7  DISPATCH-2186 Mark test helpers so that PyTest does not attempt test collection on them (#1276)
     add 2bff679  DISPATCH-2178: Do not build separate libqpid-dispatch.so (#1267)
     add 962da1e  DISPATCH-2162: HTTP1/x adaptor - use larger I/O buffers
     add e1c3a46  DISPATCH-2185, DISPATCH-2177: release all stream buffers before delivery
     add 2547856  DISPATCH-1539: remove many Python 2 idioms and compatibiltiy constructs (#1275)
     add fc953e0  Bump @patternfly/patternfly from 4.102.2 to 4.115.2 in /console/react

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (7d85ee7)
            \
             N -- N -- N   refs/heads/dependabot/npm_and_yarn/console/react/patternfly/patternfly-4.115.2 (fc953e0)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 CMakeLists.txt                                     |   5 +-
 dockerfiles/Dockerfile-centos7                     |   2 +-
 docs/man/help2txt.py                               |   8 +-
 docs/man/qdrouterd.conf.5.py                       |   3 +-
 include/qpid/dispatch/message.h                    |   3 +
 python/qpid_dispatch/management/client.py          |  73 +++---
 python/qpid_dispatch/management/entity.py          |  33 +--
 python/qpid_dispatch/management/error.py           |  17 +-
 python/qpid_dispatch_internal/compat/__init__.py   | 126 ++--------
 python/qpid_dispatch_internal/dispatch.py          |  16 +-
 .../display_name/display_name.py                   |   5 -
 .../qpid_dispatch_internal/management/agent.py.in  |  37 +--
 python/qpid_dispatch_internal/management/config.py |  16 +-
 .../qpid_dispatch_internal/management/qdrouter.py  |   9 +-
 python/qpid_dispatch_internal/management/schema.py |  25 +-
 .../management/schema_doc.py                       |  12 +-
 .../qpid_dispatch_internal/policy/policy_local.py  |  26 +-
 .../policy/policy_manager.py                       |   5 -
 .../qpid_dispatch_internal/policy/policy_util.py   |   5 -
 python/qpid_dispatch_internal/router/__init__.py   |   5 -
 python/qpid_dispatch_internal/router/address.py    |   5 -
 python/qpid_dispatch_internal/router/data.py       |  77 +++---
 python/qpid_dispatch_internal/router/engine.py     |   5 -
 python/qpid_dispatch_internal/router/hello.py      |  11 +-
 python/qpid_dispatch_internal/router/link.py       |   5 -
 python/qpid_dispatch_internal/router/message.py    |   4 -
 python/qpid_dispatch_internal/router/node.py       |   8 +-
 python/qpid_dispatch_internal/router/path.py       |  20 +-
 python/qpid_dispatch_internal/tools/__init__.py    |   5 -
 python/qpid_dispatch_internal/tools/command.py     |  24 +-
 python/qpid_dispatch_internal/tools/display.py     |   9 +-
 router/CMakeLists.txt                              |   6 +-
 run.py.in                                          |   6 -
 src/CMakeLists.txt                                 |  22 +-
 src/adaptors/http1/http1_adaptor.c                 | 261 +++++++++------------
 src/adaptors/http1/http1_client.c                  |  78 +++---
 src/adaptors/http1/http1_private.h                 |  47 ++--
 src/adaptors/http1/http1_server.c                  |  68 +++---
 src/config.h.in                                    |   1 -
 src/dispatch.c                                     |   5 +-
 .../c_unittests_main.cpp => src/empty.c            |   8 +-
 src/message.c                                      |  16 +-
 src/router_node.c                                  |  14 +-
 src/schema_c.py                                    |   5 -
 src/server.c                                       |   2 +-
 src/timer.c                                        |   3 +-
 tests/CMakeLists.txt                               |  16 +-
 tests/TCP_echo_client.py                           |   5 -
 tests/TCP_echo_server.py                           |   5 -
 tests/authservice.py                               |  15 +-
 tests/c_unittests/CMakeLists.txt                   |   4 +-
 tests/friendship_server.py                         |   2 +-
 tests/http1_tests.py                               |  13 +-
 tests/management_test/entity.py                    |   5 -
 tests/management_test/qdrouter.py                  |  27 +--
 tests/management_test/schema.py                    |   7 +-
 tests/message_test.c                               | 118 ++++++++++
 tests/mock/__init__.py                             |   5 -
 tests/mock/dispatch.py                             |   6 -
 tests/router_engine_test.py                        |   5 -
 tests/router_policy_test.py                        |   5 -
 tests/run_system_tests.py                          |   5 -
 tests/system_test.py                               |  25 +-
 tests/system_tests_address_lookup.py               |   5 -
 tests/system_tests_auth_service_plugin.py          |   6 -
 tests/system_tests_authz_service_plugin.py         |  21 +-
 tests/system_tests_autolinks.py                    |   8 +-
 tests/system_tests_bad_configuration.py            |   6 -
 tests/system_tests_broker.py                       |   6 -
 tests/system_tests_cmdline_parsing.py              |   5 -
 tests/system_tests_connector_status.py             |   4 +-
 tests/system_tests_console.py                      |   5 -
 tests/system_tests_core_client.py                  |  24 +-
 tests/system_tests_core_endpoint.py                |   5 -
 tests/system_tests_default_distribution.py         |   7 +-
 tests/system_tests_delivery_abort.py               |   5 -
 tests/system_tests_delivery_counts.py              | 135 ++++++-----
 tests/system_tests_deprecated.py                   |   5 -
 ...tem_tests_disallow_link_resumable_link_route.py |   7 +-
 tests/system_tests_distribution.py                 |   5 -
 tests/system_tests_drain.py                        |   7 +-
 tests/system_tests_drain_support.py                |   5 -
 tests/system_tests_dynamic_terminus.py             |   5 -
 tests/system_tests_edge_router.py                  |  25 +-
 tests/system_tests_exchange_bindings.py            |   5 -
 tests/system_tests_failover_list.py                |   5 -
 tests/system_tests_fallback_dest.py                |   6 -
 tests/system_tests_http.py.in                      |  20 +-
 tests/system_tests_http1_adaptor.py                |  12 +-
 tests/system_tests_interior_sync_up.py             |   5 -
 tests/system_tests_link_route_credit.py            |   5 -
 tests/system_tests_link_routes.py                  |  16 +-
 tests/system_tests_log_level_update.py             |  42 ++--
 tests/system_tests_log_message_components.py       |  17 +-
 tests/system_tests_management.py                   |  39 ++-
 tests/system_tests_multi_phase.py                  |   5 -
 tests/system_tests_multi_tenancy.py                |   5 -
 tests/system_tests_multi_tenancy_policy.py         |   5 -
 tests/system_tests_multicast.py                    |   9 +-
 tests/system_tests_one_router.py                   |  39 ++-
 tests/system_tests_open_properties.py              |   7 +-
 tests/system_tests_policy.py                       |  10 +-
 tests/system_tests_policy_oversize_basic.py        |   5 -
 tests/system_tests_policy_oversize_compound.py     |   5 -
 tests/system_tests_priority.py                     |   5 -
 tests/system_tests_protocol_family.py              |   5 -
 tests/system_tests_protocol_settings.py            |   5 -
 tests/system_tests_qdmanage.py                     |  17 +-
 tests/system_tests_qdstat.py                       |  87 +++++--
 tests/system_tests_router_mesh.py                  |   5 -
 tests/system_tests_routing_protocol.py             |   5 -
 tests/system_tests_sasl_plain.py                   |  21 +-
 tests/system_tests_ssl.py                          |   4 +
 tests/system_tests_stuck_deliveries.py             |   5 -
 tests/system_tests_tcp_adaptor.py                  |   5 -
 tests/system_tests_topology.py                     |  17 +-
 tests/system_tests_topology_addition.py            |   5 -
 tests/system_tests_two_routers.py                  |  35 ++-
 tests/system_tests_user_id.py                      |  43 ++--
 tests/system_tests_user_id_proxy.py                |   5 -
 tests/test_broker.py                               |   5 -
 tools/qdmanage                                     |  11 +-
 tools/scraper/common.py                            |  23 +-
 tools/scraper/log_splitter.py                      |  28 +--
 tools/scraper/nicknamer.py                         |   2 +-
 tools/scraper/scraper.py                           |  16 +-
 126 files changed, 904 insertions(+), 1427 deletions(-)
 copy tests/c_unittests/c_unittests_main.cpp => src/empty.c (84%)

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org