-
Notifications
You must be signed in to change notification settings - Fork 0
feat: Implement UMS v2.0 with TypeScript support #78
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
1e30383
feat(types): add UMS v2.0 type system with backwards compatibility
synthable db4677c
docs(ums-lib): update README for UMS v2.0
synthable c825a11
feat(cli): add TypeScript UMS file loading with tsx
synthable eb75803
feat(lib,cli): complete UMS v2.0 migration - remove v1.0 compatibility
synthable 66e538a
style: apply prettier formatting and fix linting issues
synthable 5069abd
fix: address PR review comments from GitHub Copilot
synthable 58d2b2a
fix: use persona.schemaVersion instead of hardcoding '1.0' in build r…
synthable 54c5910
fix(ums-lib): update all v1.0 references to v2.0 throughout library
synthable a5b8c8f
fix(cli,ums-lib): remove all v1.0 YAML support and address PR review …
synthable 586d843
docs(v2.0): remove v1.0 documentation and update README files for v2.0
synthable File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
feat(lib,cli): complete UMS v2.0 migration - remove v1.0 compatibility
Remove all UMS v1.0 backward compatibility code and update tests for v2.0 only. Breaking Changes: - ums-lib: Remove v1.0 directive/shape/meta validation - ums-lib: Remove v1.0 moduleGroups from persona format - CLI: Remove v1.0 type imports (UMSModule) - CLI: Remove shape display from inspect command - CLI: Update test expectations for v2.0 module format - CLI: Add loadTypeScriptPersona mock for build tests Test Coverage: - ums-lib: All 162 tests passing - CLI: All 201 tests passing - Total: 363/363 tests passing Technical Details: - Use ComponentType enum for type-safe component discrimination - Add ESLint rule exceptions for runtime validation checks - Fix nullish coalescing for optional properties - Use forEach for iteration without unused variables - Fix ums-mcp ESLint errors (nullish coalescing, catch types) Files Changed: - ums-lib: Enhanced module-validator with v2.0 rules - ums-lib: Rewrote module-parser and persona-parser tests - ums-lib: Updated markdown renderer with proper enum usage - CLI: Fixed build tests to mock loadTypeScriptPersona - CLI: Updated module-discovery tests for new standard path - CLI: Removed v1.0 fallbacks from type extensions - ums-mcp: Fixed ESLint errors for type safety
- Loading branch information
commit eb758038c6664b1b0c670e9b2908b72e0e178141
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The breaking change from optional to required persona parameter should be documented in migration notes, as this affects existing CLI usage patterns.