This is an automated email from the ASF dual-hosted git repository.
maciej pushed a change to branch contributing-guidelines
in repository https://gitbox.apache.org/repos/asf/iggy.git
from d69cd2b3d Merge branch 'master' into contributing-guidelines
add 486cdbcf8 fix(sdk): improve high-level SDK direct and background
producers (#2621)
add 5b1098db3 test(java): add unit tests for serialization utilities
(#2607)
add a8c01f983 Merge branch 'master' into contributing-guidelines
No new revisions were added by this update.
Summary of changes:
Cargo.lock | 158 +++--
Cargo.toml | 28 +-
DEPENDENCIES.md | 27 +-
core/ai/mcp/Cargo.toml | 4 +-
core/bench/Cargo.toml | 2 +-
core/bench/dashboard/server/Cargo.toml | 2 +-
core/binary_protocol/Cargo.toml | 2 +-
core/common/Cargo.toml | 4 +-
core/connectors/runtime/Cargo.toml | 2 +-
core/connectors/runtime/src/sink.rs | 8 +-
core/connectors/runtime/src/source.rs | 8 +-
core/connectors/sdk/Cargo.toml | 2 +-
core/integration/Cargo.toml | 4 +-
core/integration/src/test_mcp_server.rs | 1 +
core/integration/tests/mcp/mod.rs | 5 +-
core/integration/tests/sdk/producer/background.rs | 143 +++++
core/sdk/Cargo.toml | 3 +-
core/sdk/src/clients/consumer.rs | 71 ++-
core/sdk/src/clients/producer.rs | 44 +-
core/sdk/src/clients/producer_config.rs | 44 +-
core/sdk/src/clients/producer_dispatcher.rs | 9 +-
core/sdk/src/clients/producer_sharding.rs | 61 +-
core/sdk/src/prelude.rs | 1 +
core/server/Cargo.toml | 6 +-
.../org/apache/iggy/serde/BytesSerializer.java | 5 +-
.../client/async/tcp/IggyFrameDecoderTest.java | 455 ++++++++++++++
.../client/blocking/tcp/BytesSerializerTest.java | 555 +++++++++++++++++
.../apache/iggy/serde/BytesDeserializerTest.java | 671 +++++++++++++++++++++
28 files changed, 2176 insertions(+), 149 deletions(-)
create mode 100644
foreign/java/java-sdk/src/test/java/org/apache/iggy/client/async/tcp/IggyFrameDecoderTest.java