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.
Files changed (35) hide show
  1. {gitlab_api-25.20.1/gitlab_api.egg-info → gitlab_api-25.21.0}/PKG-INFO +2 -2
  2. {gitlab_api-25.20.1 → gitlab_api-25.21.0}/README.md +1 -1
  3. {gitlab_api-25.20.1 → gitlab_api-25.21.0}/gitlab_api/agent_server.py +1 -1
  4. {gitlab_api-25.20.1 → gitlab_api-25.21.0}/gitlab_api/mcp_server.py +1 -1
  5. {gitlab_api-25.20.1 → gitlab_api-25.21.0/gitlab_api.egg-info}/PKG-INFO +2 -2
  6. {gitlab_api-25.20.1 → gitlab_api-25.21.0}/pyproject.toml +1 -1
  7. {gitlab_api-25.20.1 → gitlab_api-25.21.0}/LICENSE +0 -0
  8. {gitlab_api-25.20.1 → gitlab_api-25.21.0}/MANIFEST.in +0 -0
  9. {gitlab_api-25.20.1 → gitlab_api-25.21.0}/gitlab_api/__init__.py +0 -0
  10. {gitlab_api-25.20.1 → gitlab_api-25.21.0}/gitlab_api/__main__.py +0 -0
  11. {gitlab_api-25.20.1 → gitlab_api-25.21.0}/gitlab_api/api_client.py +0 -0
  12. {gitlab_api-25.20.1 → gitlab_api-25.21.0}/gitlab_api/auth.py +0 -0
  13. {gitlab_api-25.20.1 → gitlab_api-25.21.0}/gitlab_api/gitlab_gql.py +0 -0
  14. {gitlab_api-25.20.1 → gitlab_api-25.21.0}/gitlab_api/gitlab_input_models.py +0 -0
  15. {gitlab_api-25.20.1 → gitlab_api-25.21.0}/gitlab_api/gitlab_response_models.py +0 -0
  16. {gitlab_api-25.20.1 → gitlab_api-25.21.0}/gitlab_api/mcp_config.json +0 -0
  17. {gitlab_api-25.20.1 → gitlab_api-25.21.0}/gitlab_api.egg-info/SOURCES.txt +0 -0
  18. {gitlab_api-25.20.1 → gitlab_api-25.21.0}/gitlab_api.egg-info/dependency_links.txt +0 -0
  19. {gitlab_api-25.20.1 → gitlab_api-25.21.0}/gitlab_api.egg-info/entry_points.txt +0 -0
  20. {gitlab_api-25.20.1 → gitlab_api-25.21.0}/gitlab_api.egg-info/requires.txt +0 -0
  21. {gitlab_api-25.20.1 → gitlab_api-25.21.0}/gitlab_api.egg-info/top_level.txt +0 -0
  22. {gitlab_api-25.20.1 → gitlab_api-25.21.0}/requirements.txt +0 -0
  23. {gitlab_api-25.20.1 → gitlab_api-25.21.0}/scripts/validate_a2a_agent.py +0 -0
  24. {gitlab_api-25.20.1 → gitlab_api-25.21.0}/scripts/validate_agent.py +0 -0
  25. {gitlab_api-25.20.1 → gitlab_api-25.21.0}/setup.cfg +0 -0
  26. {gitlab_api-25.20.1 → gitlab_api-25.21.0}/test_setup.py +0 -0
  27. {gitlab_api-25.20.1 → gitlab_api-25.21.0}/tests/__init__.py +0 -0
  28. {gitlab_api-25.20.1 → gitlab_api-25.21.0}/tests/conftest.py +0 -0
  29. {gitlab_api-25.20.1 → gitlab_api-25.21.0}/tests/test_api_wrapper.py +0 -0
  30. {gitlab_api-25.20.1 → gitlab_api-25.21.0}/tests/test_gitlab_a2a_validation.py +0 -0
  31. {gitlab_api-25.20.1 → gitlab_api-25.21.0}/tests/test_gitlab_api_brute_force_coverage.py +0 -0
  32. {gitlab_api-25.20.1 → gitlab_api-25.21.0}/tests/test_gitlab_mcp_validation.py +0 -0
  33. {gitlab_api-25.20.1 → gitlab_api-25.21.0}/tests/test_gitlab_models.py +0 -0
  34. {gitlab_api-25.20.1 → gitlab_api-25.21.0}/tests/test_verify_agent.py +0 -0
  35. {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.20.1
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
  ![PyPI - Wheel](https://img.shields.io/pypi/wheel/gitlab-api)
50
50
  ![PyPI - Implementation](https://img.shields.io/pypi/implementation/gitlab-api)
51
51
 
52
- *Version: 25.20.1*
52
+ *Version: 25.21.0*
53
53
 
54
54
  ## Overview
55
55
 
@@ -21,7 +21,7 @@
21
21
  ![PyPI - Wheel](https://img.shields.io/pypi/wheel/gitlab-api)
22
22
  ![PyPI - Implementation](https://img.shields.io/pypi/implementation/gitlab-api)
23
23
 
24
- *Version: 25.20.1*
24
+ *Version: 25.21.0*
25
25
 
26
26
  ## Overview
27
27
 
@@ -12,7 +12,7 @@ from agent_utilities import (
12
12
  load_identity,
13
13
  )
14
14
 
15
- __version__ = "25.20.1"
15
+ __version__ = "25.21.0"
16
16
 
17
17
  logging.basicConfig(
18
18
  level=logging.INFO,
@@ -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.20.1"
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.20.1
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
  ![PyPI - Wheel](https://img.shields.io/pypi/wheel/gitlab-api)
50
50
  ![PyPI - Implementation](https://img.shields.io/pypi/implementation/gitlab-api)
51
51
 
52
- *Version: 25.20.1*
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.20.1"
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