@progress/kendo-common-tasks 7.7.2 → 7.8.1-dev.3
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 +17 -0
- package/bin/ci-commit-snapshots +3 -3
- package/bin/ci-semantic-release +4 -4
- package/bin/ci-utils +2 -2
- package/docs-layout.hbs +3 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,23 @@
|
|
|
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
|
+
# [7.8.0](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@7.7.2...@progress/kendo-common-tasks@7.8.0) (2021-11-09)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* do not execute curl output in wait_url ([cbd2fac](https://github.com/telerik/kendo-build-tasks/commit/cbd2facc4a70f5f49c46807f2aa2d3ba23534e94))
|
|
12
|
+
* pin webpack-dev-server version ([#313](https://github.com/telerik/kendo-build-tasks/issues/313)) ([f518a2e](https://github.com/telerik/kendo-build-tasks/commit/f518a2ea5058b769188cc8da85e0e2864fc26e2c))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **kendo-common-tasks:** add SG alert ([#312](https://github.com/telerik/kendo-build-tasks/issues/312)) ([141091e](https://github.com/telerik/kendo-build-tasks/commit/141091e9fb63cb4a8c10f366786b447a28978583))
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
6
23
|
## [7.7.2](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@7.7.1...@progress/kendo-common-tasks@7.7.2) (2021-10-08)
|
|
7
24
|
|
|
8
25
|
|
package/bin/ci-commit-snapshots
CHANGED
|
@@ -14,7 +14,7 @@ if [[ $BRANCH == '' ]]; then
|
|
|
14
14
|
fi
|
|
15
15
|
|
|
16
16
|
COMMIT_MESSAGE=$(git --no-pager log --format=%s -n 1)
|
|
17
|
-
if [[ "$COMMIT_MESSAGE"
|
|
17
|
+
if [[ "$COMMIT_MESSAGE" == *"[skip-visual]"* ]]; then
|
|
18
18
|
echo "Skipping visual tests for builds triggered by snapshots update"
|
|
19
19
|
exit 0
|
|
20
20
|
fi
|
|
@@ -38,7 +38,7 @@ HAS_UNTRACKED=0
|
|
|
38
38
|
git diff --exit-code --quiet -- ./e2e_visual/snapshots/ || HAS_CHANGES=1
|
|
39
39
|
[[ $(git ls-files --others --exclude-standard ./e2e_visual/snapshots/) ]] && HAS_UNTRACKED=1
|
|
40
40
|
|
|
41
|
-
if [ $HAS_CHANGES -eq 0
|
|
41
|
+
if [ $HAS_CHANGES -eq 0 ] && [ $HAS_UNTRACKED -eq 0 ]; then
|
|
42
42
|
echo -e "${BOLD} Visual tests have detected no changes. Skipping commit. ${NC}"
|
|
43
43
|
exit 0
|
|
44
44
|
else
|
|
@@ -55,7 +55,7 @@ function set_status {
|
|
|
55
55
|
PAYLOAD="{\"state\": \"success\", \"context\": \"$CHECK_NAME\"}"
|
|
56
56
|
|
|
57
57
|
echo "Marking '$CHECK_NAME' as successful..."
|
|
58
|
-
curl -s -X POST -u $CREDENTIALS -d "$PAYLOAD" "$STATUS_URL"
|
|
58
|
+
curl -s -X POST -u "$CREDENTIALS" -d "$PAYLOAD" "$STATUS_URL"
|
|
59
59
|
}
|
|
60
60
|
|
|
61
61
|
# TODO: Remove 'then' after migrating from Shippable
|
package/bin/ci-semantic-release
CHANGED
|
@@ -26,11 +26,11 @@ if [[ "$REPOSITORY" == *-base ]]; then
|
|
|
26
26
|
exit 0;
|
|
27
27
|
fi
|
|
28
28
|
|
|
29
|
-
THIS_YEAR
|
|
29
|
+
THIS_YEAR=$(date +%Y)
|
|
30
30
|
REPLACE_YEAR="s/\$YEAR/$THIS_YEAR/g"
|
|
31
|
-
sed -i $REPLACE_YEAR LICENSE.md
|
|
32
|
-
sed -i $REPLACE_YEAR NOTICE.txt
|
|
33
|
-
sed -i $REPLACE_YEAR README.md
|
|
31
|
+
sed -i "$REPLACE_YEAR" LICENSE.md
|
|
32
|
+
sed -i "$REPLACE_YEAR" NOTICE.txt
|
|
33
|
+
sed -i "$REPLACE_YEAR" README.md
|
|
34
34
|
|
|
35
35
|
ERROR="$(npm run semantic-release 2>&1)"
|
|
36
36
|
EXIT_CODE=$?
|
package/bin/ci-utils
CHANGED
|
@@ -10,14 +10,14 @@ function wait_url {
|
|
|
10
10
|
|
|
11
11
|
sleep $DELAY
|
|
12
12
|
|
|
13
|
-
until
|
|
13
|
+
until curl --output /dev/null --silent --head --fail "$URL"; do
|
|
14
14
|
if [[ $ELAPSED -eq $TIMEOUT ]]; then
|
|
15
15
|
echo "Timeout on $URL"
|
|
16
16
|
exit 1
|
|
17
17
|
fi
|
|
18
18
|
|
|
19
19
|
sleep 1
|
|
20
|
-
ELAPSED=$
|
|
20
|
+
ELAPSED=$((ELAPSED+1))
|
|
21
21
|
done
|
|
22
22
|
|
|
23
23
|
# Done waiting
|
package/docs-layout.hbs
CHANGED
|
@@ -40,6 +40,9 @@
|
|
|
40
40
|
</head>
|
|
41
41
|
<body>
|
|
42
42
|
<div class="container">
|
|
43
|
+
<div class="mt-3 alert alert-info" role="alert" style="margin-top: 20px;">
|
|
44
|
+
<strong>Internal Note</strong>: Need help with the docs? Go to the <a target="_blank" href="https://testdocs.telerik.com/style-guide/introduction" class="alert-link">Style Guide</a>.
|
|
45
|
+
</div>
|
|
43
46
|
<h1>{{title}}</h1>
|
|
44
47
|
|
|
45
48
|
{{{ content }}}
|
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": "7.
|
|
4
|
+
"version": "7.8.1-dev.3+d68dd96",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/telerik/kendo-build-tasks.git"
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"express": "^4.13.4",
|
|
33
33
|
"express-urlrewrite": "^1.2.0",
|
|
34
34
|
"extract-text-webpack-plugin": "next",
|
|
35
|
-
"file-loader": "^
|
|
35
|
+
"file-loader": "^1.1.6",
|
|
36
36
|
"glob": "^6.0.4",
|
|
37
37
|
"graphlib": "2.1.1",
|
|
38
38
|
"gulp": "^4.0.0",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"url-loader": "^0.5.7",
|
|
64
64
|
"vinyl-named": "^1.1.0",
|
|
65
65
|
"webpack": "4.1.0",
|
|
66
|
-
"webpack-dev-server": "
|
|
66
|
+
"webpack-dev-server": "3.11.2",
|
|
67
67
|
"webpack-sources": "^1.3.0",
|
|
68
68
|
"webpack-stream": "5.0.0",
|
|
69
69
|
"webpack-system-register": "^1.6.0",
|
|
@@ -90,5 +90,5 @@
|
|
|
90
90
|
"publishConfig": {
|
|
91
91
|
"access": "public"
|
|
92
92
|
},
|
|
93
|
-
"gitHead": "
|
|
93
|
+
"gitHead": "d68dd96e7406dd5eb4cd1684da023f548e414591"
|
|
94
94
|
}
|