Skip to content

Commit bbbf46b

Browse files
committed
chore(release): v0.6.3
1 parent 20e2fae commit bbbf46b

7 files changed

Lines changed: 69 additions & 11 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,18 +131,18 @@ You can test the service using:
131131
- [x] Automatic configuration fetching and seamless hot-reloading
132132
- [x] Configuration persistence (Disk/SQLite/PostgreSQL/MySQL)
133133
- [x] Configuration sync via OS Signals, HTTP, or Redis PubSub
134-
- [ ] Version control for configuration
134+
- [x] Version control for configuration
135135

136136
### 🔐 Security & Authentication
137-
- [ ] OAuth-based pre-authentication support for MCP Servers
137+
- [x] OAuth-based pre-authentication support for MCP Servers
138138

139139
### 🖥 User Interface
140140
- [x] Intuitive and lightweight management UI
141141

142142
### 📦 Deployment & Operations
143143
- [x] Multi-replica service support
144144
- [x] Docker support
145-
- [ ] Kubernetes and Helm deployment support
145+
- [x] Kubernetes and Helm deployment support
146146

147147
---
148148

changelog/v0.6.3.md

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
# 📦 MCP Gateway v0.6.3
2+
3+
> Turn your MCP Servers and APIs into MCP endpoints — effortlessly, without modifying the original code.
4+
5+
## ✨ 新功能
6+
7+
- 支持通过helm部署 mcp-gateway
8+
- 部署helm charts到https://github.com/mcp-ecosystem/mcp-gateway-helm-charts
9+
- 支持 SSE 消息 URL 前缀,修复代理后的客户端访问问题
10+
11+
## 🔧 其他
12+
13+
- 升级 @modelcontextprotocol/sdk 从 1.11.0 到 1.11.1
14+
- 升级 i18next 从 25.1.1 到 25.1.2
15+
- 升级 monaco-yaml 从 5.3.1 到 5.4.0
16+
- 更新 docker-compose 配置以支持多部署
17+
18+
---
19+
20+
📘 文档:https://mcp.ifuryst.com
21+
🐙 源码:https://github.com/mcp-ecosystem/mcp-gateway
22+
🐳 Docker 镜像:`ghcr.io/mcp-ecosystem/mcp-gateway/allinone:latest`
23+
💬 加入我们的 Discord 社区参与讨论:https://discord.gg/udf69cT9TY
24+
🔗 扫描下方二维码加入社区微信群,备注:`mcp-gateway``mcpgw`
25+
<img src="https://github.com/mcp-ecosystem/mcp-gateway/blob/main/web/public/wechat-qrcode.png" alt="微信群二维码" width="350" height="350" />
26+
27+
---
28+
29+
感谢所有参与和关注该项目的开发者与用户 💖
30+
31+
---
32+
33+
## ✨ New Features
34+
35+
- Support deploying mcp-gateway via helm
36+
- Deploy helm charts to https://github.com/mcp-ecosystem/mcp-gateway-helm-charts
37+
- Support SSE message URL prefix to fix client access issue behind proxy
38+
39+
## 🔧 Others
40+
41+
- Upgrade @modelcontextprotocol/sdk from 1.11.0 to 1.11.1
42+
- Upgrade i18next from 25.1.1 to 25.1.2
43+
- Upgrade monaco-yaml from 5.3.1 to 5.4.0
44+
- Update docker-compose configuration for multi deployment
45+
46+
47+
---
48+
49+
📘 Docs: https://mcp.ifuryst.com
50+
🐙 Source: https://github.com/mcp-ecosystem/mcp-gateway
51+
🐳 Docker Image: `ghcr.io/mcp-ecosystem/mcp-gateway/allinone:latest`
52+
💬 Join our Discord community for discussions: https://discord.gg/udf69cT9TY
53+
🔗 Scan the QR code below to join WeChat community group, note: `mcp-gateway` or `mcpgw`
54+
<img src="https://github.com/mcp-ecosystem/mcp-gateway/blob/main/web/public/wechat-qrcode.png" alt="WeChat QR Code" width="350" height="350" />
55+
56+
---
57+
58+
Thanks to all contributors and early users! 💖

deploy/helm/mcp-gateway/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.1.0
18+
version: 0.6.3
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
2323
# It is recommended to use it with quotes.
24-
appVersion: "1.16.0"
24+
appVersion: "0.6.3"

docs/.ai/release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
1. 可以通过`cat pkg/version/VERSION`
55
2. 请参考changelog/`cat pkg/version/VERSION`.md文件的书写风格和格式(例如标准开头,然后先中文后英文)
66
3. 通过git命令去查找从前一个版本到现在的变更,如`git log v0.2.6..HEAD --pretty=format:"%h %s" | cat`
7-
4. 改变pkg/version/VERSION和web/package.json(更新后最好cd web && npm i一下)中的版本号,如果没有特别指明,通常是+0.0.1
7+
4. 改变pkg/version/VERSION、deploy/helm/mcp-gateway/Chart(version和appVersion).yaml和web/package.json(更新后最好cd web && npm i一下)中的版本号,如果没有特别指明,通常是+0.0.1
88
5. 根据2和3的内容,新增新版本的变更内容到changelog/`cat pkg/version/VERSION`.md

docs/README.zh-CN.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -162,18 +162,18 @@ docker run -d \
162162
- [x] 自动配置拉取与无缝热重载
163163
- [x] 配置持久化支持(Disk/SQLite/PostgreSQL/MySQL)
164164
- [x] 支持配置更新同步机制(OS Signal/HTTP/Redis PubSub)
165-
- [ ] 配置版本控制
165+
- [x] 配置版本控制
166166
167167
### 🔐 安全与认证
168-
- [ ] MCP Server前置OAuth认证
168+
- [x] MCP Server前置OAuth认证
169169
170170
### 🖥 用户界面
171171
- [x] 直观轻量的管理界面
172172
173173
### 📦 部署与运维
174174
- [x] 服务多副本支持
175175
- [x] Docker 支持
176-
- [ ] Kubernetes与Helm部署支持
176+
- [x] Kubernetes与Helm部署支持
177177
178178
---
179179

pkg/version/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.6.2
1+
v0.6.3

web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "mcp-admin-dashboard",
33
"private": true,
4-
"version": "0.6.2",
4+
"version": "0.6.3",
55
"type": "module",
66
"description": "MCP Gateway Admin Dashboard - A modern web interface for managing MCP Gateway services",
77
"keywords": [

0 commit comments

Comments
 (0)