gitlab-radiator 3.3.6 → 3.3.10
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/README.md +1 -7
- package/package.json +34 -34
- package/public/client.js +1 -1
- package/src/app.js +6 -8
- package/src/auth.js +2 -4
- package/src/config.js +2 -2
- package/src/gitlab/index.js +8 -14
- package/src/gitlab/pipelines.js +19 -41
- package/src/gitlab/projects.js +6 -9
- package/src/gitlab/runners.js +5 -9
package/README.md
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
|
|
1
2
|
# The missing GitLab build radiator view
|
|
2
3
|
|
|
3
4
|
## Introduction
|
|
@@ -122,13 +123,6 @@ colors:
|
|
|
122
123
|
|
|
123
124
|
See [releases](https://github.com/heikkipora/gitlab-radiator/releases).
|
|
124
125
|
|
|
125
|
-
## Breaking changes from 2.x to 3.0
|
|
126
|
-
|
|
127
|
-
- Configuration file syntax has changed so that you now can define multiple gitlab instances to poll from.
|
|
128
|
-
E.g. polling from https://gitlab.com and from your own hosted https://gitlab.yourdomain.com instance of gitlab.
|
|
129
|
-
Unfortunately all existing configurations for single gitlab polling have to be adjusted slightly.
|
|
130
|
-
- Also config param `order` has moved from `projects.order` to global `projectsOrder`, as the order has effect on all projects and not per gitlab config.
|
|
131
|
-
|
|
132
126
|
## Contributing
|
|
133
127
|
|
|
134
128
|
Pull requests are welcome. Kindly check that your code passes ESLint checks by running `npm run eslint` first.
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"email": "heikki.pora@gmail.com"
|
|
6
6
|
},
|
|
7
7
|
"description": "The missing GitLab build radiator view",
|
|
8
|
-
"version": "3.3.
|
|
8
|
+
"version": "3.3.10",
|
|
9
9
|
"license": "MIT",
|
|
10
10
|
"bin": {
|
|
11
11
|
"gitlab-radiator": "bin/gitlab-radiator"
|
|
@@ -38,53 +38,53 @@
|
|
|
38
38
|
}
|
|
39
39
|
],
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@babel/runtime": "7.
|
|
42
|
-
"axios": "0.
|
|
41
|
+
"@babel/runtime": "7.16.3",
|
|
42
|
+
"axios": "0.24.0",
|
|
43
43
|
"basic-auth": "2.0.1",
|
|
44
44
|
"compression": "1.7.4",
|
|
45
|
-
"date-fns": "2.
|
|
45
|
+
"date-fns": "2.27.0",
|
|
46
46
|
"esm": "3.2.25",
|
|
47
47
|
"express": "4.17.1",
|
|
48
48
|
"js-yaml": "4.1.0",
|
|
49
49
|
"less-middleware": "3.1.0",
|
|
50
50
|
"lodash": "4.17.21",
|
|
51
|
-
"socket.io": "4.
|
|
51
|
+
"socket.io": "4.4.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@babel/cli": "7.
|
|
55
|
-
"@babel/core": "7.
|
|
56
|
-
"@babel/node": "7.
|
|
57
|
-
"@babel/plugin-transform-runtime": "7.
|
|
58
|
-
"@babel/preset-env": "7.
|
|
59
|
-
"@babel/preset-react": "7.
|
|
60
|
-
"@babel/register": "7.
|
|
61
|
-
"@types/lodash": "4.14.
|
|
62
|
-
"@types/react": "17.0.
|
|
63
|
-
"@types/react-dom": "17.0.
|
|
64
|
-
"@types/webpack-env": "1.16.
|
|
65
|
-
"@typescript-eslint/eslint-plugin": "
|
|
66
|
-
"@typescript-eslint/parser": "
|
|
67
|
-
"babel-
|
|
68
|
-
"babel-loader": "8.2.
|
|
54
|
+
"@babel/cli": "7.16.0",
|
|
55
|
+
"@babel/core": "7.16.0",
|
|
56
|
+
"@babel/node": "7.16.0",
|
|
57
|
+
"@babel/plugin-transform-runtime": "7.16.4",
|
|
58
|
+
"@babel/preset-env": "7.16.4",
|
|
59
|
+
"@babel/preset-react": "7.16.0",
|
|
60
|
+
"@babel/register": "7.16.0",
|
|
61
|
+
"@types/lodash": "4.14.177",
|
|
62
|
+
"@types/react": "17.0.37",
|
|
63
|
+
"@types/react-dom": "17.0.11",
|
|
64
|
+
"@types/webpack-env": "1.16.3",
|
|
65
|
+
"@typescript-eslint/eslint-plugin": "5.5.0",
|
|
66
|
+
"@typescript-eslint/parser": "5.5.0",
|
|
67
|
+
"@babel/eslint-parser": "7.16.3",
|
|
68
|
+
"babel-loader": "8.2.3",
|
|
69
69
|
"chai": "4.3.4",
|
|
70
|
-
"css-loader": "6.
|
|
71
|
-
"eslint": "
|
|
70
|
+
"css-loader": "6.5.1",
|
|
71
|
+
"eslint": "8.3.0",
|
|
72
72
|
"eslint-plugin-mocha": "9.0.0",
|
|
73
|
-
"eslint-plugin-react": "7.
|
|
74
|
-
"less": "4.1.
|
|
75
|
-
"less-loader": "10.0
|
|
76
|
-
"mocha": "9.
|
|
73
|
+
"eslint-plugin-react": "7.27.1",
|
|
74
|
+
"less": "4.1.2",
|
|
75
|
+
"less-loader": "10.2.0",
|
|
76
|
+
"mocha": "9.1.3",
|
|
77
77
|
"normalize.css": "8.0.1",
|
|
78
78
|
"react": "17.0.2",
|
|
79
79
|
"react-dom": "17.0.2",
|
|
80
|
-
"sinon": "
|
|
81
|
-
"style-loader": "3.
|
|
82
|
-
"ts-loader": "9.2.
|
|
83
|
-
"typescript": "4.
|
|
84
|
-
"webpack": "5.
|
|
85
|
-
"webpack-cli": "4.
|
|
86
|
-
"webpack-dev-middleware": "5.
|
|
87
|
-
"webpack-hot-middleware": "2.25.
|
|
80
|
+
"sinon": "12.0.1",
|
|
81
|
+
"style-loader": "3.3.1",
|
|
82
|
+
"ts-loader": "9.2.6",
|
|
83
|
+
"typescript": "4.5.2",
|
|
84
|
+
"webpack": "5.64.4",
|
|
85
|
+
"webpack-cli": "4.9.1",
|
|
86
|
+
"webpack-dev-middleware": "5.2.2",
|
|
87
|
+
"webpack-hot-middleware": "2.25.1",
|
|
88
88
|
"webpack-merge": "5.8.0"
|
|
89
89
|
},
|
|
90
90
|
"browserslist": [
|