k2hr3-api 1.0.40 → 1.0.42
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 +12 -0
- package/bin/run.sh +3 -2
- package/package.json +4 -4
package/ChangeLog
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
k2hr3-api (1.0.42) unstable; urgency=low
|
|
2
|
+
|
|
3
|
+
* Updated the version of the dependent packages - #135
|
|
4
|
+
|
|
5
|
+
-- Takeshi Nakatani <ggtakec@gmail.com> Thu, 27 Mar 2025 10:34:44 +0900
|
|
6
|
+
|
|
7
|
+
k2hr3-api (1.0.41) unstable; urgency=low
|
|
8
|
+
|
|
9
|
+
* Changed the PID file name to avoid collisions - #133
|
|
10
|
+
|
|
11
|
+
-- Takeshi Nakatani <ggtakec@gmail.com> Fri, 28 Feb 2025 19:44:20 +0900
|
|
12
|
+
|
|
1
13
|
k2hr3-api (1.0.40) unstable; urgency=low
|
|
2
14
|
|
|
3
15
|
* Fixed the options as the npm audit issue was fixed - #131
|
package/bin/run.sh
CHANGED
|
@@ -36,8 +36,9 @@ LOCAL_HOSTNAME="$(hostname | tr -d '\n')"
|
|
|
36
36
|
PID_FILE_BASEDIR="/var/run/antpickax"
|
|
37
37
|
PID_FILE_TMPDIR="/tmp"
|
|
38
38
|
|
|
39
|
-
|
|
40
|
-
|
|
39
|
+
PRGNAME_PREFIX=$(echo "${PRGNAME}" | sed -e 's#\.sh.*$##g')
|
|
40
|
+
MAINPROC_PID_BASENAME="k2hr3pi-${PRGNAME_PREFIX}.pid"
|
|
41
|
+
WATCHPROC_PID_BASENAME="k2hr3pi-${PRGNAME_PREFIX}-watch.pid"
|
|
41
42
|
|
|
42
43
|
TARGET_PROGRAM=""
|
|
43
44
|
MAIN_PROGRAM="bin/www"
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "k2hr3-api",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.42",
|
|
4
4
|
"dependencies": {
|
|
5
|
-
"@kubernetes/client-node": "^1.
|
|
5
|
+
"@kubernetes/client-node": "^1.1.0",
|
|
6
6
|
"body-parser": "^1.20.3",
|
|
7
7
|
"config": "^3.3.12",
|
|
8
8
|
"cookie-parser": "~1.4.7",
|
|
9
9
|
"dateformat": "^4.6.3",
|
|
10
10
|
"debug": "~4.4.0",
|
|
11
11
|
"express": "^4.21.2",
|
|
12
|
-
"jose": "^5.
|
|
12
|
+
"jose": "^5.10.0",
|
|
13
13
|
"k2hdkc": "^1.0.13",
|
|
14
14
|
"morgan": "~1.10.0",
|
|
15
15
|
"rotating-file-stream": "^3.2.6"
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"chai": "^4.5.0",
|
|
32
32
|
"chai-http": "^4.4.0",
|
|
33
|
-
"eslint": "^9.
|
|
33
|
+
"eslint": "^9.23.0",
|
|
34
34
|
"mocha": "^11.1.0",
|
|
35
35
|
"nyc": "^17.1.0"
|
|
36
36
|
},
|