From 3c23675eece9b1d8ce90f65cc9692100f5cb2c8a Mon Sep 17 00:00:00 2001 From: simple Date: Tue, 10 Jun 2025 09:51:54 +0900 Subject: [PATCH] =?UTF-8?q?[version-update]=20fix:=20correct=20Private-Tok?= =?UTF-8?q?en=20header=20authentication=20for=20GitLab=20API=20?= =?UTF-8?q?=F0=9F=94=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🚀 Breaking Changes: - Removed incorrect `Bearer ` prefix from Private-Token header in legacy authentication mode - Fixed authentication issues for older GitLab instances with private tokens 📝 Details: - Ensures proper API authentication for both new and legacy GitLab configurations --- CHANGELOG.md | 12 ++++++++++++ RELEASE_NOTES.md | 19 ++++++------------- 2 files changed, 18 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3024247..5b66e66 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## [1.0.62] - 2025-06-10 + +### Fixed + +- 🔐 **Private Token Authentication Fix**: Fixed Private-Token header authentication for GitLab API + - Removed incorrect `Bearer ` prefix from Private-Token header in legacy authentication mode + - Fixed authentication issues when using older GitLab instances with private tokens + - Ensures proper API authentication for both new and legacy GitLab configurations + - See: [PR #91](https://github.com/zereight/gitlab-mcp/pull/91), [Issue #88](https://github.com/zereight/gitlab-mcp/issues/88) + +--- + ## [1.0.60] - 2025-06-07 ### Added diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 71641c8..bd5c9ad 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,18 +1,11 @@ -## [1.0.60] - 2025-06-07 - -### Added - -- 📄 **Merge Request Enhancement**: Added support for `remove_source_branch` and `squash` options for merge requests - - Enhanced merge request functionality with additional configuration options - - Allows automatic source branch removal after merge - - Supports squash commits for cleaner Git history - - See: [PR #86](https://github.com/zereight/gitlab-mcp/pull/86) +## [1.0.62] - 2025-06-10 ### Fixed -- 🔧 **Issue Assignment Fix**: Fixed list issues assignee username handling - - Corrected assignee username field in issue listing functionality - - Improved user assignment data processing for GitLab issues - - See: [PR #87](https://github.com/zereight/gitlab-mcp/pull/87), [Issue #74](https://github.com/zereight/gitlab-mcp/issues/74) +- 🔐 **Private Token Authentication Fix**: Fixed Private-Token header authentication for GitLab API + - Removed incorrect `Bearer ` prefix from Private-Token header in legacy authentication mode + - Fixed authentication issues when using older GitLab instances with private tokens + - Ensures proper API authentication for both new and legacy GitLab configurations + - See: [PR #91](https://github.com/zereight/gitlab-mcp/pull/91), [Issue #88](https://github.com/zereight/gitlab-mcp/issues/88) ---