This is an automated email from the ASF dual-hosted git repository.
hgruszecki pushed a change to branch refactor-binary-6-server-integration
in repository https://gitbox.apache.org/repos/asf/iggy.git
omit ac31fe9ae refactor(server): replace ServerCommand enum and binary
mapper with wire types
add 93d7f8970 ci: split post-merge monolith and harden Codecov uploads
(#3006)
add 601e59776 feat(go): send SDK version in login request (#3025)
add cea62a95d fix(security): replace SecretString with String for API
response tokens (#3008)
add 3727d66d2 chore(deps): bump requests from 2.32.5 to 2.33.0 in
/foreign/python (#3031)
add 4659a2b51 ci: allow `deps-dev` scope in PR title (#3035)
add a78dd0726 chore(deps-dev): bump picomatch from 4.0.3 to 4.0.4 in
/foreign/node (#3034)
add 38e392abe chore(deps-dev): bump picomatch from 4.0.3 to 4.0.4 in
/examples/node (#3033)
add 35892b4f2 refactor(server): replace ServerCommand enum and binary
mapper with wire types
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 (ac31fe9ae)
\
N -- N -- N refs/heads/refactor-binary-6-server-integration
(35892b4f2)
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/actions/rust/pre-merge/action.yml | 3 +
.github/workflows/_common.yml | 1 +
.github/workflows/_test.yml | 1 +
.../{post-merge.yml => coverage-baseline.yml} | 262 ++---------
.github/workflows/edge-release.yml | 123 +++++
.github/workflows/post-merge.yml | 506 +--------------------
.github/workflows/pre-merge.yml | 4 +
Cargo.lock | 6 +-
Cargo.toml | 6 +-
DEPENDENCIES.md | 6 +-
bdd/python/uv.lock | 2 +-
codecov.yml | 29 +-
core/binary_protocol/Cargo.toml | 2 +-
.../create_personal_access_token.rs | 7 +-
core/cli/src/commands/binary_system/login.rs | 3 +-
core/common/Cargo.toml | 2 +-
core/common/src/traits/binary_mapper.rs | 5 +-
.../src/types/permissions/personal_access_token.rs | 16 +-
core/common/src/types/user/user_identity_info.rs | 17 +-
.../test_pat_login_options.rs | 3 +-
.../verify_no_plaintext_credentials_on_disk.rs | 3 +-
core/integration/tests/mcp/mod.rs | 4 +-
.../server/scenarios/authentication_scenario.rs | 3 +-
.../scenarios/cross_protocol_pat_scenario.rs | 5 +-
.../tests/server/scenarios/user_scenario.rs | 9 +-
core/sdk/Cargo.toml | 2 +-
core/sdk/src/http/http_client.rs | 3 +-
core/server/src/http/mapper.rs | 3 +-
core/server/src/http/personal_access_tokens.rs | 6 +-
examples/node/package-lock.json | 6 +-
examples/python/uv.lock | 2 +-
foreign/go/contracts/version.go | 2 -
foreign/go/internal/command/session.go | 4 +-
.../command/session_test.go} | 37 +-
foreign/node/package-lock.json | 48 +-
foreign/python/Cargo.toml | 2 +-
foreign/python/uv.lock | 6 +-
37 files changed, 273 insertions(+), 876 deletions(-)
copy .github/workflows/{post-merge.yml => coverage-baseline.yml} (62%)
create mode 100644 .github/workflows/edge-release.yml
copy foreign/go/{client/tcp/tcp_clients_management.go =>
internal/command/session_test.go} (56%)