Compare commits

...

2 Commits

Author SHA1 Message Date
Romuald Członkowski
0f13e7aeee chore: update n8n to 2.0.2 and bump version to 2.30.0 (#487)
- Updated n8n from 1.123.4 to 2.0.2
- Updated n8n-core from 1.122.1 to 2.0.1
- Updated n8n-workflow from 1.120.0 to 2.0.1
- Updated @n8n/n8n-nodes-langchain from 1.122.1 to 2.0.1
- Rebuilt node database with 541 nodes (435 from n8n-nodes-base, 106 from @n8n/n8n-nodes-langchain)
- Updated README badge with new n8n version
- Updated CHANGELOG with dependency changes

Conceived by Romuald Członkowski - https://www.aiadvisors.pl/en

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

Co-authored-by: Romuald Członkowski <romualdczlonkowski@MacBook-Pro-Romuald.local>
Co-authored-by: Claude <noreply@anthropic.com>
2025-12-15 23:34:49 +01:00
Romuald Członkowski
551445bcd5 fix: revert to Node 20 and use granular NPM token
NPM classic tokens were revoked on Dec 9, 2025. OIDC trusted publishing
requires npm >= 11.5.1 which caused lockfile sync issues with npm ci.

Reverted to Node 20 with granular access token approach:
- Removed OIDC permissions block
- Removed npm upgrade step
- Restored NODE_AUTH_TOKEN usage
- Removed --provenance flag

User created new granular token with "Bypass 2FA" enabled.

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

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-12 16:22:04 +01:00
7 changed files with 3370 additions and 272 deletions

View File

@@ -308,25 +308,17 @@ jobs:
runs-on: ubuntu-latest
needs: [detect-version-change, build-and-verify, create-release]
if: needs.detect-version-change.outputs.version-changed == 'true'
permissions:
contents: read
id-token: write # Required for NPM Trusted Publishing (OIDC)
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
node-version: 20
cache: 'npm'
registry-url: 'https://registry.npmjs.org'
- name: Upgrade npm for OIDC support
run: |
npm install -g npm@latest
echo "npm version: $(npm --version)"
- name: Install dependencies
run: npm ci
@@ -401,8 +393,10 @@ jobs:
max_attempts: 3
command: |
cd npm-publish-temp
npm publish --access public --provenance
npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Clean up
if: always()
run: rm -rf npm-publish-temp

View File

@@ -7,6 +7,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [2.30.0] - 2025-12-15
### Changed
**Major n8n 2.0 Update**
Updated to n8n 2.0, a major version upgrade with significant improvements.
**Dependency Updates:**
- n8n: 1.123.4 → 2.0.2
- n8n-core: 1.122.1 → 2.0.1
- n8n-workflow: 1.120.0 → 2.0.1
- @n8n/n8n-nodes-langchain: 1.122.1 → 2.0.1
**Database:**
- Rebuilt node database with 541 nodes (435 from n8n-nodes-base, 106 from @n8n/n8n-nodes-langchain)
- Updated README badge with new n8n version
**Conceived by Romuald Członkowski - [AiAdvisors](https://www.aiadvisors.pl/en)**
## [2.29.2] - 2025-12-12
### Added

View File

@@ -5,7 +5,7 @@
[![npm version](https://img.shields.io/npm/v/n8n-mcp.svg)](https://www.npmjs.com/package/n8n-mcp)
[![codecov](https://codecov.io/gh/czlonkowski/n8n-mcp/graph/badge.svg?token=YOUR_TOKEN)](https://codecov.io/gh/czlonkowski/n8n-mcp)
[![Tests](https://img.shields.io/badge/tests-3336%20passing-brightgreen.svg)](https://github.com/czlonkowski/n8n-mcp/actions)
[![n8n version](https://img.shields.io/badge/n8n-1.123.4-orange.svg)](https://github.com/n8n-io/n8n)
[![n8n version](https://img.shields.io/badge/n8n-2.0.2-orange.svg)](https://github.com/n8n-io/n8n)
[![Docker](https://img.shields.io/badge/docker-ghcr.io%2Fczlonkowski%2Fn8n--mcp-green.svg)](https://github.com/czlonkowski/n8n-mcp/pkgs/container/n8n-mcp)
[![Deploy on Railway](https://railway.com/button.svg)](https://railway.com/deploy/n8n-mcp?referralCode=n8n-mcp)

Binary file not shown.

3588
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{
"name": "n8n-mcp",
"version": "2.29.4",
"version": "2.30.0",
"description": "Integration between n8n workflow automation and Model Context Protocol (MCP)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -141,16 +141,16 @@
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.20.1",
"@n8n/n8n-nodes-langchain": "^1.122.1",
"@n8n/n8n-nodes-langchain": "^2.0.1",
"@supabase/supabase-js": "^2.57.4",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"express-rate-limit": "^7.1.5",
"form-data": "^4.0.5",
"lru-cache": "^11.2.1",
"n8n": "^1.123.4",
"n8n-core": "^1.122.1",
"n8n-workflow": "^1.120.0",
"n8n": "^2.0.2",
"n8n-core": "^2.0.1",
"n8n-workflow": "^2.0.1",
"openai": "^4.77.0",
"sql.js": "^1.13.0",
"tslib": "^2.6.2",

View File

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