This is an automated email from the ASF dual-hosted git repository.
numinnex pushed a change to branch fix_encryption_2
in repository https://gitbox.apache.org/repos/asf/iggy.git
from 35c80e17c fix encryption
add 3c935261e feat(server-ng): verify trusted-issuer a2a JWT and expose
SDK refresh (#3626)
new 871d1cbfa Merge branch 'master' into fix_encryption_2
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:
Cargo.lock | 2 +
.../src/harness/orchestrator/harness.rs | 13 +
core/integration/tests/sdk/http_refresh.rs | 63 +++++
core/integration/tests/sdk/mod.rs | 2 +
core/integration/tests/server/a2a_jwt/jwt_tests.rs | 195 ++++++++++++-
core/integration/tests/server/mod.rs | 5 +-
core/sdk/src/http/http_client.rs | 67 +++--
core/sdk/src/http/http_transport.rs | 6 +-
core/server-ng/Cargo.toml | 1 +
core/server-ng/LISTENER_SUPPORT_PLAN.md | 286 -------------------
core/server-ng/config.toml | 23 +-
core/server-ng/src/http.rs | 9 +-
core/server-ng/src/http/extractor.rs | 44 +--
core/server-ng/src/http/handlers.rs | 16 +-
.../src/http/jwt => server-ng/src/http}/jwks.rs | 150 ++++++----
core/server-ng/src/http/jwt.rs | 310 +++++++++++++++++++--
core/server/Cargo.toml | 1 +
core/server/config.toml | 23 +-
core/server/src/http/jwt/jwks.rs | 86 ++++--
19 files changed, 842 insertions(+), 460 deletions(-)
create mode 100644 core/integration/tests/sdk/http_refresh.rs
delete mode 100644 core/server-ng/LISTENER_SUPPORT_PLAN.md
copy core/{server/src/http/jwt => server-ng/src/http}/jwks.rs (62%)