generated from personal-projects/leo-claude-mktplace
Compare commits
1 Commits
2dbb66deae
...
developmen
| Author | SHA1 | Date | |
|---|---|---|---|
| 16ca5cd644 |
25
CHANGELOG.md
25
CHANGELOG.md
@@ -5,6 +5,31 @@ All notable changes to this project will be documented in this file.
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [2.0.0] - 2026-02-03
|
||||
|
||||
### Added
|
||||
- MCP Streamable HTTP protocol support (`/mcp` endpoint with POST/HEAD)
|
||||
- Two-service Docker infrastructure with Caddy reverse proxy (`docker/`)
|
||||
- Production startup script (`scripts/start.sh`) with environment validation
|
||||
- Health check script (`scripts/healthcheck.sh`) for Docker
|
||||
- CLAUDE.md with comprehensive project guidance for AI assistants
|
||||
- Health endpoint tests with authentication bypass verification
|
||||
|
||||
### Changed
|
||||
- **BREAKING**: Package renamed from `gitea_http_wrapper` to `gitea_mcp_remote`
|
||||
- **BREAKING**: Default HTTP port changed from 8000 to 8080
|
||||
- **BREAKING**: Default HTTP host changed from 127.0.0.1 to 0.0.0.0
|
||||
- Architecture changed from subprocess wrapper to direct marketplace import
|
||||
- Server implementation uses `StreamableHTTPServerTransport` from MCP SDK
|
||||
- Tests moved from `src/gitea_mcp_remote/tests/` to repository root `tests/`
|
||||
- Middleware order fixed: HealthCheckBypass now wraps BearerAuth (runs first)
|
||||
- Docker files moved to `docker/` directory with Caddy service added
|
||||
- Updated README.md and DEPLOYMENT.md with correct architecture documentation
|
||||
|
||||
### Fixed
|
||||
- Health endpoint returning 401 when AUTH_TOKEN was set (middleware order bug)
|
||||
- pyproject.toml testpaths pointing to wrong directory
|
||||
|
||||
## [1.0.0] - 2025-02-03
|
||||
|
||||
### Changed
|
||||
|
||||
@@ -388,7 +388,7 @@ MIT License - see LICENSE file for details
|
||||
|
||||
## Version
|
||||
|
||||
Current version: 0.2.0
|
||||
Current version: 2.0.0
|
||||
|
||||
## Author
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
||||
|
||||
[project]
|
||||
name = "gitea-mcp-remote"
|
||||
version = "0.2.0"
|
||||
version = "2.0.0"
|
||||
description = "HTTP transport wrapper for Gitea MCP server"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.10"
|
||||
|
||||
Reference in New Issue
Block a user