Skip to content

Commit

Permalink
Merge pull request #1181 from IgniteUI/nalipiev/release-13-1
Browse files Browse the repository at this point in the history
chore: release 13.1.0
  • Loading branch information
Lipata authored Dec 13, 2023
2 parents 82e6574 + 1d5ccec commit f130658
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 9 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
# [13.1.0](https://github.com/IgniteUI/igniteui-cli/compare/v13.0.2...v13.1.0) (2023-12-13)

🎉 This update includes:

## React:
- `igniteui-cli` templates now uses latest react framework version [18.x](https://legacy.reactjs.org/versions/).
- `igniteui-cli` templates for the grid now uses the new [Ignite UI React IgrGrid](https://www.infragistics.com/products/ignite-ui-react/react/components/grids/data-grid)

## Angular
- `igniteui-cli` and `@igniteui/angular-schematics` now generates [standalone angular](https://angular.io/guide/standalone-components) projects and standalone `igniteui-angular` components. Migrations are available for both - use `ng update` to apply them.
- `igniteui-cli` and `@igniteui/angular-schematics` keeps the old functionality and generates angular project and components using modules.

## What's Changed
* feat(igr-ts): add igr-ts proj type by @onlyexeption in https://github.com/IgniteUI/igniteui-cli/pull/1146
* Fix file name casing by @onlyexeption in https://github.com/IgniteUI/igniteui-cli/pull/1178
* Update to standalone components by @jackofdiamond5 in https://github.com/IgniteUI/igniteui-cli/pull/1174
* Migrate projectType in cli config by @jackofdiamond5 in https://github.com/IgniteUI/igniteui-cli/pull/1180
* fix(igx): remove prod config for ng build by @Lipata in https://github.com/IgniteUI/igniteui-cli/pull/1179

**Full Changelog**: https://github.com/IgniteUI/igniteui-cli/compare/v13.0.2...v13.1.0

# [13.0.2](https://github.com/IgniteUI/igniteui-cli/compare/v13.0.1...v13.0.2) (2023-11-21)

## What's Changed
Expand Down
6 changes: 3 additions & 3 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "igniteui-cli",
"version": "13.1.0-beta.4",
"version": "13.1.0",
"description": "CLI tool for creating Ignite UI projects",
"keywords": [
"CLI",
Expand Down Expand Up @@ -78,8 +78,8 @@
"all": true
},
"dependencies": {
"@igniteui/angular-templates": "~17.1.1310-beta.4",
"@igniteui/cli-core": "~13.1.0-beta.4",
"@igniteui/angular-templates": "~17.1.1310",
"@igniteui/cli-core": "~13.1.0",
"chalk": "^2.3.2",
"fs-extra": "^3.0.1",
"glob": "^7.1.2",
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": "13.1.0-beta.4",
"version": "13.1.0",
"description": "Base types and functionality for Ignite UI CLI",
"repository": {
"type": "git",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"ng": "ng",
"start": "ng serve -o",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"lint": "ng lint"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"ng": "ng",
"start": "ng serve -o",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"lint": "ng lint"
},
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": "17.1.1310-beta.4",
"version": "17.1.1310",
"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": "~13.1.0-beta.4",
"@igniteui/cli-core": "~13.1.0",
"typescript": "~4.7.2"
}
}
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": "17.1.1310-beta.4",
"version": "17.1.1310",
"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": "~14.0.0",
"@angular-devkit/schematics": "~14.0.0",
"@igniteui/angular-templates": "~17.1.1310-beta.4",
"@igniteui/cli-core": "~13.1.0-beta.4",
"@igniteui/angular-templates": "~17.1.1310",
"@igniteui/cli-core": "~13.1.0",
"@schematics/angular": "~14.0.0",
"rxjs": "^6.6.3"
},
Expand Down

0 comments on commit f130658

Please sign in to comment.