@dollhousemcp/mcp-server 1.8.1 โ†’ 1.9.0

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.
Files changed (32) hide show
  1. package/README.github.md +36 -7
  2. package/README.md.backup +49 -883
  3. package/dist/collection/CollectionBrowser.d.ts.map +1 -1
  4. package/dist/collection/CollectionBrowser.js +6 -5
  5. package/dist/elements/memories/Memory.d.ts +190 -0
  6. package/dist/elements/memories/Memory.d.ts.map +1 -0
  7. package/dist/elements/memories/Memory.js +627 -0
  8. package/dist/elements/memories/MemoryManager.d.ts +136 -0
  9. package/dist/elements/memories/MemoryManager.d.ts.map +1 -0
  10. package/dist/elements/memories/MemoryManager.js +607 -0
  11. package/dist/elements/memories/MemorySearchIndex.d.ts +156 -0
  12. package/dist/elements/memories/MemorySearchIndex.d.ts.map +1 -0
  13. package/dist/elements/memories/MemorySearchIndex.js +690 -0
  14. package/dist/elements/memories/constants.d.ts +95 -0
  15. package/dist/elements/memories/constants.d.ts.map +1 -0
  16. package/dist/elements/memories/constants.js +102 -0
  17. package/dist/elements/memories/index.d.ts +7 -0
  18. package/dist/elements/memories/index.d.ts.map +1 -0
  19. package/dist/elements/memories/index.js +7 -0
  20. package/dist/elements/memories/utils.d.ts +68 -0
  21. package/dist/elements/memories/utils.d.ts.map +1 -0
  22. package/dist/elements/memories/utils.js +137 -0
  23. package/dist/generated/version.d.ts +2 -2
  24. package/dist/generated/version.js +3 -3
  25. package/dist/security/audit/SecurityAuditor.d.ts.map +1 -1
  26. package/dist/security/audit/SecurityAuditor.js +24 -2
  27. package/dist/security/audit/config/suppressions.d.ts.map +1 -1
  28. package/dist/security/audit/config/suppressions.js +91 -1
  29. package/dist/security/securityMonitor.d.ts +1 -1
  30. package/dist/security/securityMonitor.d.ts.map +1 -1
  31. package/dist/security/securityMonitor.js +1 -1
  32. package/package.json +1 -1
package/README.github.md CHANGED
@@ -158,21 +158,17 @@ Enable autonomous task completion
158
158
 
159
159
  </td>
160
160
  </tr>
161
- </table>
162
-
163
- ### ๐Ÿ”„ Coming Soon
164
-
165
- <table>
166
161
  <tr>
167
162
  <td width="50%">
168
163
 
169
- #### ๐Ÿง  Memory
164
+ #### ๐Ÿง  Memory (NEW in v1.9.0!)
170
165
  Persistent context across sessions
171
166
  - **Project Context** - Remember project details and decisions
172
167
  - **Learning Progress** - Track skill development over time
173
168
  - **Personal Preferences** - Store user-specific settings
174
169
  - **Conversation History** - Maintain dialogue continuity
175
- - **Status**: Coming Soon
170
+ - **Date-based organization** - Automatic folder structure
171
+ - **Use**: `"Create a memory for this project"`
176
172
 
177
173
  </td>
178
174
  <td width="50%">
@@ -842,6 +838,39 @@ For detailed guidelines, see [CONTRIBUTING.md](CONTRIBUTING.md).
842
838
 
843
839
  ## ๐Ÿท๏ธ Version History
844
840
 
841
+ ### v1.9.0 - September 19, 2025
842
+
843
+ **๐ŸŽ‰ Memory Element Release**: Persistent context storage with enterprise-grade features
844
+
845
+ #### โœจ New Features
846
+ - **Memory Element**: Complete implementation of persistent context storage (PR #1000 - The Milestone PR!)
847
+ - **Date-based Organization**: Automatic folder structure (YYYY-MM-DD) prevents flat directory issues
848
+ - **Content Deduplication**: SHA-256 hashing prevents duplicate storage (Issue #994)
849
+ - **Search Indexing**: Fast queries across thousands of entries with O(log n) performance (Issue #984)
850
+ - **Privacy Levels**: Three-tier access control (public, private, sensitive)
851
+ - **Retention Policies**: Automatic cleanup based on age and capacity
852
+
853
+ #### ๐Ÿ”ง Improvements
854
+ - **Performance Optimizations**: 60-second cache for date folder operations
855
+ - **Collision Handling**: Automatic version suffixes for same-named files
856
+ - **Atomic Operations**: FileLockManager prevents corruption and race conditions
857
+ - **Sanitization Caching**: SHA-256 checksums reduce CPU usage by ~40% during deserialization
858
+ - **Retry Logic**: Search index building with exponential backoff
859
+
860
+ #### ๐Ÿ›ก๏ธ Security
861
+ - **Comprehensive Input Validation**: All memory content sanitized with DOMPurify
862
+ - **Path Traversal Protection**: Robust validation in MemoryManager
863
+ - **Size Limits**: DoS protection with 1MB memory and 100KB entry limits
864
+ - **Audit Logging**: Complete security event tracking
865
+
866
+ #### ๐Ÿงช Testing
867
+ - **89 Memory Tests**: Comprehensive coverage across 4 test suites
868
+ - **Concurrent Access Tests**: Thread safety verification
869
+ - **Security Coverage**: XSS, Unicode attacks, path traversal
870
+ - **CI Improvements**: Fixed GitHub integration test conflicts (PR #1001)
871
+
872
+ ---
873
+
845
874
  ### v1.8.1 - September 15, 2025
846
875
 
847
876
  **CI Reliability Improvements**: Fixed persistent test failures across platforms