mirror of
https://github.com/czlonkowski/n8n-mcp.git
synced 2026-02-06 05:23:08 +00:00
chore: update n8n dependencies to latest versions
- Updated n8n-nodes-base to 1.106.3 - Updated @n8n/n8n-nodes-langchain to 1.106.3 - Enhanced SQL.js compatibility in database adapter - Fixed parameter binding and state management in SQLJSStatement - Rebuilt node database with 535 nodes - All tests passing with Node.js v22.17.0 LTS
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
*/
|
||||
import { createDatabaseAdapter } from '../database/database-adapter';
|
||||
import { N8nNodeLoader } from '../loaders/node-loader';
|
||||
import { NodeParser } from '../parsers/node-parser';
|
||||
import { NodeParser, ParsedNode } from '../parsers/node-parser';
|
||||
import { DocsMapper } from '../mappers/docs-mapper';
|
||||
import { NodeRepository } from '../database/node-repository';
|
||||
import { TemplateSanitizer } from '../utils/template-sanitizer';
|
||||
@@ -46,7 +46,10 @@ async function rebuild() {
|
||||
withDocs: 0
|
||||
};
|
||||
|
||||
// Process each node
|
||||
// Process each node (documentation fetching must be outside transaction due to async)
|
||||
console.log('🔄 Processing nodes...');
|
||||
const processedNodes: Array<{ parsed: ParsedNode; docs: string | undefined; nodeName: string }> = [];
|
||||
|
||||
for (const { packageName, nodeName, NodeClass } of nodes) {
|
||||
try {
|
||||
// Parse node
|
||||
@@ -54,15 +57,34 @@ async function rebuild() {
|
||||
|
||||
// Validate parsed data
|
||||
if (!parsed.nodeType || !parsed.displayName) {
|
||||
throw new Error('Missing required fields');
|
||||
throw new Error(`Missing required fields - nodeType: ${parsed.nodeType}, displayName: ${parsed.displayName}, packageName: ${parsed.packageName}`);
|
||||
}
|
||||
|
||||
// Additional validation for required fields
|
||||
if (!parsed.packageName) {
|
||||
throw new Error(`Missing packageName for node ${nodeName}`);
|
||||
}
|
||||
|
||||
// Get documentation
|
||||
const docs = await mapper.fetchDocumentation(parsed.nodeType);
|
||||
parsed.documentation = docs || undefined;
|
||||
|
||||
// Save to database
|
||||
processedNodes.push({ parsed, docs: docs || undefined, nodeName });
|
||||
} catch (error) {
|
||||
stats.failed++;
|
||||
const errorMessage = (error as Error).message;
|
||||
console.error(`❌ Failed to process ${nodeName}: ${errorMessage}`);
|
||||
}
|
||||
}
|
||||
|
||||
// Now save all processed nodes to database
|
||||
console.log(`\n💾 Saving ${processedNodes.length} processed nodes to database...`);
|
||||
|
||||
let saved = 0;
|
||||
for (const { parsed, docs, nodeName } of processedNodes) {
|
||||
try {
|
||||
repository.saveNode(parsed);
|
||||
saved++;
|
||||
|
||||
// Update statistics
|
||||
stats.successful++;
|
||||
@@ -76,13 +98,28 @@ async function rebuild() {
|
||||
console.log(`✅ ${parsed.nodeType} [Props: ${parsed.properties.length}, Ops: ${parsed.operations.length}]`);
|
||||
} catch (error) {
|
||||
stats.failed++;
|
||||
console.error(`❌ Failed to process ${nodeName}: ${(error as Error).message}`);
|
||||
const errorMessage = (error as Error).message;
|
||||
console.error(`❌ Failed to save ${nodeName}: ${errorMessage}`);
|
||||
}
|
||||
}
|
||||
|
||||
console.log(`💾 Save completed: ${saved} nodes saved successfully`);
|
||||
|
||||
// Validation check
|
||||
console.log('\n🔍 Running validation checks...');
|
||||
const validationResults = validateDatabase(repository);
|
||||
try {
|
||||
const validationResults = validateDatabase(repository);
|
||||
|
||||
if (!validationResults.passed) {
|
||||
console.log('⚠️ Validation Issues:');
|
||||
validationResults.issues.forEach(issue => console.log(` - ${issue}`));
|
||||
} else {
|
||||
console.log('✅ All validation checks passed');
|
||||
}
|
||||
} catch (validationError) {
|
||||
console.error('❌ Validation failed:', (validationError as Error).message);
|
||||
console.log('⚠️ Skipping validation due to database compatibility issues');
|
||||
}
|
||||
|
||||
// Summary
|
||||
console.log('\n📊 Summary:');
|
||||
@@ -96,11 +133,6 @@ async function rebuild() {
|
||||
console.log(` With Operations: ${stats.withOperations}`);
|
||||
console.log(` With Documentation: ${stats.withDocs}`);
|
||||
|
||||
if (!validationResults.passed) {
|
||||
console.log('\n⚠️ Validation Issues:');
|
||||
validationResults.issues.forEach(issue => console.log(` - ${issue}`));
|
||||
}
|
||||
|
||||
// Sanitize templates if they exist
|
||||
console.log('\n🧹 Checking for templates to sanitize...');
|
||||
const templateCount = db.prepare('SELECT COUNT(*) as count FROM templates').get() as { count: number };
|
||||
|
||||
Reference in New Issue
Block a user