Skip to content

Commit 04d21cb

Browse files
committed
Merge branch 'master' into copilot/fix-64418712-6aa3-4d54-b2c1-7ceca4d4758c
2 parents 635a96e + 61e3eca commit 04d21cb

File tree

42 files changed

+73
-87
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+73
-87
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ packages/core/config/Config.schema.json
3232
# Misc
3333
npm-debug.log*
3434
yarn-error.log*
35+
package-lock.json
3536

3637
# Mac OSX Finder files.
3738
**/.DS_Store

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# [14.5.5-beta.0](https://github.com/IgniteUI/igniteui-cli/compare/v14.5.4...v14.5.5-beta.0) (2025-08-20)
1+
# [14.5.5](https://github.com/IgniteUI/igniteui-cli/compare/v14.5.4...v14.5.5) (2025-08-21)
22

33
## What's Changed
4-
* fix: react upgrade-packages not updating .tsx files in projects with workspace glob patterns by @copilot in https://github.com/IgniteUI/igniteui-cli/pull/1408
4+
* fix: remove hsla function #1412 @Lipata in https://github.com/IgniteUI/igniteui-cli/pull/1412
55

6-
**Full Changelog**: https://github.com/IgniteUI/igniteui-cli/compare/v14.5.4...v14.5.5-beta.0
6+
**Full Changelog**: https://github.com/IgniteUI/igniteui-cli/compare/v14.5.4...v14.5.5
77

88
# [14.5.4](https://github.com/IgniteUI/igniteui-cli/compare/v14.5.3...v14.5.4) (2025-07-01)
99

packages/cli/bin/execute.js

100644100755
File mode 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.5.5-beta.0",
3+
"version": "14.5.5",
44
"description": "CLI tool for creating Ignite UI projects",
55
"keywords": [
66
"CLI",
@@ -76,8 +76,8 @@
7676
"all": true
7777
},
7878
"dependencies": {
79-
"@igniteui/angular-templates": "~20.0.1455-beta.0",
80-
"@igniteui/cli-core": "~14.5.5-beta.0",
79+
"@igniteui/angular-templates": "~20.0.1455",
80+
"@igniteui/cli-core": "~14.5.5",
8181
"@inquirer/prompts": "^5.4.0",
8282
"@types/yargs": "^17.0.33",
8383
"chalk": "^5.3.0",

packages/cli/templates/angular/ig-ts/projects/empty/files/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"@angular/router": "~20.0.0",
2121
"jquery": ">=1.9.1",
2222
"jquery-ui": ">=1.10.5",
23-
"igniteui-angular-wrappers": "~17.0.0",
23+
"igniteui-angular-wrappers": "~20.0.0",
2424
"ignite-ui": "~22.2",
2525
"rxjs": "~7.8.0",
2626
"tslib": "^2.3.0",

packages/cli/templates/react/es6/projects/empty/files/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"private": true,
55
"dependencies": {
66
"ignite-ui": "21.1.13",
7-
"igniteui-react": "^1.3.2",
7+
"igniteui-react": "~19.2.0",
88
"jquery": "^3.6.0",
99
"jquery-ui": "^1.12.1",
1010
"react": "^17.0.2",

packages/cli/templates/react/igr-es6/bullet-graph/default/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class IgrBulletGraphTemplate extends IgniteUIForReactTemplate {
1010
this.projectType = "igr-es6";
1111
this.name = "Bullet Graph";
1212
this.description = `allows for a linear and concise view of measures compared against a scale.`;
13-
this.packages = ["igniteui-react-gauges@~16.15.0"]; // TODO: read version from igniteui-react-core in package.json
13+
this.packages = ["igniteui-react-gauges@~19.0.0"]; // TODO: read version from igniteui-react-core in package.json
1414
}
1515
}
1616
module.exports = new IgrBulletGraphTemplate();

packages/cli/templates/react/igr-es6/category-chart/default/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class IgrCategoryChartTemplate extends IgniteUIForReactTemplate {
1111
this.name = "Category Chart";
1212
this.description = `makes visualizing category data easy. Simplifies the complexities
1313
of the data visualization domain into manageable API`;
14-
this.packages = ["igniteui-react-charts@~16.15.0"]; // TODO: read version from igniteui-react-core in package.json
14+
this.packages = ["igniteui-react-charts@~19.0.0"]; // TODO: read version from igniteui-react-core in package.json
1515
}
1616
}
1717
module.exports = new IgrCategoryChartTemplate();

packages/cli/templates/react/igr-es6/doughnut-chart/default/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class IgrDoughnutChartTemplate extends IgniteUIForReactTemplate {
1010
this.projectType = "igr-es6";
1111
this.name = "Doughnut Chart";
1212
this.description = `proportionally illustrate the occurrences of variables.`;
13-
this.packages = ["igniteui-react-charts@~16.15.0"]; // TODO: read version from igniteui-react-core in package.json
13+
this.packages = ["igniteui-react-charts@~19.0.0"]; // TODO: read version from igniteui-react-core in package.json
1414
}
1515
}
1616
module.exports = new IgrDoughnutChartTemplate();

packages/cli/templates/react/igr-es6/financial-chart/default/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class IgrFinancialChartTemplate extends IgniteUIForReactTemplate {
1212
this.name = "Financial Chart";
1313
this.description = `charting component that makes it easy to visualize financial data by
1414
using a simple and intuitive API.`;
15-
this.packages = ["igniteui-react-charts@~16.15.0"]; // TODO: read version from igniteui-react-core in package.json
15+
this.packages = ["igniteui-react-charts@~19.0.0"]; // TODO: read version from igniteui-react-core in package.json
1616
}
1717
}
1818
module.exports = new IgrFinancialChartTemplate();

0 commit comments

Comments
 (0)