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

lukaszzborek pushed a change to branch feat/dotnet-memory-usage
in repository https://gitbox.apache.org/repos/asf/iggy.git


    omit a28b2fbb0 refactor(csharp): remove unnecessary whitespace in 
TcpMessageStream
    omit 22e9a29ff refactor(csharp): format object initializers for improved 
readability in BinaryMapper
    omit 1dd11216d feat(csharp): implement rented message polling and 
deserialization in Iggy consumer
     add 0cd1bec3a refactor(connectors): isolate per-connector init failures in 
runtime (#3244)
     add 7c00c5d8a fix(connectors): log underlying errors instead of discarding 
them in SDK poll/consume paths (#3200)
     add 00df60b05 feat(consensus): cache reply payload and notify subscriber 
on commit (#3223)
     add cecffeb0a ci: prepend ~/.cargo/bin to PATH after rustup show (#3251)
     add b6d162d39 chore(repo,ci): fix macOS pre-merge, bump versions (#3248)
     add d158089aa feat(ci): label PR review state via slash commands and 
lifecycle (#3231)
     add a5f85ea47 ci: declare explicit read-only permissions on reusable 
workflows (#3243)
     add d2e26067e ci: allow org members to drive PR triage commands (#3255)
     add 62fb33add test(sdk): validate handle_response status and length edge 
cases (#3202)
     add 50724fd18 fix(ci): stop publish failing on existing immutable edge 
tags (#3259)
     add 5e98ec900 ci: make PR triage react to reviews and survive transient 
errors (#3260)
     add 45b22eb17 feat(csharp): implement rented message polling and 
deserialization in Iggy consumer
     add 7a2618832 refactor(csharp): format object initializers for improved 
readability in BinaryMapper
     add f3efd2574 refactor(csharp): remove unnecessary whitespace in 
TcpMessageStream
     add 6cc8c2ad0 feat(csharp): add rented message channel and update 
StoreOffsetAsync method

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   (a28b2fbb0)
            \
             N -- N -- N   refs/heads/feat/dotnet-memory-usage (6cc8c2ad0)

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/CODEOWNERS                                 |   2 +-
 .../actions/utils/setup-rust-with-cache/action.yml |  11 +-
 .github/workflows/_build_python_wheels.yml         |   3 +
 .github/workflows/_build_rust_artifacts.yml        |   3 +
 .github/workflows/_detect.yml                      |   5 +-
 .github/workflows/pr-triage.yml                    | 492 +++++++++++++
 .github/workflows/pre-merge.yml                    |   2 +-
 .github/workflows/publish.yml                      |  81 ++-
 CONTRIBUTING.md                                    | 120 ++++
 Cargo.lock                                         |  52 +-
 Cargo.toml                                         |  11 +-
 bdd/python/uv.lock                                 |   2 +-
 core/ai/mcp/Cargo.toml                             |   2 +-
 core/bench/Cargo.toml                              |   2 +-
 core/bench/dashboard/frontend/Cargo.toml           |   2 +-
 core/bench/dashboard/server/Cargo.toml             |   2 +-
 core/bench/report/Cargo.toml                       |   2 +-
 core/binary_protocol/Cargo.toml                    |   2 +-
 core/binary_protocol/src/consensus/command.rs      |   3 +-
 core/binary_protocol/src/consensus/error.rs        |   3 +
 core/binary_protocol/src/consensus/header.rs       | 246 ++++++-
 core/binary_protocol/src/consensus/message.rs      |   5 +
 core/binary_protocol/src/consensus/mod.rs          |   6 +-
 core/binary_protocol/src/lib.rs                    |   9 +-
 core/cli/Cargo.toml                                |   2 +-
 core/common/Cargo.toml                             |   2 +-
 core/connectors/runtime/Cargo.toml                 |   2 +-
 core/connectors/runtime/src/context.rs             |  78 ++-
 core/connectors/runtime/src/main.rs                |  42 +-
 core/connectors/runtime/src/sink.rs                | 199 +++---
 core/connectors/runtime/src/source.rs              | 219 +++---
 core/connectors/sdk/Cargo.toml                     |   2 +-
 core/connectors/sdk/src/sink.rs                    |  89 ++-
 core/connectors/sdk/src/source.rs                  |  18 +-
 core/connectors/sinks/delta_sink/Cargo.toml        |   4 +-
 .../connectors/sinks/elasticsearch_sink/Cargo.toml |   2 +-
 core/connectors/sinks/http_sink/Cargo.toml         |   2 +-
 core/connectors/sinks/iceberg_sink/Cargo.toml      |   2 +-
 core/connectors/sinks/influxdb_sink/Cargo.toml     |   2 +-
 core/connectors/sinks/mongodb_sink/Cargo.toml      |   2 +-
 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/influxdb_source/Cargo.toml |   2 +-
 core/connectors/sources/postgres_source/Cargo.toml |   2 +-
 core/connectors/sources/random_source/Cargo.toml   |   2 +-
 core/consensus/Cargo.toml                          |   1 +
 core/consensus/src/client_table.rs                 | 770 ++++++++++-----------
 core/consensus/src/impls.rs                        | 568 +++++++++++++--
 core/consensus/src/lib.rs                          |  45 +-
 core/consensus/src/metadata_helpers.rs             | 729 +++++++++++++++++++
 core/consensus/src/oneshot.rs                      | 407 +++++++++++
 core/consensus/src/plane_helpers.rs                | 191 ++---
 core/integration/tests/connectors/mod.rs           |   1 +
 .../tests/connectors/runtime/error_isolation.rs    | 324 +++++++++
 .../tests/connectors/{delta => runtime}/mod.rs     |   2 +-
 .../sink_invalid_config.toml}                      |   2 +-
 .../sink_invalid_config/stdout_invalid.toml}       |  14 +-
 .../runtime/sink_invalid_config/stdout_valid.toml} |  12 +-
 .../sink_missing_plugin.toml}                      |   2 +-
 .../stdout_missing.toml}                           |  13 +-
 .../sink_missing_plugin_config/stdout_valid.toml}  |  12 +-
 .../source_invalid_config.toml}                    |   2 +-
 .../source_invalid_config/random_invalid.toml}     |  20 +-
 .../source_invalid_config/random_valid.toml}       |  16 +-
 .../source_invalid_state.toml}                     |   2 +-
 .../random_invalid_state.toml}                     |  21 +-
 .../source_invalid_state_config/random_valid.toml} |  16 +-
 .../source_missing_plugin.toml}                    |   2 +-
 .../random_missing.toml}                           |  18 +-
 .../random_valid.toml}                             |  16 +-
 core/metadata/src/impls/metadata.rs                | 517 +++++++++++---
 core/metadata/src/lib.rs                           |   2 +-
 core/partitions/src/iggy_partition.rs              | 245 ++++---
 core/sdk/Cargo.toml                                |   2 +-
 core/sdk/src/session.rs                            |   8 +-
 core/sdk/src/tcp/tcp_client.rs                     |  52 ++
 core/server-ng/Cargo.toml                          |   1 -
 core/server-ng/src/login_register.rs               | 564 +++++++--------
 core/server/Cargo.toml                             |   2 +-
 core/simulator/src/lib.rs                          | 173 +++--
 core/simulator/src/ready_queue.rs                  |   1 -
 examples/python/uv.lock                            |   2 +-
 .../Iggy_SDK/Consumers/IggyConsumer.Rented.cs      |   3 +-
 foreign/csharp/Iggy_SDK/Consumers/IggyConsumer.cs  |   9 +-
 .../Iggy_SDK/Consumers/ReceivedRentedMessage.cs    |   6 +-
 foreign/csharp/Iggy_SDK/Mappers/BinaryMapper.cs    |   5 -
 foreign/go/contracts/version.go                    |   2 +-
 foreign/java/gradle.properties                     |   2 +-
 foreign/node/package.json                          |   2 +-
 foreign/python/Cargo.toml                          |   4 +-
 foreign/python/pyproject.toml                      |   2 +-
 foreign/python/uv.lock                             |   2 +-
 scripts/bump-version.sh                            |  76 +-
 web/package.json                                   |   2 +-
 96 files changed, 5022 insertions(+), 1617 deletions(-)
 create mode 100644 .github/workflows/pr-triage.yml
 create mode 100644 core/consensus/src/metadata_helpers.rs
 create mode 100644 core/consensus/src/oneshot.rs
 create mode 100644 core/integration/tests/connectors/runtime/error_isolation.rs
 copy core/integration/tests/connectors/{delta => runtime}/mod.rs (97%)
 copy core/integration/tests/connectors/{elasticsearch/source.toml => 
runtime/sink_invalid_config.toml} (93%)
 copy core/{connectors/sinks/stdout_sink/config.toml => 
integration/tests/connectors/runtime/sink_invalid_config/stdout_invalid.toml} 
(70%)
 copy core/{connectors/sinks/stdout_sink/config.toml => 
integration/tests/connectors/runtime/sink_invalid_config/stdout_valid.toml} 
(75%)
 copy core/integration/tests/connectors/{iceberg/sink_default_credentials.toml 
=> runtime/sink_missing_plugin.toml} (92%)
 copy core/{connectors/sinks/stdout_sink/config.toml => 
integration/tests/connectors/runtime/sink_missing_plugin_config/stdout_missing.toml}
 (68%)
 copy core/{connectors/sinks/stdout_sink/config.toml => 
integration/tests/connectors/runtime/sink_missing_plugin_config/stdout_valid.toml}
 (74%)
 copy core/integration/tests/connectors/{elasticsearch/source.toml => 
runtime/source_invalid_config.toml} (92%)
 copy core/{connectors/sources/random_source/config.toml => 
integration/tests/connectors/runtime/source_invalid_config/random_invalid.toml} 
(71%)
 copy core/{connectors/sources/random_source/config.toml => 
integration/tests/connectors/runtime/source_invalid_config/random_valid.toml} 
(80%)
 copy core/integration/tests/connectors/{elasticsearch/source.toml => 
runtime/source_invalid_state.toml} (92%)
 copy core/{connectors/sources/random_source/config.toml => 
integration/tests/connectors/runtime/source_invalid_state_config/random_invalid_state.toml}
 (63%)
 copy core/{connectors/sources/random_source/config.toml => 
integration/tests/connectors/runtime/source_invalid_state_config/random_valid.toml}
 (81%)
 copy core/integration/tests/connectors/{elasticsearch/source.toml => 
runtime/source_missing_plugin.toml} (92%)
 copy core/{connectors/sources/random_source/config.toml => 
integration/tests/connectors/runtime/source_missing_plugin_config/random_missing.toml}
 (72%)
 copy core/{connectors/sources/random_source/config.toml => 
integration/tests/connectors/runtime/source_missing_plugin_config/random_valid.toml}
 (80%)

Reply via email to