Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6e2be579e0 | |||
| 8ba3ae73ab | |||
| dbf3d5ec10 | |||
| 5b9e76ddb4 |
@@ -4,6 +4,7 @@ on:
|
|||||||
push:
|
push:
|
||||||
tags:
|
tags:
|
||||||
- v*
|
- v*
|
||||||
|
- nextcloud-mcp-server-*
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
release:
|
release:
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[tool.commitizen]
|
[tool.commitizen]
|
||||||
name = "cz_conventional_commits"
|
name = "cz_conventional_commits"
|
||||||
version = "0.55.0"
|
version = "0.55.2"
|
||||||
tag_format = "nextcloud-mcp-server-$version"
|
tag_format = "nextcloud-mcp-server-$version"
|
||||||
version_scheme = "semver"
|
version_scheme = "semver"
|
||||||
update_changelog_on_bump = true
|
update_changelog_on_bump = true
|
||||||
|
|||||||
@@ -14,6 +14,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
- Configurable resource limits
|
- Configurable resource limits
|
||||||
- Grafana dashboard annotations
|
- Grafana dashboard annotations
|
||||||
|
|
||||||
|
## nextcloud-mcp-server-0.55.2 (2025-12-22)
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
|
- **helm**: set OIDC client env vars when using existingSecret
|
||||||
|
|
||||||
|
## nextcloud-mcp-server-0.55.1 (2025-12-22)
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
|
- **helm**: trigger chart release workflow on helm chart tags
|
||||||
|
|
||||||
## nextcloud-mcp-server-0.55.0 (2025-12-22)
|
## nextcloud-mcp-server-0.55.0 (2025-12-22)
|
||||||
|
|
||||||
### BREAKING CHANGE
|
### BREAKING CHANGE
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ 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.55.0
|
version: 0.55.2
|
||||||
appVersion: "0.59.0"
|
appVersion: "0.59.0"
|
||||||
keywords:
|
keywords:
|
||||||
- nextcloud
|
- nextcloud
|
||||||
|
|||||||
@@ -100,7 +100,7 @@ spec:
|
|||||||
key: {{ .Values.auth.multiUserBasic.tokenEncryptionKeyKey }}
|
key: {{ .Values.auth.multiUserBasic.tokenEncryptionKeyKey }}
|
||||||
- name: NEXTCLOUD_OIDC_SCOPES
|
- name: NEXTCLOUD_OIDC_SCOPES
|
||||||
value: {{ .Values.auth.multiUserBasic.scopes | quote }}
|
value: {{ .Values.auth.multiUserBasic.scopes | quote }}
|
||||||
{{- if .Values.auth.multiUserBasic.clientId }}
|
{{- if or .Values.auth.multiUserBasic.clientId .Values.auth.multiUserBasic.existingSecret }}
|
||||||
# Static OAuth credentials (optional - uses DCR if not provided)
|
# Static OAuth credentials (optional - uses DCR if not provided)
|
||||||
- name: NEXTCLOUD_OIDC_CLIENT_ID
|
- name: NEXTCLOUD_OIDC_CLIENT_ID
|
||||||
valueFrom:
|
valueFrom:
|
||||||
@@ -122,7 +122,7 @@ spec:
|
|||||||
value: {{ include "nextcloud-mcp-server.publicIssuerUrl" . | quote }}
|
value: {{ include "nextcloud-mcp-server.publicIssuerUrl" . | quote }}
|
||||||
- name: NEXTCLOUD_OIDC_SCOPES
|
- name: NEXTCLOUD_OIDC_SCOPES
|
||||||
value: {{ .Values.auth.oauth.scopes | quote }}
|
value: {{ .Values.auth.oauth.scopes | quote }}
|
||||||
{{- if .Values.auth.oauth.clientId }}
|
{{- if or .Values.auth.oauth.clientId .Values.auth.oauth.existingSecret }}
|
||||||
- name: NEXTCLOUD_OIDC_CLIENT_ID
|
- name: NEXTCLOUD_OIDC_CLIENT_ID
|
||||||
valueFrom:
|
valueFrom:
|
||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
|
|||||||
Reference in New Issue
Block a user