This is an automated email from the ASF dual-hosted git repository.
hgruszecki pushed a change to branch stm-output
in repository https://gitbox.apache.org/repos/asf/iggy.git
omit 95c11e235 refactor(metadata):add typed return values to state
handlers, split stm/mod.rs and
add db105ddbf fix(connectors): harden plugin loading and config metadata
(#2713)
add 5f704d192 feat(java): fix integration test failure (#2703)
add 4b184464a feat(repo): add structured YAML issue forms (#2717)
add c8e92163d refactor(metadata):add typed return values to state
handlers, split stm/mod.rs and
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 (95c11e235)
\
N -- N -- N refs/heads/stm-output (c8e92163d)
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/BOT_ISSUE_TEMPLATE.md | 14 --
.github/ISSUE_TEMPLATE/bug_report.yml | 104 +++++++++++++
.../ISSUE_TEMPLATE/config.yml | 17 +--
.github/ISSUE_TEMPLATE/feature_request.yml | 71 +++++++++
.../ISSUE_TEMPLATE/question.yml | 29 +++-
Cargo.lock | 2 +-
DEPENDENCIES.md | 2 +-
PULL_REQUEST_TEMPLATE.md | 3 +-
core/connectors/README.md | 30 +++-
core/connectors/runtime/Cargo.toml | 2 +-
.../connectors/{iceberg.toml => iceberg_sink.toml} | 1 +
.../{quickwit.toml => quickwit_sink.toml} | 1 +
.../{random_v0.toml => random_source_v0.toml} | 0
.../{random_v1.toml => random_source_v1.toml} | 0
.../connectors/{stdout.toml => stdout_sink.toml} | 3 +-
.../src/configs/connectors/local_provider.rs | 27 +++-
core/connectors/runtime/src/main.rs | 162 +++++++++++++++++++--
core/connectors/runtime/src/sink.rs | 2 +-
core/connectors/runtime/src/source.rs | 2 +-
core/connectors/sinks/README.md | 2 +-
.../sinks/elasticsearch_sink/config.toml | 2 +-
core/connectors/sinks/iceberg_sink/config.toml | 2 +-
core/connectors/sinks/postgres_sink/config.toml | 2 +-
core/connectors/sinks/quickwit_sink/config.toml | 2 +-
core/connectors/sinks/stdout_sink/config.toml | 2 +-
core/connectors/sources/README.md | 2 +-
.../sources/elasticsearch_source/config.toml | 2 +-
.../connectors/sources/postgres_source/config.toml | 2 +-
core/connectors/sources/random_source/config.toml | 2 +-
.../client/async/AsyncClientIntegrationTest.java | 7 +-
.../iggy/client/async/AsyncPollMessageTest.java | 6 +-
.../async/tcp/AsyncIggyTcpClientBuilderTest.java | 11 +-
.../iggy/client/blocking/IntegrationTest.java | 4 +
.../blocking/tcp/IggyTcpClientBuilderTest.java | 24 +--
34 files changed, 459 insertions(+), 85 deletions(-)
delete mode 100644 .github/BOT_ISSUE_TEMPLATE.md
create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml
copy bdd/csharp/Dockerfile => .github/ISSUE_TEMPLATE/config.yml (71%)
create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yml
copy bdd/csharp/Dockerfile => .github/ISSUE_TEMPLATE/question.yml (58%)
rename core/connectors/runtime/example_config/connectors/{iceberg.toml =>
iceberg_sink.toml} (98%)
rename core/connectors/runtime/example_config/connectors/{quickwit.toml =>
quickwit_sink.toml} (99%)
rename core/connectors/runtime/example_config/connectors/{random_v0.toml =>
random_source_v0.toml} (100%)
rename core/connectors/runtime/example_config/connectors/{random_v1.toml =>
random_source_v1.toml} (100%)
rename core/connectors/runtime/example_config/connectors/{stdout.toml =>
stdout_sink.toml} (97%)