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

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


    omit 30022ce1 chore(python): refactor Python SDK for compatibility with 
Rust SDK
     add 109ef08d chore(repo): implement test for DeleteSegment, bump deps in 
core (#1877)
     add 916d4b74 chore(sdk): fix csharp sdk readme (#1880)
     add 9d66f39b chore(ci): fix examples and documentation issues (#1575)
     add 559e4d66 chore(ci): publish java-sdk SNAPSHOTs to maven (#1883)
     add 09cadc2e chore(ci): publish java-sdk to maven (#1885)
     add 9aed3715 fix(server): fix index saving issue on server restart, fix ci 
(#1887)
     add 7ccd73d2 chore(python): refactor Python SDK for compatibility with 
Rust SDK

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   (30022ce1)
            \
             N -- N -- N   refs/heads/python-zc (7ccd73d2)

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/changed-files-config.json                  |    6 +-
 .github/scripts/detect-changed-files.sh            |   25 +-
 .github/workflows/ci-check-rust.yml                |    5 +-
 ...publish_csharp_sdk.yml => publish_java_sdk.yml} |   70 +-
 .github/workflows/publish_java_sdk_snapshots.yml   |   61 ++
 .markdownlint.json                                 |    6 +
 Cargo.lock                                         | 1052 ++++++++++----------
 Cargo.toml                                         |   32 +-
 DEPENDENCIES.md                                    |  251 ++---
 README.md                                          |   64 +-
 core/bench/dashboard/server/Cargo.toml             |    4 +-
 core/cli/Cargo.toml                                |    2 +-
 core/cli/src/args/user.rs                          |    4 +-
 core/common/src/types/args/mod.rs                  |    2 +-
 core/common/src/types/command/mod.rs               |    1 +
 core/common/src/types/identifier/mod.rs            |    2 +-
 core/common/src/types/message/messages_batch.rs    |    4 +-
 core/connectors/README.md                          |    4 +-
 core/examples/README.md                            |  133 +++
 core/examples/src/basic/consumer/main.rs           |    3 +-
 core/examples/src/basic/producer/main.rs           |    3 +-
 .../examples/src/message-envelope/consumer/main.rs |    3 +-
 .../examples/src/message-envelope/producer/main.rs |    3 +-
 core/examples/src/message-headers/consumer/main.rs |    3 +-
 core/examples/src/message-headers/producer/main.rs |    3 +-
 core/examples/src/multi-tenant/consumer/main.rs    |   20 +-
 core/examples/src/multi-tenant/producer/main.rs    |    3 +-
 core/examples/src/new-sdk/consumer/main.rs         |   27 +-
 core/examples/src/new-sdk/producer/main.rs         |   12 +-
 core/examples/src/shared/args.rs                   |   57 ++
 core/examples/src/sink-data-producer/main.rs       |    9 +-
 .../stream-builder/stream-producer-config/main.rs  |    1 -
 .../src/stream-builder/stream-producer/main.rs     |    3 +-
 core/integration/Cargo.toml                        |    3 +-
 core/integration/src/test_server.rs                |    9 +
 .../tests/cli/general/test_help_command.rs         |    2 +-
 .../tests/cli/user/test_user_create_command.rs     |    2 +-
 .../cli/user/test_user_permissions_command.rs      |    2 +-
 core/integration/tests/examples/mod.rs             |  205 ----
 core/integration/tests/examples/test_basic.rs      |   76 --
 .../tests/examples/test_getting_started.rs         |   85 --
 .../tests/examples/test_message_envelope.rs        |   74 --
 .../tests/examples/test_message_headers.rs         |   75 --
 core/integration/tests/mod.rs                      |    1 -
 .../server/scenarios/delete_segments_scenario.rs   |  244 +++++
 core/integration/tests/server/scenarios/mod.rs     |    2 +
 .../server/scenarios/server_restart_scenario.rs    |  280 ++++++
 core/integration/tests/server/tcp_server.rs        |   71 +-
 core/sdk/Cargo.toml                                |    2 +-
 core/sdk/src/clients/producer.rs                   |    2 +-
 core/sdk/src/prelude.rs                            |    4 +-
 core/server/Cargo.toml                             |   12 +-
 core/server/src/binary/command.rs                  |    7 +
 .../handlers/segments/delete_segments_handler.rs   |   85 +-
 core/server/src/streaming/partitions/storage.rs    |   24 +-
 .../src/streaming/segments/indexes/index_reader.rs |   15 +-
 .../src/streaming/segments/reading_messages.rs     |    3 +-
 core/server/src/streaming/segments/segment.rs      |    7 +-
 core/server/src/streaming/utils/memory_pool.rs     |    1 -
 foreign/csharp/README.md                           |   27 +-
 foreign/go/samples/consumer/README.md              |    6 +-
 foreign/go/samples/producer/README.md              |    6 +-
 foreign/java/java-sdk/build.gradle.kts             |    1 -
 scripts/run-examples-from-readme.sh                |   83 +-
 64 files changed, 1859 insertions(+), 1435 deletions(-)
 copy .github/workflows/{publish_csharp_sdk.yml => publish_java_sdk.yml} (54%)
 create mode 100644 .github/workflows/publish_java_sdk_snapshots.yml
 create mode 100644 .markdownlint.json
 create mode 100644 core/examples/README.md
 delete mode 100644 core/integration/tests/examples/mod.rs
 delete mode 100644 core/integration/tests/examples/test_basic.rs
 delete mode 100644 core/integration/tests/examples/test_getting_started.rs
 delete mode 100644 core/integration/tests/examples/test_message_envelope.rs
 delete mode 100644 core/integration/tests/examples/test_message_headers.rs
 create mode 100644 
core/integration/tests/server/scenarios/delete_segments_scenario.rs
 create mode 100644 
core/integration/tests/server/scenarios/server_restart_scenario.rs

Reply via email to