k2hr3-api 1.0.39 → 1.0.41

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.
Files changed (3) hide show
  1. package/ChangeLog +12 -0
  2. package/bin/run.sh +3 -2
  3. package/package.json +3 -3
package/ChangeLog CHANGED
@@ -1,3 +1,15 @@
1
+ k2hr3-api (1.0.41) unstable; urgency=low
2
+
3
+ * Changed the PID file name to avoid collisions - #133
4
+
5
+ -- Takeshi Nakatani <ggtakec@gmail.com> Fri, 28 Feb 2025 19:44:20 +0900
6
+
7
+ k2hr3-api (1.0.40) unstable; urgency=low
8
+
9
+ * Fixed the options as the npm audit issue was fixed - #131
10
+
11
+ -- Takeshi Nakatani <ggtakec@gmail.com> Thu, 20 Feb 2025 09:28:41 +0900
12
+
1
13
  k2hr3-api (1.0.39) unstable; urgency=low
2
14
 
3
15
  * Changed publish NodeJS versions to v22 and Fixed scripts, etc - #129
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
- MAINPROC_PID_BASENAME="${PRGNAME}.pid"
40
- WATCHPROC_PID_BASENAME="${PRGNAME}-watch.pid"
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,6 +1,6 @@
1
1
  {
2
2
  "name": "k2hr3-api",
3
- "version": "1.0.39",
3
+ "version": "1.0.41",
4
4
  "dependencies": {
5
5
  "@kubernetes/client-node": "^1.0.0",
6
6
  "body-parser": "^1.20.3",
@@ -9,7 +9,7 @@
9
9
  "dateformat": "^4.6.3",
10
10
  "debug": "~4.4.0",
11
11
  "express": "^4.21.2",
12
- "jose": "^5.9.6",
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.20.1",
33
+ "eslint": "^9.21.0",
34
34
  "mocha": "^11.1.0",
35
35
  "nyc": "^17.1.0"
36
36
  },