This is an automated email from the ASF dual-hosted git repository.
hgruszecki pushed a change to branch refactor-ci
in repository https://gitbox.apache.org/repos/asf/iggy.git
discard e49c012d chore(ci): refactor CI workflows
add 1dffd350 feat(sdk): Support `from_connection_string()` for
`QuicClient` and `HttpClient` (#1803)
add 15181ee7 chore(bench): fix Dockerfile paths (#1827)
add a418e823 feat: split transport from client, add heartbeat and
reconnection support (#1809)
add a3c090af feat(js): add node ci (#1810)
add c84d3166 fix(server): fix getting first messages when segment was
removed (#1828)
add d1c9077c fix(python): fix property name of partitions_count in Python
client (#1808)
add 7a6152cf chore(ci): refactor CI workflows
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 (e49c012d)
\
N -- N -- N refs/heads/refactor-ci (7a6152cf)
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:
.asf.yaml | 4 +-
.github/changed-files-config.json | 6 +
.github/workflows/ci-check-node-sdk.yml | 86 +++++
.github/workflows/ci-check-pr.yml | 10 +-
.../{publish_cli.yml => publish_node_sdk.yml} | 101 +++---
core/bench/dashboard/README.md | 4 +-
core/bench/dashboard/server/Dockerfile | 10 +-
core/bench/dashboard/server/docker-entrypoint.sh | 2 +-
core/bench/dashboard/server/src/main.rs | 6 +-
core/common/src/lib.rs | 6 +-
.../configuration/auth_config/connection_string.rs | 349 ++++++++++++++-------
.../auth_config/connection_string_options.rs | 74 +----
.../{config.rs => http_client_config.rs} | 38 +--
.../http_config/http_client_config_builder.rs} | 18 +-
.../http_config/http_connection_string_options.rs | 87 +++++
.../src/types/configuration/http_config/mod.rs | 4 +-
.../src/types/configuration/quick_config/mod.rs | 1 +
.../quick_config/quic_client_config.rs | 27 +-
.../quick_config/quic_connection_string_options.rs | 281 +++++++++++++++++
.../src/types/configuration/tcp_config/mod.rs | 1 +
.../configuration/tcp_config/tcp_client_config.rs | 6 +-
.../tcp_config/tcp_connection_string_options.rs | 173 ++++++++++
core/integration/src/http_client.rs | 3 +-
core/integration/src/quic_client.rs | 3 +-
core/sdk/src/client_provider.rs | 9 +-
core/sdk/src/clients/client.rs | 201 +++++++++++-
core/sdk/src/clients/client_builder.rs | 210 ++++++++++++-
core/sdk/src/http/http_client.rs | 222 ++++++++++++-
core/sdk/src/http/mod.rs | 1 -
core/sdk/src/prelude.rs | 17 +-
core/sdk/src/quic/mod.rs | 1 -
core/sdk/src/quic/quick_client.rs | 314 +++++++++++++++++-
core/sdk/src/quic/quick_config.rs | 232 --------------
core/sdk/src/tcp/tcp_client.rs | 285 ++++++++++++++++-
core/server/src/streaming/partitions/messages.rs | 7 +-
foreign/node/README.md | 7 +-
foreign/node/package-lock.json | 135 ++++++--
foreign/node/package.json | 8 +-
foreign/node/src/client/client.socket.ts | 208 +++++++-----
foreign/node/src/client/client.transport.ts | 154 +++++++++
foreign/node/src/client/client.ts | 110 +++----
foreign/node/src/client/client.type.ts | 27 +-
foreign/node/src/client/index.ts | 2 -
foreign/node/src/client/tcp.client.ts | 35 ---
foreign/node/src/client/tls.client.ts | 37 ---
foreign/node/src/debug-send.ts | 102 +++---
foreign/node/src/debug.ts | 20 +-
foreign/node/src/e2e/tcp.consumer-group.e2e.ts | 2 +-
foreign/node/src/stream/consumer-stream.ts | 37 ++-
foreign/node/src/tcp.e2e.ts | 11 +-
foreign/node/src/tls.system.e2e.ts | 11 +-
foreign/node/src/wire/error.code.ts | 310 +++++++++++-------
.../src/wire/message/send-messages.command.test.ts | 2 +-
.../node/src/wire/stream/create-stream.command.ts | 2 +-
foreign/python/iggy_py.pyi | 2 +-
foreign/python/src/topic.rs | 2 +-
56 files changed, 3005 insertions(+), 1018 deletions(-)
create mode 100644 .github/workflows/ci-check-node-sdk.yml
copy .github/workflows/{publish_cli.yml => publish_node_sdk.yml} (51%)
rename core/common/src/types/configuration/http_config/{config.rs =>
http_client_config.rs} (57%)
rename core/{sdk/src/http/http_config.rs =>
common/src/types/configuration/http_config/http_client_config_builder.rs} (79%)
create mode 100644
core/common/src/types/configuration/http_config/http_connection_string_options.rs
create mode 100644
core/common/src/types/configuration/quick_config/quic_connection_string_options.rs
create mode 100644
core/common/src/types/configuration/tcp_config/tcp_connection_string_options.rs
delete mode 100644 core/sdk/src/quic/quick_config.rs
create mode 100644 foreign/node/src/client/client.transport.ts
delete mode 100644 foreign/node/src/client/tcp.client.ts
delete mode 100644 foreign/node/src/client/tls.client.ts