Skip to content

Commit 7c1add8

Browse files
committed
Merge remote-tracking branch 'remotes/origin/9.1.x' into mvenkov/call_notifychanges_correctly
# Conflicts: # projects/igniteui-angular/src/lib/select/select.component.ts
2 parents 5b42f17 + 96f1d39 commit 7c1add8

File tree

212 files changed

+1864
-1514
lines changed

Some content is hidden

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

212 files changed

+1864
-1514
lines changed

.github/workflows/nodejs.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3+
4+
name: Node.js CI
5+
6+
on:
7+
push:
8+
branches: [ master, 9.1.x ]
9+
pull_request:
10+
branches: [ master, 9.1.x ]
11+
12+
jobs:
13+
build:
14+
15+
runs-on: ubuntu-latest
16+
17+
strategy:
18+
matrix:
19+
node-version: [10.x, 12.x, 14.x]
20+
21+
steps:
22+
- uses: actions/checkout@v2
23+
- name: Use Node.js ${{ matrix.node-version }}
24+
uses: actions/setup-node@v1
25+
with:
26+
node-version: ${{ matrix.node-version }}
27+
- run: npm ci
28+
- run: npm run lint:lib
29+
- run: npm run build:lib
30+
- run: npm run test:lib:others
31+
env:
32+
NODE_OPTIONS: --max_old_space_size=4096
33+
- run: npm run test:lib:grid
34+
env:
35+
NODE_OPTIONS: --max_old_space_size=4096
36+
- run: npm run test:lib:tgrid
37+
env:
38+
NODE_OPTIONS: --max_old_space_size=4096
39+
- run: npm run test:lib:hgrid
40+
env:
41+
NODE_OPTIONS: --max_old_space_size=4096
42+
- run: npm run test:schematics

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes for each version of this project will be documented in this file.
44

5+
## 9.1.1
6+
7+
### General
8+
- `IgxHierarchicalGrid`
9+
- `onGridInitialized` - New output has been exposed. Emitted after a grid is being initialized for the corresponding row island.
10+
511
## 9.1.0
612

713
### General

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Ignite UI for Angular - from Infragistics
22

3+
![Node.js CI](https://github.com/IgniteUI/igniteui-angular/workflows/Node.js%20CI/badge.svg)
34
[![Build Status](https://dev.azure.com/IgniteUI/igniteui-angular/_apis/build/status/IgniteUI.igniteui-angular)](https://dev.azure.com/IgniteUI/igniteui-angular/_build/latest?definitionId=3)
45
[![Build Status](https://travis-ci.org/IgniteUI/igniteui-angular.svg?branch=master)](https://travis-ci.org/IgniteUI/igniteui-angular)
56
[![Coverage Status](https://coveralls.io/repos/github/IgniteUI/igniteui-angular/badge.svg?branch=master)](https://coveralls.io/github/IgniteUI/igniteui-angular?branch=master)

projects/igniteui-angular/karma.azure.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ module.exports = function (config) {
3535
},
3636
reporters: ['junit'],
3737
junitReporter: {
38-
outputDir: ''
38+
outputDir: ''
3939
},
4040
port: 9876,
4141
colors: true,

projects/igniteui-angular/karma.azure.grid.conf.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,14 @@ module.exports = function (config) {
4242
colors: true,
4343
logLevel: config.LOG_INFO,
4444
autoWatch: true,
45-
browsers: ['ChromeHeadless'],
45+
browsers: ['ChromeHeadlessNoSandbox'],
46+
customLaunchers: {
47+
ChromeHeadlessNoSandbox: {
48+
base: 'ChromeHeadless',
49+
flags: ['--no-sandbox', '--disable-gpu'],
50+
debug: false
51+
}
52+
},
4653
singleRun: true
4754
});
4855
};

projects/igniteui-angular/karma.azure.hierarchical-grid.conf.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,14 @@ module.exports = function (config) {
4141
colors: true,
4242
logLevel: config.LOG_INFO,
4343
autoWatch: true,
44-
browsers: ['ChromeHeadless'],
44+
browsers: ['ChromeHeadlessNoSandbox'],
45+
customLaunchers: {
46+
ChromeHeadlessNoSandbox: {
47+
base: 'ChromeHeadless',
48+
flags: ['--no-sandbox', '--disable-gpu'],
49+
debug: false
50+
}
51+
},
4552
singleRun: true
4653
});
4754
};

projects/igniteui-angular/karma.azure.non-grid.conf.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,14 @@ module.exports = function (config) {
4141
colors: true,
4242
logLevel: config.LOG_INFO,
4343
autoWatch: true,
44-
browsers: ['ChromeHeadless'],
44+
browsers: ['ChromeHeadlessNoSandbox'],
45+
customLaunchers: {
46+
ChromeHeadlessNoSandbox: {
47+
base: 'ChromeHeadless',
48+
flags: ['--no-sandbox', '--disable-gpu'],
49+
debug: false
50+
}
51+
},
4552
singleRun: true
4653
});
4754
};

projects/igniteui-angular/karma.azure.tree-grid.conf.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,14 @@ module.exports = function (config) {
4141
colors: true,
4242
logLevel: config.LOG_INFO,
4343
autoWatch: true,
44-
browsers: ['ChromeHeadless'],
44+
browsers: ['ChromeHeadlessNoSandbox'],
45+
customLaunchers: {
46+
ChromeHeadlessNoSandbox: {
47+
base: 'ChromeHeadless',
48+
flags: ['--no-sandbox', '--disable-gpu'],
49+
debug: false
50+
}
51+
},
4552
singleRun: true
4653
});
4754
};

projects/igniteui-angular/karma.conf.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,12 @@ module.exports = function (config) {
3535
},
3636
reporters: ['spec'],
3737
specReporter: {
38-
suppressSkipped: true
38+
suppressSkipped: true,
39+
suppressErrorSummary: false,
40+
suppressFailed: false,
41+
suppressPassed: false,
42+
showSpecTiming: false,
43+
failFast: false
3944
},
4045
port: 9876,
4146
colors: true,

projects/igniteui-angular/karma.grid.conf.js

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,25 @@ module.exports = function (config) {
3636
},
3737
reporters: ['spec'],
3838
specReporter: {
39-
suppressSkipped: true
39+
suppressSkipped: true,
40+
suppressErrorSummary: false,
41+
suppressFailed: false,
42+
suppressPassed: false,
43+
showSpecTiming: false,
44+
failFast: false
4045
},
4146
port: 9876,
4247
colors: true,
4348
logLevel: config.LOG_INFO,
4449
autoWatch: true,
45-
browsers: ['ChromeHeadless'],
50+
browsers: ['ChromeHeadlessNoSandbox'],
51+
customLaunchers: {
52+
ChromeHeadlessNoSandbox: {
53+
base: 'ChromeHeadless',
54+
flags: ['--no-sandbox', '--disable-gpu'],
55+
debug: false
56+
}
57+
},
4658
singleRun: false
4759
});
4860
};

0 commit comments

Comments
 (0)