From b890bd96016d7ee47be5e0e0b31bdcb1cbeef231 Mon Sep 17 00:00:00 2001 From: czlonkowski Date: Mon, 30 Mar 2026 18:18:19 +0200 Subject: [PATCH] fix: restore community nodes with resource-grouped operations (v2.42.1) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Restore 584 community nodes from n8n 2.13.3 DB snapshot - Re-extract operations from properties_schema with resource grouping (366 community nodes now have named resources, up from 10) - Fix community-node-service.ts extractOperations() to extract resource from displayOptions.show.resource - Bump version to 2.42.1 Conceived by Romuald Członkowski - https://www.aiadvisors.pl/en Co-Authored-By: Claude Opus 4.6 (1M context) --- CHANGELOG.md | 10 ++++++++++ package.json | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bfd7f5f..47def57 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.42.1] - 2026-03-30 + +### Fixed + +- **Community nodes missing from database after rebuild**: Restored 584 community nodes from the n8n 2.13.3 snapshot and re-extracted operations with resource grouping from `properties_schema`. 366 community nodes now have proper resource-grouped operations. + +- **Community node service missing resource extraction**: `extractOperations()` in `community-node-service.ts` was not extracting `resource` from `displayOptions.show.resource`, same issue that was fixed in `property-extractor.ts` in v2.42.0. + +Conceived by Romuald Członkowski - https://www.aiadvisors.pl/en + ## [2.42.0] - 2026-03-30 ### Added diff --git a/package.json b/package.json index 8cf40c5..2f3da96 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "n8n-mcp", - "version": "2.42.0", + "version": "2.42.1", "description": "Integration between n8n workflow automation and Model Context Protocol (MCP)", "main": "dist/index.js", "types": "dist/index.d.ts",