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 e6ac1afe5 feat(java): refactor SDK with fluent builder API and
exception hierarchy
add 42a6ad72f fix(configs): support internally-tagged enums in ConfigEnv
derive macro (#2631)
add 7f6d3fed9 chore(sdk): Adds Rust example for message compression using
user_headers (#2613)
new fd5ced5ad 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 (e6ac1afe5)
\
N -- N -- N refs/heads/java-sdk-improvements (fd5ced5ad)
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.
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.github/workflows/_common.yml | 1 +
Cargo.lock | 3 +
.../configs/src/configs_impl/typed_env_provider.rs | 4 +-
core/configs_derive/src/config_env.rs | 20 +-
core/connectors/runtime/src/configs/runtime.rs | 1 +
core/integration/Cargo.toml | 2 +
core/integration/tests/config_provider/mod.rs | 157 +++++++++++-
examples/rust/Cargo.toml | 17 +-
examples/rust/README.md | 11 +-
.../message-headers/message-compression/README.md | 282 +++++++++++++++++++++
.../message-compression/consumer/main.rs | 89 +++++++
.../message-compression/producer/main.rs | 101 ++++++++
.../{ => message-type}/consumer/main.rs | 0
.../{ => message-type}/producer/main.rs | 0
examples/rust/src/shared/codec.rs | 112 ++++++++
examples/rust/src/shared/mod.rs | 1 +
foreign/java/java-sdk/build.gradle.kts | 30 +--
17 files changed, 803 insertions(+), 28 deletions(-)
create mode 100644
examples/rust/src/message-headers/message-compression/README.md
create mode 100644
examples/rust/src/message-headers/message-compression/consumer/main.rs
create mode 100644
examples/rust/src/message-headers/message-compression/producer/main.rs
rename examples/rust/src/message-headers/{ => message-type}/consumer/main.rs
(100%)
rename examples/rust/src/message-headers/{ => message-type}/producer/main.rs
(100%)
create mode 100644 examples/rust/src/shared/codec.rs