diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d97e6c52..1a37fa1b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +# [14.3.0](https://github.com/IgniteUI/igniteui-cli/compare/v14.2.3...v14.3.0) (2024-11-25) + +🎉 This update includes: + +- `igniteui-angular` version [19.0.0](https://github.com/IgniteUI/igniteui-angular/releases/tag/19.0.0). + +## What's Changed +* Allow reordering of array literal expressions by @jackofdiamond5 in https://github.com/IgniteUI/igniteui-cli/pull/1323 +* Add pages deployment variable logic and fixes in github pages yaml files by @Hristo313 in https://github.com/IgniteUI/igniteui-cli/pull/1337 +* chore(templates): Updating the versions for Angular 19 by @valadzhov in https://github.com/IgniteUI/igniteui-cli/pull/1340 +* chore(tsconfig-pack): Add skipLibCheck by @valadzhov in https://github.com/IgniteUI/igniteui-cli/pull/1344 + + +**Full Changelog**: https://github.com/IgniteUI/igniteui-cli/compare/v14.2.3...v14.3.0 + # [14.2.3](https://github.com/IgniteUI/igniteui-cli/compare/v14.2.2...v14.2.3) (2024-11-15) ## What's Changed diff --git a/packages/cli/package.json b/packages/cli/package.json index 26cea2afe..75cc4b2a8 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "igniteui-cli", - "version": "14.3.0-rc.0", + "version": "14.3.0", "description": "CLI tool for creating Ignite UI projects", "keywords": [ "CLI", @@ -78,8 +78,8 @@ "all": true }, "dependencies": { - "@igniteui/angular-templates": "~19.0.1430-rc.0", - "@igniteui/cli-core": "~14.3.0-rc.0", + "@igniteui/angular-templates": "~19.0.1430", + "@igniteui/cli-core": "~14.3.0", "@inquirer/prompts": "^5.4.0", "@types/yargs": "^17.0.33", "chalk": "^5.3.0", diff --git a/packages/core/package.json b/packages/core/package.json index 06566ff6f..3d8ea25fd 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@igniteui/cli-core", - "version": "14.3.0-rc.0", + "version": "14.3.0", "description": "Base types and functionality for Ignite UI CLI", "repository": { "type": "git", diff --git a/packages/igx-templates/constants.ts b/packages/igx-templates/constants.ts index a39421a8c..cbcfcb556 100644 --- a/packages/igx-templates/constants.ts +++ b/packages/igx-templates/constants.ts @@ -1 +1 @@ -export const IGNITEUI_ANGULAR_PACKAGE = "igniteui-angular@~19.0.0-beta.0"; +export const IGNITEUI_ANGULAR_PACKAGE = "igniteui-angular@~19.0.0"; diff --git a/packages/igx-templates/igx-ts-legacy/projects/_base/files/package.json b/packages/igx-templates/igx-ts-legacy/projects/_base/files/package.json index ee1fa5341..f6b2647cd 100644 --- a/packages/igx-templates/igx-ts-legacy/projects/_base/files/package.json +++ b/packages/igx-templates/igx-ts-legacy/projects/_base/files/package.json @@ -20,7 +20,7 @@ "@angular/platform-browser-dynamic": "~19.0.0", "@angular/router": "~19.0.0", "hammerjs": "^2.0.8", - "igniteui-angular": "~19.0.0-rc.0", + "igniteui-angular": "~19.0.0", "minireset.css": "~0.0.7", "rxjs": "~7.8.0", "tslib": "~2.3.0", diff --git a/packages/igx-templates/igx-ts-legacy/projects/side-nav-auth/files/package.json b/packages/igx-templates/igx-ts-legacy/projects/side-nav-auth/files/package.json index f8baf3482..cdd2e6cd2 100644 --- a/packages/igx-templates/igx-ts-legacy/projects/side-nav-auth/files/package.json +++ b/packages/igx-templates/igx-ts-legacy/projects/side-nav-auth/files/package.json @@ -21,7 +21,7 @@ "@angular/router": "~19.0.0", "angular-auth-oidc-client": "~15.0.4", "hammerjs": "~2.0.8", - "igniteui-angular": "~19.0.0-rc.0", + "igniteui-angular": "~19.0.0", "minireset.css": "~0.0.7", "rxjs": "~7.8.0", "tslib": "~2.3.0", diff --git a/packages/igx-templates/igx-ts/projects/_base/files/package.json b/packages/igx-templates/igx-ts/projects/_base/files/package.json index 3e6ecf181..e05fd371b 100644 --- a/packages/igx-templates/igx-ts/projects/_base/files/package.json +++ b/packages/igx-templates/igx-ts/projects/_base/files/package.json @@ -20,7 +20,7 @@ "@angular/platform-browser-dynamic": "~19.0.0", "@angular/router": "~19.0.0", "hammerjs": "~2.0.8", - "igniteui-angular": "~19.0.0-rc.0", + "igniteui-angular": "~19.0.0", "minireset.css": "~0.0.7", "rxjs": "~7.8.0", "tslib": "~2.3.0", diff --git a/packages/igx-templates/package.json b/packages/igx-templates/package.json index 917cf5daf..5c4b94b6d 100644 --- a/packages/igx-templates/package.json +++ b/packages/igx-templates/package.json @@ -1,6 +1,6 @@ { "name": "@igniteui/angular-templates", - "version": "19.0.1430-rc.0", + "version": "19.0.1430", "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.3.0-rc.0", + "@igniteui/cli-core": "~14.3.0", "typescript": "~5.5.4" } } diff --git a/packages/ng-schematics/package.json b/packages/ng-schematics/package.json index 3345a5ad4..1badb86e1 100644 --- a/packages/ng-schematics/package.json +++ b/packages/ng-schematics/package.json @@ -1,6 +1,6 @@ { "name": "@igniteui/angular-schematics", - "version": "19.0.1430-rc.0", + "version": "19.0.1430", "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": "~19.0.1430-rc.0", - "@igniteui/cli-core": "~14.3.0-rc.0", + "@igniteui/angular-templates": "~19.0.1430", + "@igniteui/cli-core": "~14.3.0", "@schematics/angular": "~19.0.0", "rxjs": "^7.8.1" },