Skip to content

Commit f360a48

Browse files
authored
merge 14.6.x into master (#1451)
1 parent adb4ba2 commit f360a48

File tree

10 files changed

+39
-15
lines changed

10 files changed

+39
-15
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
# [14.6.6](https://github.com/IgniteUI/igniteui-cli/compare/v14.6.5...v14.6.6) (2025-11-12)
2+
3+
## What's Changed
4+
* Update github pages workflow step by @Hristo313 in https://github.com/IgniteUI/igniteui-cli/pull/1452
5+
* Update react test setup configuration by @Hristo313 in https://github.com/IgniteUI/igniteui-cli/pull/1453
6+
7+
**Full Changelog**: https://github.com/IgniteUI/igniteui-cli/compare/v14.6.5...v14.6.6
8+
9+
# [14.6.5](https://github.com/IgniteUI/igniteui-cli/compare/v14.6.4...v14.6.5) (2025-11-10)
10+
11+
## What's Changed
12+
13+
* ci(react): install Playwright in the YAML file by @Lipata in https://github.com/IgniteUI/igniteui-cli/pull/1450
14+
* build(deps): bump eazy-logger from 4.0.1 to 4.1.0 in the npm_and_yarn group across 1 directory by @dependabot[bot] in https://github.com/IgniteUI/igniteui-cli/pull/1436
15+
16+
17+
**Full Changelog**: https://github.com/IgniteUI/igniteui-cli/compare/v14.6.4...v14.6.5
18+
119
# [14.6.4](https://github.com/IgniteUI/igniteui-cli/compare/v14.6.3...v14.6.4) (2025-10-14)
220

321
## 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.6.5-beta.0",
3+
"version": "14.6.6",
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.1.1465-beta.0",
80-
"@igniteui/cli-core": "~14.6.5-beta.0",
79+
"@igniteui/angular-templates": "~20.1.1466",
80+
"@igniteui/cli-core": "~14.6.6",
8181
"@inquirer/prompts": "^7.9.0",
8282
"@types/yargs": "^17.0.33",
8383
"chalk": "^5.3.0",

packages/cli/templates/react/igr-ts/projects/_base/files/__dot__azure/azure-pipelines.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,9 @@ steps:
1919
continueOnError: true
2020
- script: npm run build
2121
displayName: 'Build the project'
22+
- script: npx playwright install chromium-headless-shell
23+
displayName: 'Install Playwright browsers'
2224
- script: npm run test
2325
displayName: 'Run tests'
26+
env:
27+
CI: 'true'

packages/cli/templates/react/igr-ts/projects/_base/files/__dot__github/workflows/github-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
find ./dist/assets -type f -name "*.js" -exec sed -i 's|src/assets|${{ github.event.repository.name }}/assets|g' {} +;
4040
find ./dist/assets -type f -name "*.js" -exec sed -i 's|/static-data/|/${{ github.event.repository.name }}/static-data/|g' {} +
4141
- name: Copy Resources to dist
42-
run: mkdir -p ./dist/assets && cp -R ./src/assets/* ./dist/assets/
42+
run: if [ -d "./src/assets" ]; then mkdir -p ./dist/assets && cp -R ./src/assets/* ./dist/assets/; fi
4343
- name: SPA routing handling
4444
run: cp ./dist/index.html ./dist/404.html
4545
- name: Upload build artifact to GitHub Pages

packages/cli/templates/react/igr-ts/projects/_base/files/__dot__github/workflows/node.js.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,8 @@ jobs:
2929
- run: npm i # replace with 'npm ci' after committing lock file from first install
3030
# - run: npm run lint
3131
- run: npm run build
32+
- name: Install Playwright browsers
33+
run: npx playwright install chromium-headless-shell
3234
- run: npm run test
33-
35+
env:
36+
CI: 'true'
Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
import '@testing-library/jest-dom'
2-
import 'vitest-canvas-mock'
31
import ResizeObserver from 'resize-observer-polyfill'
42
import {vi} from 'vitest'
53

6-
global.ResizeObserver = ResizeObserver;
4+
globalThis.ResizeObserver = ResizeObserver;
75

86
HTMLElement.prototype.scrollIntoView = vi.fn();
97
HTMLElement.prototype.hidePopover = vi.fn();
108
HTMLElement.prototype.showPopover = vi.fn();
11-
HTMLElement.prototype.togglePopover = vi.fn();
9+
HTMLElement.prototype.togglePopover = vi.fn();

packages/cli/templates/react/igr-ts/projects/_base/files/vite.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export default defineConfig({
1818
},
1919
],
2020
},
21+
setupFiles: ['./src/setupTests.ts']
2122
},
2223
resolve: {
2324
mainFields: ['module'],

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.6.5-beta.0",
3+
"version": "14.6.6",
44
"description": "Base types and functionality for Ignite UI CLI",
55
"repository": {
66
"type": "git",

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": "20.1.1465-beta.0",
3+
"version": "20.1.1466",
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.6.5-beta.0",
15+
"@igniteui/cli-core": "~14.6.6",
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": "20.1.1465-beta.0",
3+
"version": "20.1.1466",
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": "~20.1.1465-beta.0",
24-
"@igniteui/cli-core": "~14.6.5-beta.0",
23+
"@igniteui/angular-templates": "~20.1.1466",
24+
"@igniteui/cli-core": "~14.6.6",
2525
"@schematics/angular": "~19.0.0",
2626
"minimatch": "^10.0.1",
2727
"rxjs": "^7.8.1"

0 commit comments

Comments
 (0)