This is an automated email from the ASF dual-hosted git repository.

dependabot[bot] pushed a change to branch dependabot/uv/pyasn1-0.6.4
in repository https://gitbox.apache.org/repos/asf/doris-mcp-server.git


    omit 58cec7d  Bump pyasn1 from 0.6.1 to 0.6.4
     add 8e38415  docs: document MCP protocol migration (#110)
     add f973132  docs: align release documentation and commands (#111)
     add ddb1b5d  fix: require headers for token management auth (#112)
     add d455473  fix: remove default authentication secrets (#113)
     add 7d0ac3a  fix: reject unauthenticated non-loopback binds (#114)
     add 10a0d30  refactor: unify bearer credentials (#115)
     add f78c00e  fix: enforce external OAuth token context (#116)
     add 30dc5f4  fix: return external OAuth bearer challenges (#117)
     add 8beb7aa  fix: bind Doris OAuth tokens to MCP resource (#118)
     add b2fa19d  fix: validate DCR application types (#119)
     add fa9c34d  fix: identify OAuth authorization responses (#120)
     add 6500b47  fix: bind authorization code exchanges to resource (#121)
     add b29dcd0  feat: support OAuth client metadata documents (#122)
     add 88fdc23  fix: persist static tokens as digests (#123)
     add 07d7956  Bump tornado from 6.5.1 to 6.5.7 (#105)
     add e3f402e  chore(deps): bump pyasn1 from 0.6.1 to 0.6.4

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   (58cec7d)
            \
             N -- N -- N   refs/heads/dependabot/uv/pyasn1-0.6.4 (e3f402e)

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:
 .env.example                                       |  62 +-
 CHANGELOG.md                                       | 153 +++++
 Makefile                                           |  12 +-
 README.md                                          | 528 +++++++++++++----
 docker-compose.yml                                 |   7 +-
 doris_mcp_server/auth/auth_middleware.py           |  90 ++-
 .../auth/doris_oauth_client_metadata.py            | 522 +++++++++++++++++
 doris_mcp_server/auth/doris_oauth_handlers.py      |  71 ++-
 doris_mcp_server/auth/doris_oauth_provider.py      | 186 +++++-
 doris_mcp_server/auth/doris_oauth_redirects.py     | 161 +++++-
 doris_mcp_server/auth/doris_oauth_store.py         |   4 +
 doris_mcp_server/auth/doris_oauth_types.py         |   2 +
 doris_mcp_server/auth/mcp_auth_middleware.py       |  49 +-
 doris_mcp_server/auth/oauth_client.py              | 100 +++-
 doris_mcp_server/auth/oauth_handlers.py            |  21 +-
 doris_mcp_server/auth/oauth_provider.py            |  80 ++-
 doris_mcp_server/auth/oauth_resource.py            | 143 +++++
 doris_mcp_server/auth/oauth_token_validation.py    | 192 +++++++
 doris_mcp_server/auth/oauth_types.py               |  10 +-
 doris_mcp_server/auth/token_handlers.py            |  37 +-
 doris_mcp_server/auth/token_manager.py             | 624 ++++++++++++---------
 doris_mcp_server/auth/token_security_middleware.py |  17 +-
 doris_mcp_server/main.py                           |  32 +-
 doris_mcp_server/multiworker_app.py                |  22 +-
 doris_mcp_server/utils/auth_credentials.py         |  95 ++++
 doris_mcp_server/utils/config.py                   | 423 +++++++++++++-
 doris_mcp_server/utils/db.py                       |  42 --
 doris_mcp_server/utils/secret_policy.py            | 136 +++++
 doris_mcp_server/utils/security.py                 | 208 ++++---
 pyproject.toml                                     |   5 +-
 start_server.sh                                    |   4 +-
 test/auth/test_doris_oauth_client_metadata.py      | 549 ++++++++++++++++++
 test/auth/test_doris_oauth_routes.py               | 433 +++++++++++++-
 test/auth/test_doris_oauth_store.py                |   4 +-
 test/auth/test_external_oauth_config.py            | 161 ++++++
 test/auth/test_external_oauth_resource.py          | 199 +++++++
 test/auth/test_external_oauth_validation.py        | 162 ++++++
 test/auth/test_oauth_client_context.py             | 193 +++++++
 test/auth/test_oauth_token_validation.py           | 148 +++++
 test/security/test_auth_context.py                 |   5 +-
 test/security/test_bearer_credentials.py           | 269 +++++++++
 test/security/test_effective_auth_config.py        |  78 ++-
 test/security/test_http_bind_auth_policy.py        | 232 ++++++++
 test/security/test_mcp_auth_middleware.py          | 278 ++++++++-
 test/security/test_static_token_bootstrap.py       | 171 ++++++
 test/security/test_token_digest_storage.py         | 340 +++++++++++
 test/security/test_token_management_auth.py        | 160 ++++++
 test/test_product_identity.py                      |  25 +
 tokens.json                                        |  69 +--
 uv.lock                                            |  28 +-
 50 files changed, 6739 insertions(+), 803 deletions(-)
 create mode 100644 CHANGELOG.md
 create mode 100644 doris_mcp_server/auth/doris_oauth_client_metadata.py
 create mode 100644 doris_mcp_server/auth/oauth_resource.py
 create mode 100644 doris_mcp_server/auth/oauth_token_validation.py
 create mode 100644 doris_mcp_server/utils/auth_credentials.py
 create mode 100644 doris_mcp_server/utils/secret_policy.py
 create mode 100644 test/auth/test_doris_oauth_client_metadata.py
 create mode 100644 test/auth/test_external_oauth_config.py
 create mode 100644 test/auth/test_external_oauth_resource.py
 create mode 100644 test/auth/test_external_oauth_validation.py
 create mode 100644 test/auth/test_oauth_client_context.py
 create mode 100644 test/auth/test_oauth_token_validation.py
 create mode 100644 test/security/test_bearer_credentials.py
 create mode 100644 test/security/test_http_bind_auth_policy.py
 create mode 100644 test/security/test_static_token_bootstrap.py
 create mode 100644 test/security/test_token_digest_storage.py
 create mode 100644 test/security/test_token_management_auth.py


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to