@dollhousemcp/mcp-server 1.9.13 → 1.9.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,38 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.9.14] - 2025-09-30
4
+
5
+ ### Fixed
6
+ - **ElementFormatter Security Scanner False Positives (Issue #1211, PR #1212)**
7
+ - Fixed SecureYamlParser ignoring `validateContent: false` option
8
+ - Pre-parse security validation now properly respects validation flag
9
+ - ElementFormatter now uses `validateContent: false` for all YAML parsing (5 locations)
10
+ - Allows local trusted files to bypass content scanning while maintaining security for untrusted sources
11
+ - Improved memory name generation: derives names from filenames instead of auto-generated IDs
12
+ - Example: `sonarcloud-rules-reference` instead of `mem_1759077319164_w9m9fk56y`
13
+
14
+ - **Portfolio Search File Extension Display (Issue #1213, PR #1215)**
15
+ - Portfolio search now displays correct file extensions based on element type
16
+ - Memories show `.yaml` extension, other elements show `.md` extension
17
+ - Added `getFileExtension()` public method to PortfolioManager
18
+ - Fixed hardcoded `.md` extension in search result formatting
19
+ - No breaking changes, display-only fix
20
+
21
+ ### Code Quality
22
+ - Fixed SonarCloud issues in Docker test files:
23
+ - S7018: Sorted apt packages alphabetically in Dockerfile.test-enhanced
24
+ - S7031: Merged consecutive RUN instructions in Dockerfile.test-enhanced
25
+ - S7772: Added `node:` prefix for built-in module imports (4 occurrences)
26
+ - S2486: Added proper error logging for JSON parse exceptions
27
+ - S7780: Used String.raw for grep regex patterns (2 occurrences)
28
+ - Added comprehensive test coverage for portfolio search file extensions
29
+ - 2,277 tests passing with >96% coverage
30
+
31
+ ### Documentation
32
+ - Added SESSION_NOTES_2025-09-30-AFTERNOON-PR1215-SONARCLOUD-PROCEDURE.md
33
+ - Added SONARCLOUD_QUERY_PROCEDURE.md - Critical guide for querying SonarCloud correctly
34
+ - Updated CLAUDE.md with naming conventions and style guide for session notes and memories
35
+
3
36
  ## [1.9.13] - 2025-09-29
4
37
 
5
38
  ### Fixed
package/README.github.md CHANGED
@@ -873,6 +873,47 @@ For detailed guidelines, see [CONTRIBUTING.md](CONTRIBUTING.md).
873
873
 
874
874
  ## 🏷️ Version History
875
875
 
876
+ ### v1.9.14 - September 30, 2025
877
+
878
+ **Bug Fixes**: ElementFormatter and portfolio search improvements
879
+
880
+ #### 🔧 Fixed
881
+ - **ElementFormatter Security Scanner False Positives** - Fixed validation option being ignored (#1211, #1212)
882
+ - SecureYamlParser now properly respects `validateContent: false` option
883
+ - ElementFormatter uses `validateContent: false` for all YAML parsing (5 locations)
884
+ - Local trusted files can bypass content scanning while maintaining security for untrusted sources
885
+ - Improved memory name generation: derives from filenames instead of auto-generated IDs
886
+ - Example: `sonarcloud-rules-reference` instead of `mem_1759077319164_w9m9fk56y`
887
+
888
+ - **Portfolio Search File Extension Display** - Fixed incorrect extension display (#1213, #1215)
889
+ - Portfolio search now shows correct file extensions based on element type
890
+ - Memories display `.yaml` extension, other elements show `.md` extension
891
+ - Added `getFileExtension()` public method to PortfolioManager
892
+ - No breaking changes, display-only fix
893
+
894
+ #### 🛠️ Code Quality
895
+ - Fixed 10 SonarCloud issues in Docker test files:
896
+ - S7018: Sorted apt packages alphabetically
897
+ - S7031: Merged consecutive RUN instructions
898
+ - S7772: Added `node:` prefix for built-in modules (4 occurrences)
899
+ - S2486: Added proper error logging for JSON parse exceptions
900
+ - S7780: Used String.raw for regex patterns (2 occurrences)
901
+ - Added comprehensive test coverage for portfolio search file extensions
902
+
903
+ #### 📚 Documentation
904
+ - Added SONARCLOUD_QUERY_PROCEDURE.md - Critical guide for querying SonarCloud correctly
905
+ - Updated CLAUDE.md with naming conventions and style guide for session notes
906
+ - Added session notes documentation for PR #1215
907
+
908
+ #### 📊 Statistics
909
+ - 2 Bug fixes merged (PR #1212, #1215)
910
+ - 10 Code quality issues resolved
911
+ - 2,277 tests passing with >96% coverage
912
+ - Quality Gate: PASSING
913
+ - Test Coverage: >96% maintained
914
+
915
+ ---
916
+
876
917
  ### v1.9.13 - September 29, 2025
877
918
 
878
919
  **Memory System Critical Fixes**: Security scanner improvements and enhanced error reporting