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

hubcio pushed a change to branch fix/docs-audit-clients
in repository https://gitbox.apache.org/repos/asf/iggy.git


 discard 5334d79ac fix(sdk): preserve consumer progress and client error 
handling
     add cfd3dff6a feat(cpp): add stream, topic, and partition functions to 
high level client (#4022)
     add ac5c7bf3a feat(connectors): add the HTTP source webhook gateway 
connector (#3798)
     add 309662d33 fix(ci): run integration tests when a binary they launch 
changes (#4131)
     add 6138eb9fd chore(deps): Bump the node group across 2 directories with 3 
updates (#4125)
     add 3b9320072 chore(deps): Bump github.com/klauspost/compress from 1.19.2 
to 1.20.0 in /bdd/go in the go group across 1 directory (#4147)
     add 2019e145d chore(deps): Bump the web group across 1 directory with 7 
updates (#4124)
     add dc54783f2 fix(server): resolve non-Linux clippy errors in shard 
binding (#4144)
     add 2b2e61253 fix(connectors): draw the retry delay inside the cap instead 
of clamping (#4129)
     add a4f38467b chore(deps): Bump the python group across 3 directories with 
1 update (#4110)
     add 262117cd1 perf(partitions): cut persisted-mode disk traffic per 
acknowledgment (#4146)
     add 67e14c26b fix(connectors): close the source instance a failed start 
leaves behind (#4064)
     add dd35f3f34 fix(sdk): preserve consumer progress and client error 
handling
     add a236d0812 fix(sdk): correct partition selection and client cleanup

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   (5334d79ac)
            \
             N -- N -- N   refs/heads/fix/docs-audit-clients (a236d0812)

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:
 .claude/skills/connector-source/SKILL.md           |   36 +-
 .claude/skills/connector-testing/SKILL.md          |   51 +
 .github/actions/rust/pre-merge/action.yml          |   15 +
 Cargo.lock                                         |   27 +
 Cargo.toml                                         |    2 +
 .../features/step_definitions/messaging_steps.cpp  |   31 +-
 bdd/go/go.mod                                      |    2 +-
 bdd/go/go.sum                                      |    4 +-
 bdd/python/uv.lock                                 |   38 +-
 core/ai/mcp/README.md                              |   15 +
 core/ai/mcp/src/log.rs                             |   80 +-
 core/ai/mcp/src/main.rs                            |   31 +-
 core/ai/mcp/src/service/mod.rs                     |   11 +-
 core/common/src/consumer_group_client_state.rs     |    3 +-
 core/common/src/traits/binary_impls/messages.rs    |    3 +-
 core/common/src/traits/binary_transport.rs         |    3 +-
 core/configs/src/server_config/defaults.rs         |    2 +
 core/configs/src/server_config/displays.rs         |    3 +-
 core/configs/src/server_config/partition.rs        |   30 +
 .../connectors/http_source_github.toml             |   60 +
 .../connectors/http_source_partner.toml            |   55 +
 core/connectors/runtime/src/main.rs                |   27 +-
 core/connectors/runtime/src/manager/source.rs      |  226 +-
 core/connectors/runtime/src/metrics.rs             |    2 +-
 core/connectors/runtime/src/sink.rs                |   13 +-
 core/connectors/runtime/src/source.rs              |  309 +-
 core/connectors/sdk/src/retry.rs                   |   91 +-
 core/connectors/sdk/src/sink.rs                    |    7 +
 core/connectors/sdk/src/source.rs                  |   10 +
 core/connectors/sinks/doris_sink/README.md         |    4 +-
 core/connectors/sources/README.md                  |    3 +-
 .../{random_source => http_source}/Cargo.toml      |   19 +-
 core/connectors/sources/http_source/README.md      |  382 +++
 core/connectors/sources/http_source/config.toml    |   68 +
 core/connectors/sources/http_source/src/auth.rs    |  463 +++
 core/connectors/sources/http_source/src/lib.rs     | 2536 ++++++++++++++++
 .../sources/http_source/src/management.rs          | 1535 ++++++++++
 core/connectors/sources/http_source/src/metrics.rs |  497 ++++
 core/connectors/sources/http_source/src/routes.rs  |  666 +++++
 core/connectors/sources/http_source/src/server.rs  | 3128 ++++++++++++++++++++
 core/connectors/sources/http_source/src/state.rs   | 1437 +++++++++
 core/connectors/sources/http_source/src/types.rs   |  275 ++
 core/integration/Cargo.toml                        |    1 +
 core/integration/tests/cluster/crash_durability.rs |   12 +-
 .../tests/connectors/fixtures/http/mod.rs          |    5 +
 .../tests/connectors/fixtures/http/source.rs       |  125 +
 core/integration/tests/connectors/fixtures/mod.rs  |    6 +-
 .../tests/connectors/http/http_source.rs           |  580 ++++
 core/integration/tests/connectors/http/mod.rs      |    3 +
 .../tests/connectors/{random => http}/source.toml  |    2 +-
 .../http/source_config/http_github.toml}           |   41 +-
 .../http/source_config/http_partner.toml}          |   37 +-
 .../tests/connectors/random/random_source.rs       |  120 +-
 core/integration/tests/mcp/mod.rs                  |   55 +-
 core/integration/tests/sdk/consumer_offset.rs      |   61 +
 core/journal/src/partition_journal.rs              |  701 ++++-
 core/journal/src/partition_journal/segments.rs     |   18 +-
 core/partitions/src/iggy_index_writer.rs           |   23 +-
 core/partitions/src/iggy_partition.rs              |   64 +-
 core/partitions/src/install_backup.rs              |   21 +
 core/partitions/src/persistence.rs                 |  223 +-
 core/sdk/README.md                                 |    2 +
 .../stream_builder/build/build_iggy_consumer.rs    |    2 +-
 .../stream_builder/config/config_iggy_consumer.rs  |   25 +-
 core/server/config.toml                            |   12 +
 core/server/src/dispatch/partition.rs              |    6 +-
 core/server/src/partition_helpers.rs               |   38 +-
 core/server/src/segment_recovery.rs                |   13 +-
 core/server/src/server_error.rs                    |    7 +-
 core/server/src/shard_allocator.rs                 |   16 +
 core/simulator/src/storage/tests.rs                |  138 +-
 .../Utils.cs                                       |    1 -
 .../src/Iggy_SDK.Examples.Shared/ExampleHelpers.cs |   29 +-
 examples/go/go.mod                                 |    2 +-
 examples/go/go.sum                                 |    4 +-
 .../apache/iggy/examples/async/AsyncConsumer.java  |   17 +-
 .../apache/iggy/examples/ConsumerOffsetTest.java   |   19 +-
 examples/node/package-lock.json                    |   10 +-
 examples/node/package.json                         |    2 +-
 examples/python/pyproject.toml                     |    2 +-
 examples/python/uv.lock                            |   40 +-
 .../stream-builder/stream-consumer-config/main.rs  |    2 +-
 foreign/cpp/include/iggy.hpp                       | 1810 +++++++++--
 foreign/cpp/src/client.cpp                         |  192 +-
 foreign/cpp/src/client.rs                          |  157 +-
 foreign/cpp/src/lib.rs                             |   58 +-
 foreign/cpp/src/type_conversion.rs                 |  175 +-
 foreign/cpp/src/type_conversions.cpp               |  118 +
 foreign/cpp/tests/e2e/client.cpp                   |   86 +-
 foreign/cpp/tests/e2e/consumer_group.cpp           |  162 +-
 foreign/cpp/tests/e2e/message.cpp                  |  156 +-
 foreign/cpp/tests/e2e/partition.cpp                |  438 ++-
 foreign/cpp/tests/e2e/stream.cpp                   | 1039 +++----
 foreign/cpp/tests/e2e/test_helpers.hpp             |   34 +-
 foreign/cpp/tests/e2e/topic.cpp                    | 1795 ++++++-----
 foreign/cpp/tests/unit/unit_tests.cpp              |  358 ++-
 foreign/csharp/Iggy_SDK/IggyClient/IIggyTopic.cs   |    2 +-
 .../Implementations/TcpMessageStream.Vsr.cs        |    5 +-
 .../csharp/Iggy_SDK/Publishers/IggyPublisher.cs    |   36 +-
 .../Iggy_SDK/Vsr/ConsumerGroupClientState.cs       |    4 +-
 .../ClientTests/ExampleHelpersTests.cs             |   80 +
 .../csharp/Iggy_SDK_Tests/Iggy_SDK_Tests.csproj    |    1 +
 .../PublisherTests/IggyTypedPublisherTests.cs      |   49 +
 foreign/csharp/README.md                           |    2 +-
 foreign/go/go.mod                                  |    2 +-
 foreign/go/go.sum                                  |    4 +-
 foreign/node/package-lock.json                     |  142 +-
 foreign/node/package.json                          |    2 +-
 foreign/python/uv.lock                             |   38 +-
 web/package-lock.json                              |  187 +-
 web/package.json                                   |   14 +-
 web/src/lib/components/Breadcrumbs.svelte          |    5 +-
 .../components/Modals/TopicSettingsModal.svelte    |    3 +-
 .../topics/[topicId=i32]/+page.svelte              |    2 +-
 114 files changed, 18653 insertions(+), 3188 deletions(-)
 create mode 100644 
core/connectors/runtime/example_config/connectors/http_source_github.toml
 create mode 100644 
core/connectors/runtime/example_config/connectors/http_source_partner.toml
 copy core/connectors/sources/{random_source => http_source}/Cargo.toml (80%)
 create mode 100644 core/connectors/sources/http_source/README.md
 create mode 100644 core/connectors/sources/http_source/config.toml
 create mode 100644 core/connectors/sources/http_source/src/auth.rs
 create mode 100644 core/connectors/sources/http_source/src/lib.rs
 create mode 100644 core/connectors/sources/http_source/src/management.rs
 create mode 100644 core/connectors/sources/http_source/src/metrics.rs
 create mode 100644 core/connectors/sources/http_source/src/routes.rs
 create mode 100644 core/connectors/sources/http_source/src/server.rs
 create mode 100644 core/connectors/sources/http_source/src/state.rs
 create mode 100644 core/connectors/sources/http_source/src/types.rs
 create mode 100644 core/integration/tests/connectors/fixtures/http/source.rs
 create mode 100644 core/integration/tests/connectors/http/http_source.rs
 copy core/integration/tests/connectors/{random => http}/source.toml (94%)
 copy core/{connectors/sources/random_source/config.toml => 
integration/tests/connectors/http/source_config/http_github.toml} (53%)
 copy core/{connectors/sources/random_source/config.toml => 
integration/tests/connectors/http/source_config/http_partner.toml} (59%)
 create mode 100644 foreign/cpp/src/type_conversions.cpp
 create mode 100644 
foreign/csharp/Iggy_SDK_Tests/ClientTests/ExampleHelpersTests.cs

Reply via email to