@progress/kendo-common-tasks 7.9.5-ng12.85 → 8.0.1-dev.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +25 -0
- package/bin/ci-semantic-release +4 -4
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,31 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [8.0.0](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@7.9.4...@progress/kendo-common-tasks@8.0.0) (2022-04-19)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* include @angular/localize in externals ([7c6bab6](https://github.com/telerik/kendo-build-tasks/commit/7c6bab6077eadd952ada9341807664cb699f31e1))
|
|
12
|
+
* set commit status ([#340](https://github.com/telerik/kendo-build-tasks/issues/340)) ([e978680](https://github.com/telerik/kendo-build-tasks/commit/e9786808eefbe9b26521116bc57e011bd167d030))
|
|
13
|
+
* systemjs bundles ([fdab155](https://github.com/telerik/kendo-build-tasks/commit/fdab1555388f442de805a90dd6875a24ee13a935))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
* update do TS 4.3, Jest 27 and Angular v12 ([cc7bb34](https://github.com/telerik/kendo-build-tasks/commit/cc7bb34978586a12a14d08822ea03d7c2b6c0daa))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### BREAKING CHANGES
|
|
22
|
+
|
|
23
|
+
* Requires TypeScript 4.3.x
|
|
24
|
+
* Requires Jest 27.x
|
|
25
|
+
* Requires Angular 12.x
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
6
31
|
## [7.9.4](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@7.9.3...@progress/kendo-common-tasks@7.9.4) (2022-03-10)
|
|
7
32
|
|
|
8
33
|
|
package/bin/ci-semantic-release
CHANGED
|
@@ -16,10 +16,10 @@ if [[ "$IS_PULL_REQUEST" == true ]]; then
|
|
|
16
16
|
exit 0;
|
|
17
17
|
fi
|
|
18
18
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
19
|
+
if [[ "$BRANCH" != "master" ]] && [[ "$BRANCH" != "develop" ]]; then
|
|
20
|
+
echo "Skipping release for branches other than \"master\" and \"develop\""
|
|
21
|
+
exit 0;
|
|
22
|
+
fi
|
|
23
23
|
|
|
24
24
|
if [[ "$REPOSITORY" == *-base ]]; then
|
|
25
25
|
echo "Skipping release for base repo"
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-common-tasks",
|
|
3
3
|
"description": "Build infrastructure helpers and gulp tasks for Kendo UI Angular 2 / React components",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "8.0.1-dev.0+c226bd0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/telerik/kendo-build-tasks.git"
|
|
@@ -88,5 +88,5 @@
|
|
|
88
88
|
"publishConfig": {
|
|
89
89
|
"access": "public"
|
|
90
90
|
},
|
|
91
|
-
"gitHead": "
|
|
91
|
+
"gitHead": "c226bd0fb97273c14bd84260132d6afeb46b1bf5"
|
|
92
92
|
}
|