@thzero/library_server 0.18.14 → 0.18.16

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 (2) hide show
  1. package/boot/index.js +1 -1
  2. package/package.json +4 -4
package/boot/index.js CHANGED
@@ -136,7 +136,7 @@ class BootMain {
136
136
  healthChecks: healthCheckOptions,
137
137
 
138
138
  // cleanup options
139
- signals: [ 'SIGINT', 'SIGTERM', 'SIGQUIT', 'SIGKILL' ],
139
+ signals: [ 'SIGINT', 'SIGTERM', 'SIGQUIT' ], // SIGKILL does not work with Linux
140
140
  onSignal: onSignal.bind(this), // [optional] cleanup function, returning a promise (used to be onSigterm)
141
141
  onShutdown: onShutdown.bind(this) // [optional] called right before exiting
142
142
  };
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@thzero/library_server",
3
3
  "type": "module",
4
- "version": "0.18.14",
4
+ "version": "0.18.16",
5
5
  "version_major": 0,
6
6
  "version_minor": 18,
7
- "version_patch": 14,
8
- "version_date": "06/01/2024",
7
+ "version_patch": 16,
8
+ "version_date": "06/28/2024",
9
9
  "description": "An opinionated library of common functionality to bootstrap an API using either Fastify or Koa as the web server.",
10
10
  "author": "thZero",
11
11
  "license": "MIT",
@@ -27,7 +27,7 @@
27
27
  "dependencies": {
28
28
  "@godaddy/terminus": "^4.12.1",
29
29
  "async-mutex": "^0.5.0",
30
- "config": "^3.3.11",
30
+ "config": "^3.3.12",
31
31
  "default-gateway": "^7.2.2",
32
32
  "easy-rbac": "^3.2.0",
33
33
  "ipaddr.js": "^2.2.0"