gitlab-radiator 3.3.11 → 3.4.1
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 -1
- package/package.json +38 -38
- package/public/client.js +1 -1
- package/public/client.js.LICENSE.txt +9 -12
- package/src/gitlab/pipelines.js +238 -134
package/README.md
CHANGED
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.
|
|
8
|
+
"version": "3.4.1",
|
|
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.19.0",
|
|
42
|
+
"axios": "0.27.2",
|
|
43
43
|
"basic-auth": "2.0.1",
|
|
44
44
|
"compression": "1.7.4",
|
|
45
|
-
"date-fns": "2.
|
|
45
|
+
"date-fns": "2.29.3",
|
|
46
46
|
"esm": "3.2.25",
|
|
47
|
-
"express": "4.
|
|
47
|
+
"express": "4.18.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.5.2"
|
|
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": "
|
|
63
|
-
"@types/react-dom": "
|
|
64
|
-
"@types/webpack-env": "1.
|
|
65
|
-
"@typescript-eslint/eslint-plugin": "5.
|
|
66
|
-
"@typescript-eslint/parser": "5.
|
|
67
|
-
"@babel/eslint-parser": "7.
|
|
68
|
-
"babel-loader": "8.2.
|
|
69
|
-
"chai": "4.3.
|
|
70
|
-
"css-loader": "6.
|
|
71
|
-
"eslint": "8.
|
|
72
|
-
"eslint-plugin-mocha": "10.0
|
|
73
|
-
"eslint-plugin-react": "7.
|
|
74
|
-
"less": "4.1.
|
|
75
|
-
"less-loader": "
|
|
76
|
-
"mocha": "
|
|
54
|
+
"@babel/cli": "7.18.10",
|
|
55
|
+
"@babel/core": "7.19.1",
|
|
56
|
+
"@babel/node": "7.19.1",
|
|
57
|
+
"@babel/plugin-transform-runtime": "7.19.1",
|
|
58
|
+
"@babel/preset-env": "7.19.1",
|
|
59
|
+
"@babel/preset-react": "7.18.6",
|
|
60
|
+
"@babel/register": "7.18.9",
|
|
61
|
+
"@types/lodash": "4.14.185",
|
|
62
|
+
"@types/react": "18.0.20",
|
|
63
|
+
"@types/react-dom": "18.0.6",
|
|
64
|
+
"@types/webpack-env": "1.18.0",
|
|
65
|
+
"@typescript-eslint/eslint-plugin": "5.38.0",
|
|
66
|
+
"@typescript-eslint/parser": "5.38.0",
|
|
67
|
+
"@babel/eslint-parser": "7.19.1",
|
|
68
|
+
"babel-loader": "8.2.5",
|
|
69
|
+
"chai": "4.3.6",
|
|
70
|
+
"css-loader": "6.7.1",
|
|
71
|
+
"eslint": "8.23.1",
|
|
72
|
+
"eslint-plugin-mocha": "10.1.0",
|
|
73
|
+
"eslint-plugin-react": "7.31.8",
|
|
74
|
+
"less": "4.1.3",
|
|
75
|
+
"less-loader": "11.0.0",
|
|
76
|
+
"mocha": "10.0.0",
|
|
77
77
|
"normalize.css": "8.0.1",
|
|
78
|
-
"react": "
|
|
79
|
-
"react-dom": "
|
|
80
|
-
"sinon": "
|
|
78
|
+
"react": "18.2.0",
|
|
79
|
+
"react-dom": "18.2.0",
|
|
80
|
+
"sinon": "14.0.0",
|
|
81
81
|
"style-loader": "3.3.1",
|
|
82
|
-
"ts-loader": "9.
|
|
83
|
-
"typescript": "4.
|
|
84
|
-
"webpack": "5.
|
|
85
|
-
"webpack-cli": "4.
|
|
86
|
-
"webpack-dev-middleware": "5.3.
|
|
87
|
-
"webpack-hot-middleware": "2.25.
|
|
82
|
+
"ts-loader": "9.4.0",
|
|
83
|
+
"typescript": "4.8.3",
|
|
84
|
+
"webpack": "5.74.0",
|
|
85
|
+
"webpack-cli": "4.10.0",
|
|
86
|
+
"webpack-dev-middleware": "5.3.3",
|
|
87
|
+
"webpack-hot-middleware": "2.25.2",
|
|
88
88
|
"webpack-merge": "5.8.0"
|
|
89
89
|
},
|
|
90
90
|
"browserslist": [
|