gitlab-api 25.20.1__tar.gz → 25.21.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {gitlab_api-25.20.1/gitlab_api.egg-info → gitlab_api-25.21.0}/PKG-INFO +2 -2
- {gitlab_api-25.20.1 → gitlab_api-25.21.0}/README.md +1 -1
- {gitlab_api-25.20.1 → gitlab_api-25.21.0}/gitlab_api/agent_server.py +1 -1
- {gitlab_api-25.20.1 → gitlab_api-25.21.0}/gitlab_api/mcp_server.py +1 -1
- {gitlab_api-25.20.1 → gitlab_api-25.21.0/gitlab_api.egg-info}/PKG-INFO +2 -2
- {gitlab_api-25.20.1 → gitlab_api-25.21.0}/pyproject.toml +1 -1
- {gitlab_api-25.20.1 → gitlab_api-25.21.0}/LICENSE +0 -0
- {gitlab_api-25.20.1 → gitlab_api-25.21.0}/MANIFEST.in +0 -0
- {gitlab_api-25.20.1 → gitlab_api-25.21.0}/gitlab_api/__init__.py +0 -0
- {gitlab_api-25.20.1 → gitlab_api-25.21.0}/gitlab_api/__main__.py +0 -0
- {gitlab_api-25.20.1 → gitlab_api-25.21.0}/gitlab_api/api_client.py +0 -0
- {gitlab_api-25.20.1 → gitlab_api-25.21.0}/gitlab_api/auth.py +0 -0
- {gitlab_api-25.20.1 → gitlab_api-25.21.0}/gitlab_api/gitlab_gql.py +0 -0
- {gitlab_api-25.20.1 → gitlab_api-25.21.0}/gitlab_api/gitlab_input_models.py +0 -0
- {gitlab_api-25.20.1 → gitlab_api-25.21.0}/gitlab_api/gitlab_response_models.py +0 -0
- {gitlab_api-25.20.1 → gitlab_api-25.21.0}/gitlab_api/mcp_config.json +0 -0
- {gitlab_api-25.20.1 → gitlab_api-25.21.0}/gitlab_api.egg-info/SOURCES.txt +0 -0
- {gitlab_api-25.20.1 → gitlab_api-25.21.0}/gitlab_api.egg-info/dependency_links.txt +0 -0
- {gitlab_api-25.20.1 → gitlab_api-25.21.0}/gitlab_api.egg-info/entry_points.txt +0 -0
- {gitlab_api-25.20.1 → gitlab_api-25.21.0}/gitlab_api.egg-info/requires.txt +0 -0
- {gitlab_api-25.20.1 → gitlab_api-25.21.0}/gitlab_api.egg-info/top_level.txt +0 -0
- {gitlab_api-25.20.1 → gitlab_api-25.21.0}/requirements.txt +0 -0
- {gitlab_api-25.20.1 → gitlab_api-25.21.0}/scripts/validate_a2a_agent.py +0 -0
- {gitlab_api-25.20.1 → gitlab_api-25.21.0}/scripts/validate_agent.py +0 -0
- {gitlab_api-25.20.1 → gitlab_api-25.21.0}/setup.cfg +0 -0
- {gitlab_api-25.20.1 → gitlab_api-25.21.0}/test_setup.py +0 -0
- {gitlab_api-25.20.1 → gitlab_api-25.21.0}/tests/__init__.py +0 -0
- {gitlab_api-25.20.1 → gitlab_api-25.21.0}/tests/conftest.py +0 -0
- {gitlab_api-25.20.1 → gitlab_api-25.21.0}/tests/test_api_wrapper.py +0 -0
- {gitlab_api-25.20.1 → gitlab_api-25.21.0}/tests/test_gitlab_a2a_validation.py +0 -0
- {gitlab_api-25.20.1 → gitlab_api-25.21.0}/tests/test_gitlab_api_brute_force_coverage.py +0 -0
- {gitlab_api-25.20.1 → gitlab_api-25.21.0}/tests/test_gitlab_mcp_validation.py +0 -0
- {gitlab_api-25.20.1 → gitlab_api-25.21.0}/tests/test_gitlab_models.py +0 -0
- {gitlab_api-25.20.1 → gitlab_api-25.21.0}/tests/test_verify_agent.py +0 -0
- {gitlab_api-25.20.1 → gitlab_api-25.21.0}/tests/verify_a2a_queries.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: gitlab-api
|
|
3
|
-
Version: 25.
|
|
3
|
+
Version: 25.21.0
|
|
4
4
|
Summary: GitLab API + MCP Server + A2A Server
|
|
5
5
|
Author-email: Audel Rouhi <knucklessg1@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -49,7 +49,7 @@ Dynamic: license-file
|
|
|
49
49
|

|
|
50
50
|

|
|
51
51
|
|
|
52
|
-
*Version: 25.
|
|
52
|
+
*Version: 25.21.0*
|
|
53
53
|
|
|
54
54
|
## Overview
|
|
55
55
|
|
|
@@ -38,7 +38,7 @@ from starlette.responses import JSONResponse
|
|
|
38
38
|
from gitlab_api.auth import get_client
|
|
39
39
|
from gitlab_api.gitlab_response_models import Response
|
|
40
40
|
|
|
41
|
-
__version__ = "25.
|
|
41
|
+
__version__ = "25.21.0"
|
|
42
42
|
print(f"Gitlab MCP v{__version__}", file=sys.stderr)
|
|
43
43
|
|
|
44
44
|
logger = get_logger(name="mcp_server")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: gitlab-api
|
|
3
|
-
Version: 25.
|
|
3
|
+
Version: 25.21.0
|
|
4
4
|
Summary: GitLab API + MCP Server + A2A Server
|
|
5
5
|
Author-email: Audel Rouhi <knucklessg1@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -49,7 +49,7 @@ Dynamic: license-file
|
|
|
49
49
|

|
|
50
50
|

|
|
51
51
|
|
|
52
|
-
*Version: 25.
|
|
52
|
+
*Version: 25.21.0*
|
|
53
53
|
|
|
54
54
|
## Overview
|
|
55
55
|
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "gitlab-api"
|
|
7
|
-
version = "25.
|
|
7
|
+
version = "25.21.0"
|
|
8
8
|
description = "GitLab API + MCP Server + A2A Server"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
classifiers = [ "Development Status :: 5 - Production/Stable", "License :: Public Domain", "Environment :: Console", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 3",]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|