bump: version 0.24.1 → 0.25.0
This commit is contained in:
@@ -1,3 +1,26 @@
|
|||||||
|
## v0.25.0 (2025-11-05)
|
||||||
|
|
||||||
|
### BREAKING CHANGE
|
||||||
|
|
||||||
|
- All OAuth deployments must be reconfigured to specify
|
||||||
|
resource URIs (NEXTCLOUD_MCP_SERVER_URL and NEXTCLOUD_RESOURCE_URI) and
|
||||||
|
choose between multi-audience or token exchange mode.
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- Implement ADR-005 unified token verifier to eliminate token passthrough vulnerability
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
|
- Implement proper OAuth resource parameters and PRM-based discovery
|
||||||
|
- Simplify token verifier to be RFC 7519 compliant
|
||||||
|
- Use Keycloak client ID for NEXTCLOUD_RESOURCE_URI in token exchange
|
||||||
|
- Correct OAuth token audience validation for multi-audience mode
|
||||||
|
|
||||||
|
### Refactor
|
||||||
|
|
||||||
|
- Eliminate duplicate validation logic in UnifiedTokenVerifier
|
||||||
|
|
||||||
## v0.24.1 (2025-11-04)
|
## v0.24.1 (2025-11-04)
|
||||||
|
|
||||||
### Fix
|
### Fix
|
||||||
|
|||||||
@@ -2,8 +2,8 @@ apiVersion: v2
|
|||||||
name: nextcloud-mcp-server
|
name: nextcloud-mcp-server
|
||||||
description: A Helm chart for Nextcloud MCP Server - enables AI assistants to interact with Nextcloud
|
description: A Helm chart for Nextcloud MCP Server - enables AI assistants to interact with Nextcloud
|
||||||
type: application
|
type: application
|
||||||
version: 0.24.1
|
version: 0.25.0
|
||||||
appVersion: "0.24.1"
|
appVersion: "0.25.0"
|
||||||
keywords:
|
keywords:
|
||||||
- nextcloud
|
- nextcloud
|
||||||
- mcp
|
- mcp
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "nextcloud-mcp-server"
|
name = "nextcloud-mcp-server"
|
||||||
version = "0.24.1"
|
version = "0.25.0"
|
||||||
description = "Model Context Protocol (MCP) server for Nextcloud integration - enables AI assistants to interact with Nextcloud data"
|
description = "Model Context Protocol (MCP) server for Nextcloud integration - enables AI assistants to interact with Nextcloud data"
|
||||||
authors = [
|
authors = [
|
||||||
{name = "Chris Coutinho", email = "chris@coutinho.io"}
|
{name = "Chris Coutinho", email = "chris@coutinho.io"}
|
||||||
|
|||||||
@@ -975,7 +975,7 @@ wheels = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "nextcloud-mcp-server"
|
name = "nextcloud-mcp-server"
|
||||||
version = "0.24.1"
|
version = "0.25.0"
|
||||||
source = { editable = "." }
|
source = { editable = "." }
|
||||||
dependencies = [
|
dependencies = [
|
||||||
{ name = "aiosqlite" },
|
{ name = "aiosqlite" },
|
||||||
|
|||||||
Reference in New Issue
Block a user