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

maciej pushed a change to branch java-sdk-improvements
in repository https://gitbox.apache.org/repos/asf/iggy.git


    omit 8a7f5be98 feat(java): refactor SDK with fluent builder API and 
exception hierarchy
     add 6e3a6d132 docs: update PR template and contributing guidelines (#2601)
     add 052431382 refactor(server): compile-time env var mappings eliminate 
runtime ambiguity (#2614)
     add af94c3d73 feat(java): refactor SDK with fluent builder API and 
exception hierarchy

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   (8a7f5be98)
            \
             N -- N -- N   refs/heads/java-sdk-improvements (af94c3d73)

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                                         | 178 ++--
 Cargo.toml                                         |   8 +
 DEPENDENCIES.md                                    |  60 +-
 PULL_REQUEST_TEMPLATE                              |  33 -
 PULL_REQUEST_TEMPLATE.md                           |  57 ++
 README.md                                          |   8 +-
 bdd/docker-compose.yml                             |  34 +-
 core/ai/mcp/Cargo.toml                             |   3 +-
 core/ai/mcp/src/configs.rs                         |  39 +-
 core/ai/mcp/src/main.rs                            |   2 +-
 core/common/Cargo.toml                             |   3 +-
 core/common/src/configs/mod.rs                     | 893 ---------------------
 core/common/src/lib.rs                             |   3 +-
 .../{bench/dashboard/shared => 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 ++++
 .../random => configs/src/configs_impl}/mod.rs     |  28 +-
 core/configs/src/configs_impl/parsing.rs           | 196 +++++
 .../configs/src/configs_impl/traits.rs             |  37 +-
 .../configs/src/configs_impl/typed_env_provider.rs | 597 ++++++++++++++
 .../configs/src/lib.rs                             |  10 +-
 .../dashboard/shared => configs_derive}/Cargo.toml |  16 +-
 core/configs_derive/src/config_env.rs              | 583 ++++++++++++++
 core/configs_derive/src/lib.rs                     | 120 +++
 core/connectors/runtime/Cargo.toml                 |   2 +
 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     |  53 +-
 core/connectors/runtime/src/main.rs                |   2 +-
 core/integration/Cargo.toml                        |   1 +
 core/integration/src/test_connectors_runtime.rs    |   5 -
 core/integration/src/test_server.rs                |   3 +-
 core/integration/tests/config_provider/mod.rs      |  23 +-
 .../data_integrity/verify_after_server_restart.rs  |   2 +-
 core/server/Cargo.toml                             |   1 +
 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 +-
 .../iggy/examples/async/AsyncConsumerExample.java  |   4 +-
 .../apache/iggy/examples/async/AsyncProducer.java  |  12 +-
 examples/rust/README.md                            |   2 +-
 .../iggy/connector/flink/source/IggySource.java    |  17 +-
 .../flink/example/AsyncTcpMessagePollTest.java     |  10 +-
 .../flink/example/AsyncTcpMessageSendTest.java     |  10 +-
 .../iggy/flink/example/SendTextDataTest.java       |   7 +-
 .../pinot/consumer/IggyPartitionGroupConsumer.java |   9 +-
 .../pinot/metadata/IggyStreamMetadataProvider.java |   9 +-
 .../iggy/client/async/tcp/AsyncIggyTcpClient.java  |   4 +-
 .../iggy/client/async/tcp/UsersTcpClient.java      |   3 +-
 .../iggy/client/blocking/http/UsersHttpClient.java |   3 +-
 .../iggy/client/blocking/tcp/UsersTcpClient.java   |   3 +-
 .../async/tcp/AsyncIggyTcpClientBuilderTest.java   |  17 +-
 .../client/blocking/tcp/BytesSerializerTest.java   |  13 +-
 .../blocking/tcp/IggyTcpClientBuilderTest.java     |  96 ++-
 foreign/node/src/e2e/tcp.cluster.e2e.ts            |   2 +-
 73 files changed, 2512 insertions(+), 1496 deletions(-)
 delete mode 100644 PULL_REQUEST_TEMPLATE
 create mode 100644 PULL_REQUEST_TEMPLATE.md
 delete mode 100644 core/common/src/configs/mod.rs
 copy core/{bench/dashboard/shared => 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/random => 
configs/src/configs_impl}/mod.rs (50%)
 create mode 100644 core/configs/src/configs_impl/parsing.rs
 copy 
foreign/java/java-sdk/src/main/java/org/apache/iggy/client/blocking/IggyBaseClient.java
 => 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/consumergroup/ConsumerGroupMember.java
 => core/configs/src/lib.rs (75%)
 copy core/{bench/dashboard/shared => configs_derive}/Cargo.toml (81%)
 create mode 100644 core/configs_derive/src/config_env.rs
 create mode 100644 core/configs_derive/src/lib.rs
 rename core/{configs/server.toml => server/config.toml} (100%)

Reply via email to