Compare commits

..

5 Commits

Author SHA1 Message Date
Claude
e0cf4951c6 chore: bump version to 2.22.6
Version bump to trigger automated release workflow with YAML fix.

This version bump combined with the YAML syntax fix will:
- Trigger the release workflow (version 2.22.5 → 2.22.6)
- Test the complete release pipeline end-to-end
- Publish v2.22.6 to npm registry
- Create GitHub release v2.22.6
- Build and push Docker images

Previous versions 2.22.4 and 2.22.5 failed to publish due to YAML parsing
errors in the release workflow (resolved in previous commit).

Concieved by Romuald Członkowski - www.aiadvisors.pl/en

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-25 18:21:27 +00:00
Claude
b44e0745b4 fix: replace YAML-conflicting markdown separators in release workflow
Changed Markdown horizontal rules from "---" to "___" in heredoc content
to prevent YAML parser conflicts. The "---" string at the start of a line
is a YAML document separator which causes parsing issues even inside bash
heredocs within GitHub Actions workflows.

Root cause:
- Lines 151 and 226 contained "---" Markdown horizontal rules
- YAML parsers interpret "---" as document separators
- This prevented workflow jobs from executing (no jobs scheduled)
- Changed to "___" which creates identical Markdown output

Impact:
- Fixes workflow runs 18804889309, 18804651253, 18802795662
- All runs failed to schedule jobs due to YAML parsing errors
- Both "___" and "---" render as horizontal rules in Markdown
- Workflow should now properly detect version changes and execute all jobs

History of YAML issues in this workflow:
1. Commit 952a97e: Fixed quoted multi-line strings → changed to heredocs
2. Commit 79ef853: Removed emoji from heredoc (UTF-8 encoding issue)
3. This commit: Replace "---" with "___" (YAML document separator issue)

Concieved by Romuald Członkowski - www.aiadvisors.pl/en

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-25 18:08:00 +00:00
Romuald Członkowski
b87f638e52 Merge pull request #370 from czlonkowski/claude/version-bump-2.22.5-011CUTuNP2G3vGqSo8R9uubN
chore: bump version to 2.22.5
2025-10-25 17:19:15 +02:00
Claude
1f94427d54 chore: bump version to 2.22.5
Version bump to trigger automated release workflow and verify that the
YAML syntax fix (commit 79ef853) works correctly.

Previous release attempt for 2.22.4 failed due to YAML syntax error
(emoji in heredoc). This version bump will test the complete release
pipeline end-to-end.

Concieved by Romuald Członkowski - www.aiadvisors.pl/en

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-25 14:58:01 +00:00
Romuald Członkowski
2eb459c80c Merge pull request #369 from czlonkowski/claude/investigate-npm-deployment-011CUTuNP2G3vGqSo8R9uubN 2025-10-25 14:54:57 +02:00
3 changed files with 7 additions and 7 deletions

View File

@@ -148,7 +148,7 @@ jobs:
This is the initial release of n8n-mcp v$CURRENT_VERSION. This is the initial release of n8n-mcp v$CURRENT_VERSION.
--- ___
**Release Statistics:** **Release Statistics:**
- Commit count: $(git rev-list --count HEAD) - Commit count: $(git rev-list --count HEAD)
@@ -220,11 +220,11 @@ EOF
# Create release body # Create release body
cat > release_body.md << 'EOF' cat > release_body.md << 'EOF'
# Release v${{ needs.detect-version-change.outputs.new-version }} # Release v${{ needs.detect-version-change.outputs.new-version }}
${{ needs.generate-release-notes.outputs.release-notes }} ${{ needs.generate-release-notes.outputs.release-notes }}
--- ___
## Installation ## Installation
### NPM Package ### NPM Package

View File

@@ -1,6 +1,6 @@
{ {
"name": "n8n-mcp", "name": "n8n-mcp",
"version": "2.22.4", "version": "2.22.6",
"description": "Integration between n8n workflow automation and Model Context Protocol (MCP)", "description": "Integration between n8n workflow automation and Model Context Protocol (MCP)",
"main": "dist/index.js", "main": "dist/index.js",
"types": "dist/index.d.ts", "types": "dist/index.d.ts",

View File

@@ -1,6 +1,6 @@
{ {
"name": "n8n-mcp-runtime", "name": "n8n-mcp-runtime",
"version": "2.22.4", "version": "2.22.6",
"description": "n8n MCP Server Runtime Dependencies Only", "description": "n8n MCP Server Runtime Dependencies Only",
"private": true, "private": true,
"dependencies": { "dependencies": {