diff --git a/CHANGELOG.md b/CHANGELOG.md index c7e4c08cb..baea61629 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# [14.8.5](https://github.com/IgniteUI/igniteui-cli/compare/v14.8.4...v14.8.5) (2026-02-11) + +## What's Changed +* fix(angular): add provide zone change detection in app config by @Hristo313 in https://github.com/IgniteUI/igniteui-cli/pull/1488 +* fix(react): remove setupTests and update test with it's logic by @Hristo313 in https://github.com/IgniteUI/igniteui-cli/pull/1489 + +**Full Changelog**: https://github.com/IgniteUI/igniteui-cli/compare/v14.8.4...v14.8.5 + # [14.8.4](https://github.com/IgniteUI/igniteui-cli/compare/v14.8.3...v14.8.4) (2026-02-05) ## What's Changed diff --git a/packages/cli/package.json b/packages/cli/package.json index dcfa5397b..848270d83 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "igniteui-cli", - "version": "14.8.5-beta.3", + "version": "14.8.5", "description": "CLI tool for creating Ignite UI projects", "keywords": [ "CLI", @@ -76,8 +76,8 @@ "all": true }, "dependencies": { - "@igniteui/angular-templates": "~21.0.1485-beta.3", - "@igniteui/cli-core": "~14.8.5-beta.3", + "@igniteui/angular-templates": "~21.0.1485", + "@igniteui/cli-core": "~14.8.5", "@inquirer/prompts": "^7.9.0", "@types/yargs": "^17.0.33", "chalk": "^5.3.0", diff --git a/packages/core/package.json b/packages/core/package.json index fd4171581..40cc71e08 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@igniteui/cli-core", - "version": "14.8.5-beta.3", + "version": "14.8.5", "description": "Base types and functionality for Ignite UI CLI", "repository": { "type": "git", diff --git a/packages/igx-templates/package.json b/packages/igx-templates/package.json index fee69cfd2..5977b06ce 100644 --- a/packages/igx-templates/package.json +++ b/packages/igx-templates/package.json @@ -1,6 +1,6 @@ { "name": "@igniteui/angular-templates", - "version": "21.0.1485-beta.3", + "version": "21.0.1485", "description": "Templates for Ignite UI for Angular projects and components", "repository": { "type": "git", @@ -12,7 +12,7 @@ "author": "Infragistics", "license": "MIT", "dependencies": { - "@igniteui/cli-core": "~14.8.5-beta.3", + "@igniteui/cli-core": "~14.8.5", "typescript": "~5.5.4" } } diff --git a/packages/ng-schematics/package.json b/packages/ng-schematics/package.json index 2280ce8fa..76f195994 100644 --- a/packages/ng-schematics/package.json +++ b/packages/ng-schematics/package.json @@ -1,6 +1,6 @@ { "name": "@igniteui/angular-schematics", - "version": "21.0.1485-beta.3", + "version": "21.0.1485", "description": "Ignite UI for Angular Schematics for ng new and ng generate", "repository": { "type": "git", @@ -20,8 +20,8 @@ "dependencies": { "@angular-devkit/core": "^19.0.0", "@angular-devkit/schematics": "^19.0.0", - "@igniteui/angular-templates": "~21.0.1485-beta.3", - "@igniteui/cli-core": "~14.8.5-beta.3", + "@igniteui/angular-templates": "~21.0.1485", + "@igniteui/cli-core": "~14.8.5", "@schematics/angular": "~19.0.0", "minimatch": "^10.0.1", "rxjs": "^7.8.1"