This is an automated email from the ASF dual-hosted git repository.
mmodzelewski pushed a change to branch connectors-runtime
in repository https://gitbox.apache.org/repos/asf/iggy.git
omit 3b620dc13 refactor(connectors): isolate per-connector init failures in
runtime
add 9fbb61da9 chore(deps): bump urllib3 from 2.6.3 to 2.7.0 in
/foreign/python (#3236)
add 1e44cc5b9 fix(common): errors with clippy pedantic (manual_assert)
(#3204)
add 9b9be1964 feat(configs): add address validation for `QUIC/HTTP`
builders (#3152)
add 4de954de3 refactor(connectors): isolate per-connector init failures in
runtime
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 (3b620dc13)
\
N -- N -- N refs/heads/connectors-runtime (4de954de3)
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:
Cargo.lock | 1 +
core/common/Cargo.toml | 2 +-
core/common/src/error/iggy_error.rs | 2 +
core/common/src/lib.rs | 1 +
.../http_config/http_client_config_builder.rs | 43 ++++++++-
.../quic_config/quic_client_config_builder.rs | 43 ++++++++-
.../tcp_config/tcp_client_config_builder.rs | 2 +-
.../websocket_client_config_builder.rs | 36 +++++++-
core/common/src/types/message/messages_batch.rs | 12 +--
.../common/src/types/message/messages_batch_mut.rs | 13 ++-
.../common/src/types/message/messages_batch_set.rs | 12 +--
core/common/src/utils/net.rs | 101 +++++++++++++++++++++
core/common/src/utils/versioning.rs | 23 ++---
core/sdk/src/clients/client_builder.rs | 4 +-
core/sdk/src/http/http_client.rs | 20 ++--
core/sdk/src/quic/quic_client.rs | 15 ++-
core/server/src/bootstrap.rs | 45 +++++----
core/server/src/http/http_server.rs | 4 +-
examples/rust/src/shared/codec.rs | 7 +-
foreign/python/uv.lock | 6 +-
20 files changed, 312 insertions(+), 80 deletions(-)