diff --git a/CHANGELOG.md b/CHANGELOG.md index c2520326c..710c95bfb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# [13.1.16](https://github.com/IgniteUI/igniteui-cli/compare/v13.1.15...v13.1.16) (2024-04-28) + +## What's Changed +* fix(react): fix null type build error in main.tsx by @teodosiah in https://github.com/IgniteUI/igniteui-cli/pull/1242 +* chore(ng standalone): add stylePreprocessorOptions for test by @Lipata in https://github.com/IgniteUI/igniteui-cli/pull/1244 +* chore(*): update node in publish and all templates by @Lipata in https://github.com/IgniteUI/igniteui-cli/pull/1245 + +**Full Changelog**: https://github.com/IgniteUI/igniteui-cli/compare/v13.1.15...v13.1.16 + # [13.1.15](https://github.com/IgniteUI/igniteui-cli/compare/v13.1.14...v13.1.15) (2024-04-12) ## What's Changed diff --git a/packages/cli/package.json b/packages/cli/package.json index 00eea50b9..1115ede78 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "igniteui-cli", - "version": "13.1.15", + "version": "13.1.16", "description": "CLI tool for creating Ignite UI projects", "keywords": [ "CLI", @@ -78,8 +78,8 @@ "all": true }, "dependencies": { - "@igniteui/angular-templates": "~17.1.13115", - "@igniteui/cli-core": "~13.1.15", + "@igniteui/angular-templates": "~17.1.13116", + "@igniteui/cli-core": "~13.1.16", "chalk": "^2.3.2", "fs-extra": "^3.0.1", "glob": "^7.1.2", diff --git a/packages/core/package.json b/packages/core/package.json index 6745b1669..658746076 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@igniteui/cli-core", - "version": "13.1.15", + "version": "13.1.16", "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 29b0a4aee..8f0f9c27b 100644 --- a/packages/igx-templates/package.json +++ b/packages/igx-templates/package.json @@ -1,6 +1,6 @@ { "name": "@igniteui/angular-templates", - "version": "17.1.13115", + "version": "17.1.13116", "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": "~13.1.15", + "@igniteui/cli-core": "~13.1.16", "typescript": "~5.4.3" } } diff --git a/packages/ng-schematics/package.json b/packages/ng-schematics/package.json index 1cccbc94f..85d1094e4 100644 --- a/packages/ng-schematics/package.json +++ b/packages/ng-schematics/package.json @@ -1,6 +1,6 @@ { "name": "@igniteui/angular-schematics", - "version": "17.1.13115", + "version": "17.1.13116", "description": "Ignite UI for Angular Schematics for ng new and ng generate", "repository": { "type": "git", @@ -20,8 +20,8 @@ "dependencies": { "@angular-devkit/core": "~14.0.0", "@angular-devkit/schematics": "~14.0.0", - "@igniteui/angular-templates": "~17.1.13115", - "@igniteui/cli-core": "~13.1.15", + "@igniteui/angular-templates": "~17.1.13116", + "@igniteui/cli-core": "~13.1.16", "@schematics/angular": "~14.0.0", "rxjs": "^6.6.3" },