Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# 15.5.1 (2026-08-05)

## What's Changed
* **fix(mcp):** Updated the bundled MCP documentation database with the full set of documents, so `list_components`, `get_doc`, and `search_docs` resolve against complete Angular, React, Web Components, and Blazor docs. The `build:db` script no longer fails the build when the optional copy to the docs backend cannot be written. [#1767](https://github.com/IgniteUI/igniteui-cli/pull/1767)
* **refactor(styles):** Removed hardcoded styles from the React templates — Login, Register, LoginBar, LoginDialog, Profile, and the side-nav / side-nav-mini / side-nav-auth layouts now use theme CSS variables. Also restored the missing theme import and styles in the React base template. [#1760](https://github.com/IgniteUI/igniteui-cli/pull/1760)
* **feat(cd):** Added an MCP Publisher step to the npm publish workflow, including prerelease checks, so `@igniteui/mcp-server` is published to the MCP registry alongside npm. Updated the root and MCP README files. [#1764](https://github.com/IgniteUI/igniteui-cli/pull/1764)
* **chore(mcp):** Updated `@modelcontextprotocol/sdk` to 1.30.0 and `@hono/node-server` to 2.0.12. [#1762](https://github.com/IgniteUI/igniteui-cli/pull/1762)

# 15.5.0 (2026-07-15)

## What's Changed
Expand Down
8 changes: 4 additions & 4 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "igniteui-cli",
"version": "15.5.0",
"version": "15.5.1",
"description": "CLI tool for creating Ignite UI projects",
"keywords": [
"CLI",
Expand Down Expand Up @@ -66,9 +66,9 @@
"all": true
},
"dependencies": {
"@igniteui/angular-templates": "~22.0.1550",
"@igniteui/cli-core": "~15.5.0",
"@igniteui/mcp-server": "~15.5.0",
"@igniteui/angular-templates": "~22.0.1551",
"@igniteui/cli-core": "~15.5.1",
"@igniteui/mcp-server": "~15.5.1",
"@inquirer/prompts": "^7.9.0",
"chalk": "^5.3.0",
"glob": "^11.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@igniteui/cli-core",
"version": "15.5.0",
"version": "15.5.1",
"description": "Base types and functionality for Ignite UI CLI",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/igniteui-mcp/igniteui-doc-mcp/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@igniteui/mcp-server",
"mcpName": "io.github.IgniteUI/mcp-server",
"version": "15.5.0",
"version": "15.5.1",
"description": "Unified MCP server for Ignite UI — documentation, GitHub API, and CLI scaffolding",
"repository": {
Comment on lines 2 to 6
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions packages/igniteui-mcp/igniteui-doc-mcp/server.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
"source": "github",
"url": "https://github.com/IgniteUI/igniteui-cli"
},
"version": "15.5.0",
"version": "15.5.1",
"packages": [
{
"registryType": "npm",
"identifier": "@igniteui/mcp-server",
"version": "15.5.0",
"version": "15.5.1",
"transport": {
"type": "stdio"
}
Expand Down
4 changes: 2 additions & 2 deletions packages/igx-templates/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@igniteui/angular-templates",
"version": "22.0.1550",
"version": "22.0.1551",
"description": "Templates for Ignite UI for Angular projects and components",
"repository": {
"type": "git",
Expand All @@ -12,7 +12,7 @@
"author": "Infragistics",
"license": "MIT",
"dependencies": {
"@igniteui/cli-core": "~15.5.0",
"@igniteui/cli-core": "~15.5.1",
"typescript": "~5.5.4"
}
}
6 changes: 3 additions & 3 deletions packages/ng-schematics/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@igniteui/angular-schematics",
"version": "22.0.1550",
"version": "22.0.1551",
"description": "Ignite UI for Angular Schematics for ng new and ng generate",
"repository": {
"type": "git",
Expand All @@ -20,8 +20,8 @@
"dependencies": {
"@angular-devkit/core": "^22.0.0",
"@angular-devkit/schematics": "^22.0.0",
"@igniteui/angular-templates": "~22.0.1550",
"@igniteui/cli-core": "~15.5.0",
"@igniteui/angular-templates": "~22.0.1551",
"@igniteui/cli-core": "~15.5.1",
"@schematics/angular": "^22.0.0",
"minimatch": "^10.0.1",
"rxjs": "~7.8.1",
Expand Down