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

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


    omit dc3a2991 chore(repo): add markdown linter to CI
     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 7659e937 chore(repo): add markdown linter to CI

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   (dc3a2991)
            \
             N -- N -- N   refs/heads/markdownlint (7659e937)

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 +++++
 Cargo.lock                                         |   1 -
 README.md                                          |  64 ++---
 core/cli/src/args/user.rs                          |   4 +-
 core/common/src/types/args/mod.rs                  |   2 +-
 core/common/src/types/identifier/mod.rs            |   2 +-
 core/common/src/types/message/messages_batch.rs    |   4 +-
 core/connectors/README.md                          |  16 +-
 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                        |   1 -
 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 -
 core/integration/tests/server/scenarios/mod.rs     |   1 +
 .../server/scenarios/server_restart_scenario.rs    | 280 +++++++++++++++++++++
 core/integration/tests/server/tcp_server.rs        |  50 +++-
 core/sdk/src/clients/producer.rs                   |   2 +-
 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                           |  23 +-
 foreign/go/samples/consumer/README.md              |   4 +-
 foreign/go/samples/producer/README.md              |   4 +-
 foreign/java/java-sdk/build.gradle.kts             |   1 -
 scripts/run-examples-from-readme.sh                |  83 ++++--
 52 files changed, 844 insertions(+), 729 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 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/server_restart_scenario.rs

Reply via email to