File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11[bumpversion]
2- current_version = 25.15.19
2+ current_version = 25.15.20
33commit = True
44tag = True
55
Original file line number Diff line number Diff line change @@ -54,6 +54,6 @@ ENV HOST=${HOST} \
5454RUN apt-get update \
5555 && apt-get install -y ripgrep tree fd-find curl nano \
5656 && curl -LsSf https://astral.sh/uv/install.sh | sh \
57- && uv pip install --system --upgrade --verbose --no-cache --break-system-packages --prerelease=allow gitlab-api[all]>=25.15.19
57+ && uv pip install --system --upgrade --verbose --no-cache --break-system-packages --prerelease=allow gitlab-api[all]>=25.15.20
5858
5959CMD ["gitlab-mcp" ]
Original file line number Diff line number Diff line change 2121![ PyPI - Wheel] ( https://img.shields.io/pypi/wheel/gitlab-api )
2222![ PyPI - Implementation] ( https://img.shields.io/pypi/implementation/gitlab-api )
2323
24- * Version: 25.15.19 *
24+ * Version: 25.15.20 *
2525
2626## Overview
2727
Original file line number Diff line number Diff line change 1212from agent_utilities .agent_utilities import create_agent_parser , get_mcp_config_path
1313from agent_utilities .base_utilities import to_integer , to_boolean
1414
15- __version__ = "25.15.19 "
15+ __version__ = "25.15.20 "
1616
1717logging .basicConfig (
1818 level = logging .INFO ,
5757DEFAULT_MCP_CONFIG = os .getenv ("MCP_CONFIG" , get_mcp_config_path ())
5858DEFAULT_CUSTOM_SKILLS_DIRECTORY = os .getenv ("CUSTOM_SKILLS_DIRECTORY" , None )
5959DEFAULT_ENABLE_WEB_UI = to_boolean (os .getenv ("ENABLE_WEB_UI" , "False" ))
60+ DEFAULT_ENABLE_OTEL = to_boolean (os .getenv ("ENABLE_OTEL" , "False" ))
6061DEFAULT_SSL_VERIFY = to_boolean (os .getenv ("SSL_VERIFY" , "True" ))
6162
6263
@@ -85,6 +86,7 @@ def agent_server():
8586 ssl_verify = not args .insecure ,
8687 name = DEFAULT_AGENT_NAME ,
8788 system_prompt = DEFAULT_AGENT_SYSTEM_PROMPT ,
89+ enable_otel = args .otel ,
8890 agent_definitions = CHILD_AGENT_DEFS if CHILD_AGENT_DEFS else None ,
8991 )
9092
Original file line number Diff line number Diff line change 3232from starlette .requests import Request
3333from starlette .responses import JSONResponse
3434
35- __version__ = "25.15.19 "
35+ __version__ = "25.15.20 "
3636print (f"Gitlab MCP v{ __version__ } " )
3737
3838logger = get_logger (name = "mcp_server" )
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " gitlab-api"
7- version = " 25.15.19 "
7+ version = " 25.15.20 "
88description = " GitLab API + MCP Server + A2A Server"
99readme = " README.md"
1010authors = [{ name = " Audel Rouhi" , email = " knucklessg1@gmail.com" }]
@@ -18,15 +18,15 @@ classifiers = [
1818]
1919requires-python = " >=3.10"
2020dependencies = [
21- " agent-utilities>=0.2.4 " ,
21+ " agent-utilities>=0.2.5 " ,
2222]
2323[project .optional-dependencies ]
2424mcp = [
25- " agent-utilities[mcp]>=0.2.4 " ,
25+ " agent-utilities[mcp]>=0.2.5 " ,
2626]
2727
2828agent = [
29- " agent-utilities[agent,logfire]>=0.2.4 " ,
29+ " agent-utilities[agent,logfire]>=0.2.5 " ,
3030]
3131
3232gql = [
You can’t perform that action at this time.
0 commit comments