chore(15.0.0): prepping for release#1657
Conversation
Co-authored-by: Copilot <copilot@github.com>
There was a problem hiding this comment.
Pull request overview
Prepares the codebase for the 15.0.0 release by switching MCP server configurations from prerelease (@next) to the stable igniteui-cli package across templates, tests, and documentation, and updating the main changelog to the final release entry.
Changes:
- Removed the
@nexttag from theigniteui-cliMCP servernpxargs across generated configs, unit tests, and docs. - Updated
.vscode/mcp.jsontemplate files to reference the stable CLI package. - Updated
CHANGELOG.mdheader/entries for the 15.0.0 release.
Reviewed changes
Copilot reviewed 10 out of 10 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
| spec/unit/ai-config-spec.ts | Updates unit test expectations to use stable igniteui-cli MCP command. |
| packages/ng-schematics/src/ng-new/index_spec.ts | Updates schematic test expectations for generated MCP config. |
| packages/ng-schematics/src/cli-config/index_spec.ts | Updates schematic test expectations and fixtures for MCP server config. |
| packages/igx-templates/igx-ts/projects/_base/files/__dot__vscode/mcp.json | Updates Angular template MCP config to stable igniteui-cli. |
| packages/cli/templates/webcomponents/igc-ts/projects/_base/files/__dot__vscode/mcp.json | Updates Web Components template MCP config to stable igniteui-cli. |
| packages/cli/templates/react/igr-ts/projects/_base/files/__dot__vscode/mcp.json | Updates React template MCP config to stable igniteui-cli. |
| packages/igniteui-mcp/igniteui-doc-mcp/README.md | Updates MCP configuration examples to stable igniteui-cli. |
| packages/igniteui-mcp/Specification.md | Updates spec MCP configuration examples to stable igniteui-cli. |
| packages/core/util/mcp-config.ts | Updates built-in MCP server defaults to stable igniteui-cli. |
| CHANGELOG.md | Promotes release notes from RC to 15.0.0 and notes MCP config stabilization. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| "mcpServers": { | ||
| "igniteui-cli": { | ||
| "command": "npx", | ||
| "args": ["-y", "igniteui-cli@next", "mcp"] | ||
| "args": ["-y", "igniteui-cli", "mcp"] | ||
| } |
There was a problem hiding this comment.
The surrounding text says “If Ignite UI CLI is globally installed …”, but the shown configuration runs the CLI via npx, which does not require a global install (and may even bypass it). Update the wording to match the npx-based instructions, or change the command to use the globally-installed binary if that’s the intent.
Closes # .
Additional information related to this pull request: