Skip to content

Commit 9a2388f

Browse files
authored
chore: release 14.3.0 (#1345)
1 parent 3c299de commit 9a2388f

File tree

9 files changed

+28
-13
lines changed

9 files changed

+28
-13
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# [14.3.0](https://github.com/IgniteUI/igniteui-cli/compare/v14.2.3...v14.3.0) (2024-11-25)
2+
3+
🎉 This update includes:
4+
5+
- `igniteui-angular` version [19.0.0](https://github.com/IgniteUI/igniteui-angular/releases/tag/19.0.0).
6+
7+
## What's Changed
8+
* Allow reordering of array literal expressions by @jackofdiamond5 in https://github.com/IgniteUI/igniteui-cli/pull/1323
9+
* Add pages deployment variable logic and fixes in github pages yaml files by @Hristo313 in https://github.com/IgniteUI/igniteui-cli/pull/1337
10+
* chore(templates): Updating the versions for Angular 19 by @valadzhov in https://github.com/IgniteUI/igniteui-cli/pull/1340
11+
* chore(tsconfig-pack): Add skipLibCheck by @valadzhov in https://github.com/IgniteUI/igniteui-cli/pull/1344
12+
13+
14+
**Full Changelog**: https://github.com/IgniteUI/igniteui-cli/compare/v14.2.3...v14.3.0
15+
116
# [14.2.3](https://github.com/IgniteUI/igniteui-cli/compare/v14.2.2...v14.2.3) (2024-11-15)
217

318
## What's Changed

packages/cli/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "igniteui-cli",
3-
"version": "14.3.0-rc.0",
3+
"version": "14.3.0",
44
"description": "CLI tool for creating Ignite UI projects",
55
"keywords": [
66
"CLI",
@@ -78,8 +78,8 @@
7878
"all": true
7979
},
8080
"dependencies": {
81-
"@igniteui/angular-templates": "~19.0.1430-rc.0",
82-
"@igniteui/cli-core": "~14.3.0-rc.0",
81+
"@igniteui/angular-templates": "~19.0.1430",
82+
"@igniteui/cli-core": "~14.3.0",
8383
"@inquirer/prompts": "^5.4.0",
8484
"@types/yargs": "^17.0.33",
8585
"chalk": "^5.3.0",

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@igniteui/cli-core",
3-
"version": "14.3.0-rc.0",
3+
"version": "14.3.0",
44
"description": "Base types and functionality for Ignite UI CLI",
55
"repository": {
66
"type": "git",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const IGNITEUI_ANGULAR_PACKAGE = "igniteui-angular@~19.0.0-beta.0";
1+
export const IGNITEUI_ANGULAR_PACKAGE = "igniteui-angular@~19.0.0";

packages/igx-templates/igx-ts-legacy/projects/_base/files/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"@angular/platform-browser-dynamic": "~19.0.0",
2121
"@angular/router": "~19.0.0",
2222
"hammerjs": "^2.0.8",
23-
"igniteui-angular": "~19.0.0-rc.0",
23+
"igniteui-angular": "~19.0.0",
2424
"minireset.css": "~0.0.7",
2525
"rxjs": "~7.8.0",
2626
"tslib": "~2.3.0",

packages/igx-templates/igx-ts-legacy/projects/side-nav-auth/files/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"@angular/router": "~19.0.0",
2222
"angular-auth-oidc-client": "~15.0.4",
2323
"hammerjs": "~2.0.8",
24-
"igniteui-angular": "~19.0.0-rc.0",
24+
"igniteui-angular": "~19.0.0",
2525
"minireset.css": "~0.0.7",
2626
"rxjs": "~7.8.0",
2727
"tslib": "~2.3.0",

packages/igx-templates/igx-ts/projects/_base/files/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"@angular/platform-browser-dynamic": "~19.0.0",
2121
"@angular/router": "~19.0.0",
2222
"hammerjs": "~2.0.8",
23-
"igniteui-angular": "~19.0.0-rc.0",
23+
"igniteui-angular": "~19.0.0",
2424
"minireset.css": "~0.0.7",
2525
"rxjs": "~7.8.0",
2626
"tslib": "~2.3.0",

packages/igx-templates/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@igniteui/angular-templates",
3-
"version": "19.0.1430-rc.0",
3+
"version": "19.0.1430",
44
"description": "Templates for Ignite UI for Angular projects and components",
55
"repository": {
66
"type": "git",
@@ -12,7 +12,7 @@
1212
"author": "Infragistics",
1313
"license": "MIT",
1414
"dependencies": {
15-
"@igniteui/cli-core": "~14.3.0-rc.0",
15+
"@igniteui/cli-core": "~14.3.0",
1616
"typescript": "~5.5.4"
1717
}
1818
}

packages/ng-schematics/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@igniteui/angular-schematics",
3-
"version": "19.0.1430-rc.0",
3+
"version": "19.0.1430",
44
"description": "Ignite UI for Angular Schematics for ng new and ng generate",
55
"repository": {
66
"type": "git",
@@ -20,8 +20,8 @@
2020
"dependencies": {
2121
"@angular-devkit/core": "^19.0.0",
2222
"@angular-devkit/schematics": "^19.0.0",
23-
"@igniteui/angular-templates": "~19.0.1430-rc.0",
24-
"@igniteui/cli-core": "~14.3.0-rc.0",
23+
"@igniteui/angular-templates": "~19.0.1430",
24+
"@igniteui/cli-core": "~14.3.0",
2525
"@schematics/angular": "~19.0.0",
2626
"rxjs": "^7.8.1"
2727
},

0 commit comments

Comments
 (0)