Compare commits

..

2 Commits

Author SHA1 Message Date
gitea-actions 0de63d3136 chore : bump version to v1.9.52
Auto Tag Develop / tag (push) Successful in 12s
Build & Push Docker Image / build (push) Successful in 1m42s
2026-06-29 14:40:33 +00:00
Matthieu 35f3feb59c fix(security) : passe le MCP inventory en HTTPS dans .mcp.json
Auto Tag Develop / tag (push) Successful in 9s
Le endpoint était en http:// : les credentials statiques (X-Profile-Id /
X-Profile-Password) transitaient en clair sur le premier hop avant la
redirection 301 vers https. Le serveur sert déjà le TLS (CA MALIO embarquée
côté image prod), donc on bascule l'URL en https://.
2026-06-29 16:40:23 +02:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
"mcpServers": {
"inventory": {
"type": "http",
"url": "http://inventory.malio-dev.fr/_mcp",
"url": "https://inventory.malio-dev.fr/_mcp",
"headers": {
"X-Profile-Id": "admin-default-profile",
"X-Profile-Password": "A123"
+1 -1
View File
@@ -1,2 +1,2 @@
parameters:
app.version: '1.9.51'
app.version: '1.9.52'