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

hgruszecki pushed a change to branch test-binaries-refactor
in repository https://gitbox.apache.org/repos/asf/iggy.git


    omit 69572b2a3 connectors
    omit 2dd265510 feat(integration): implement `iggy_harness` macro and test 
utils
     add 13a1bf339 feat(connectors,mcp): implement logging with telemetry 
(#2612)
     add b26246252 deps(connectors): Update iceberg to 0.8.0 (#2605)
     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 6e3a6d132 docs: update PR template and contributing guidelines (#2601)
     add 052431382 refactor(server): compile-time env var mappings eliminate 
runtime ambiguity (#2614)
     add a8ded8fa8 feat(integration): implement `iggy_harness` macro and test 
utils

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   (69572b2a3)
            \
             N -- N -- N   refs/heads/test-binaries-refactor (a8ded8fa8)

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:
 .github/config/components.yml                      |  54 +-
 .markdownlint.json                                 |   3 +-
 .markdownlint.yml                                  |   2 +-
 CONTRIBUTING.md                                    | 141 ++--
 Cargo.lock                                         | 757 +++++++++--------
 Cargo.toml                                         |  66 +-
 DEPENDENCIES.md                                    | 178 ++--
 PULL_REQUEST_TEMPLATE                              |  33 -
 PULL_REQUEST_TEMPLATE.md                           |  57 ++
 README.md                                          |   8 +-
 bdd/docker-compose.yml                             |  34 +-
 core/ai/mcp/Cargo.toml                             |  14 +-
 core/ai/mcp/README.md                              |  18 +
 core/ai/mcp/config.toml                            |  12 +
 core/ai/mcp/src/configs.rs                         | 141 +++-
 core/ai/mcp/src/log.rs                             | 180 +++++
 core/ai/mcp/src/main.rs                            |  22 +-
 core/bench/Cargo.toml                              |   2 +-
 core/bench/dashboard/server/Cargo.toml             |   2 +-
 core/binary_protocol/Cargo.toml                    |   2 +-
 core/common/Cargo.toml                             |   7 +-
 core/common/src/configs/mod.rs                     | 893 ---------------------
 core/common/src/lib.rs                             |   3 +-
 core/{harness-derive => configs}/Cargo.toml        |  14 +-
 core/configs/src/configs_impl/env_mapping.rs       |  63 ++
 core/configs/src/configs_impl/error.rs             |  51 ++
 core/configs/src/configs_impl/file_provider.rs     | 142 ++++
 .../src/configs_impl}/mod.rs                       |  25 +-
 core/configs/src/configs_impl/parsing.rs           | 196 +++++
 .../configs/src/configs_impl/traits.rs             |  34 +-
 .../configs/src/configs_impl/typed_env_provider.rs | 597 ++++++++++++++
 .../iggy/Iggy.java => core/configs/src/lib.rs      |  17 +-
 core/{harness-derive => configs_derive}/Cargo.toml |   4 +-
 core/configs_derive/src/config_env.rs              | 583 ++++++++++++++
 core/configs_derive/src/lib.rs                     | 120 +++
 core/connectors/runtime/Cargo.toml                 |  11 +-
 core/connectors/runtime/README.md                  |  18 +
 core/connectors/runtime/config.toml                |  12 +
 core/connectors/runtime/src/api/config.rs          |   8 +-
 core/connectors/runtime/src/configs/connectors.rs  |  17 +-
 .../src/configs/connectors/local_provider.rs       |  50 +-
 core/connectors/runtime/src/configs/runtime.rs     | 151 +++-
 core/connectors/runtime/src/log.rs                 | 181 +++++
 core/connectors/runtime/src/main.rs                |  23 +-
 core/connectors/runtime/src/sink.rs                |  16 +-
 core/connectors/runtime/src/source.rs              |  10 +-
 core/connectors/sdk/Cargo.toml                     |   2 +-
 core/connectors/sdk/src/lib.rs                     |   2 +
 core/connectors/sdk/src/log.rs                     |  96 +++
 core/connectors/sdk/src/sink.rs                    |  17 +-
 core/connectors/sdk/src/source.rs                  |   8 +-
 .../connectors/sinks/elasticsearch_sink/Cargo.toml |   2 +-
 core/connectors/sinks/iceberg_sink/Cargo.toml      |   2 +-
 core/connectors/sinks/iceberg_sink/src/catalog.rs  |  37 +-
 .../sinks/iceberg_sink/src/router/mod.rs           |  41 +-
 core/connectors/sinks/postgres_sink/Cargo.toml     |   2 +-
 core/connectors/sinks/quickwit_sink/Cargo.toml     |   2 +-
 core/connectors/sinks/stdout_sink/Cargo.toml       |   2 +-
 .../sources/elasticsearch_source/Cargo.toml        |   2 +-
 core/connectors/sources/postgres_source/Cargo.toml |   2 +-
 core/connectors/sources/random_source/Cargo.toml   |   2 +-
 core/{harness-derive => harness_derive}/Cargo.toml |   2 +-
 .../src/attrs.rs                                   | 227 ++++--
 .../src/codegen.rs                                 | 328 ++++----
 core/{harness-derive => harness_derive}/src/lib.rs |   0
 .../src/params.rs                                  |   0
 core/integration/Cargo.toml                        |   7 +-
 core/integration/src/harness/config/connector.rs   |   2 -
 core/integration/src/harness/config/mod.rs         |   2 +
 core/integration/src/harness/config/resolve.rs     | 275 +++++++
 core/integration/src/harness/config/server.rs      |  25 +-
 core/integration/src/harness/handle/connector.rs   |   4 -
 core/integration/src/harness/handle/mcp.rs         |   5 +-
 core/integration/src/harness/handle/server.rs      |  96 +--
 core/integration/src/harness/mod.rs                |   2 +-
 core/integration/src/harness/orchestrator.rs       |  12 +-
 core/integration/tests/config_provider/mod.rs      |  23 +-
 .../data_integrity/verify_after_server_restart.rs  |   2 +-
 core/integration/tests/mcp/mod.rs                  |  10 +-
 core/integration/tests/sdk/producer/background.rs  | 120 +++
 .../tests/server/concurrent_scenario.rs            |   2 +-
 ...umer_group_auto_commit_reconnection_scenario.rs |   2 +-
 .../tests/server/consumer_group_join_scenario.rs   |   2 +-
 ...p_multiple_clients_polling_messages_scenario.rs |   2 +-
 .../consumer_group_offset_cleanup_scenario.rs      |   2 +-
 ...roup_single_client_polling_messages_scenario.rs |   2 +-
 .../tests/server/cross_protocol_pat_scenario.rs    |   2 +-
 .../tests/server/delete_segments_scenario.rs       |   2 +-
 .../tests/server/offset_retrieval_scenario.rs      |   6 +-
 .../server/read_during_persistence_scenario.rs     |  10 +-
 .../tests/server/segment_rotation_race_scenario.rs |  12 +-
 .../server/single_message_per_batch_scenario.rs    |   2 +-
 .../server/stale_client_consumer_group_scenario.rs |  12 +-
 .../tests/server/timestamp_retrieval_scenario.rs   |   6 +-
 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                             |  32 +-
 core/server/README.md                              |   2 +-
 core/{configs/server.toml => server/config.toml}   |   0
 core/server/src/args.rs                            |   4 +-
 core/server/src/configs/cluster.rs                 |  11 +-
 core/server/src/configs/defaults.rs                |   4 +-
 core/server/src/configs/http.rs                    |  17 +-
 core/server/src/configs/quic.rs                    |  15 +-
 core/server/src/configs/server.rs                  |  83 +-
 core/server/src/configs/sharding.rs                |   4 +-
 core/server/src/configs/system.rs                  |  43 +-
 core/server/src/configs/tcp.rs                     |  11 +-
 core/server/src/configs/validators.rs              |  39 +-
 core/server/src/configs/websocket.rs               |   5 +-
 core/server/src/server_error.rs                    |   2 +-
 examples/java/README.md                            |   2 +-
 examples/rust/README.md                            |   2 +-
 .../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 ++++++++++++++++
 foreign/node/src/e2e/tcp.cluster.e2e.ts            |   2 +-
 justfile                                           |   4 +-
 124 files changed, 6336 insertions(+), 2262 deletions(-)
 delete mode 100644 PULL_REQUEST_TEMPLATE
 create mode 100644 PULL_REQUEST_TEMPLATE.md
 create mode 100644 core/ai/mcp/src/log.rs
 delete mode 100644 core/common/src/configs/mod.rs
 copy core/{harness-derive => configs}/Cargo.toml (81%)
 create mode 100644 core/configs/src/configs_impl/env_mapping.rs
 create mode 100644 core/configs/src/configs_impl/error.rs
 create mode 100644 core/configs/src/configs_impl/file_provider.rs
 copy core/{integration/tests/connectors/http_config_provider => 
configs/src/configs_impl}/mod.rs (51%)
 create mode 100644 core/configs/src/configs_impl/parsing.rs
 copy 
foreign/java/buildSrc/src/main/kotlin/iggy.java-common-conventions.gradle.kts 
=> core/configs/src/configs_impl/traits.rs (55%)
 create mode 100644 core/configs/src/configs_impl/typed_env_provider.rs
 copy foreign/java/java-sdk/src/main/java/org/apache/iggy/Iggy.java => 
core/configs/src/lib.rs (75%)
 copy core/{harness-derive => configs_derive}/Cargo.toml (93%)
 create mode 100644 core/configs_derive/src/config_env.rs
 create mode 100644 core/configs_derive/src/lib.rs
 create mode 100644 core/connectors/runtime/src/log.rs
 create mode 100644 core/connectors/sdk/src/log.rs
 rename core/{harness-derive => harness_derive}/Cargo.toml (97%)
 rename core/{harness-derive => harness_derive}/src/attrs.rs (74%)
 rename core/{harness-derive => harness_derive}/src/codegen.rs (74%)
 rename core/{harness-derive => harness_derive}/src/lib.rs (100%)
 rename core/{harness-derive => harness_derive}/src/params.rs (100%)
 create mode 100644 core/integration/src/harness/config/resolve.rs
 rename core/{configs/server.toml => server/config.toml} (100%)
 create mode 100644 
foreign/java/java-sdk/src/test/java/org/apache/iggy/client/async/tcp/IggyFrameDecoderTest.java

Reply via email to