From a2c2ac185ad2891e11e27a534ef089701effb526 Mon Sep 17 00:00:00 2001 From: simple Date: Thu, 29 May 2025 09:13:43 +0900 Subject: [PATCH] [main] release: v1.0.47 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 📝 Details: - 버전을 1.0.47로 업데이트 - CHANGELOG에 새로운 기능과 버그 수정 사항 추가 - list_merge_requests 기능 추가 (#56) - GitLabUserSchema의 avatar_url nullable 처리 (#55) - GitLabPipelineSchema의 illustration nullable 처리 (#58) --- CHANGELOG.md | 24 ++++++++++++++++++++++++ package.json | 2 +- 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c5bc7c..a23e495 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,27 @@ +## [1.0.47] - 2025-05-29 + +### Added + +- 🔄 **List Merge Requests Tool**: Added functionality to list and filter merge requests in GitLab projects + - `list_merge_requests`: List merge requests with comprehensive filtering options + - Supports filtering by state, scope, author, assignee, reviewer, labels, and more + - Includes pagination support for large result sets + - See: [PR #56](https://github.com/zereight/gitlab-mcp/pull/56) + +### Fixed + +- Fixed issue where GitLab users without profile pictures would cause JSON-RPC errors + - Changed `avatar_url` field to be nullable in GitLabUserSchema + - This allows proper handling of users without avatars in GitLab API responses + - See: [PR #55](https://github.com/zereight/gitlab-mcp/pull/55) + +- Fixed issue where GitLab pipelines without illustrations would cause JSON-RPC errors + - Changed `illustration` field to be nullable in GitLabPipelineSchema + - This allows proper handling of pipelines without illustrations + - See: [PR #58](https://github.com/zereight/gitlab-mcp/pull/58), [Issue #57](https://github.com/zereight/gitlab-mcp/issues/57) + +--- + ## [1.0.46] - 2025-05-27 ### Fixed diff --git a/package.json b/package.json index ff81a9e..d2eb1b1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@zereight/mcp-gitlab", - "version": "1.0.46", + "version": "1.0.47", "description": "MCP server for using the GitLab API", "license": "MIT", "author": "zereight",