@eik/core 1.3.56 → 1.3.58
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.md +14 -0
- package/lib/utils/healthcheck.js +2 -2
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [1.3.58](https://github.com/eik-lib/core/compare/v1.3.57...v1.3.58) (2024-08-09)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** update dependency @eik/common to v4.0.7 ([8955fc7](https://github.com/eik-lib/core/commit/8955fc7c3ac48ee6a2e3e1f0b2132ec80d2304d0))
|
|
7
|
+
|
|
8
|
+
## [1.3.57](https://github.com/eik-lib/core/compare/v1.3.56...v1.3.57) (2024-08-09)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* make healthcheck logging less verbose by default ([#433](https://github.com/eik-lib/core/issues/433)) ([73a3a39](https://github.com/eik-lib/core/commit/73a3a39b0262da0cd6fdd08043764a5a8331836b))
|
|
14
|
+
|
|
1
15
|
## [1.3.54](https://github.com/eik-lib/core/compare/v1.3.53...v1.3.54) (2024-08-08)
|
|
2
16
|
|
|
3
17
|
|
package/lib/utils/healthcheck.js
CHANGED
|
@@ -74,7 +74,7 @@ const HealthCheck = class HealthCheck {
|
|
|
74
74
|
}
|
|
75
75
|
|
|
76
76
|
async check() {
|
|
77
|
-
this._log.
|
|
77
|
+
this._log.debug(
|
|
78
78
|
`Sink health check started - testing with file ${this._name}`,
|
|
79
79
|
);
|
|
80
80
|
|
|
@@ -120,7 +120,7 @@ const HealthCheck = class HealthCheck {
|
|
|
120
120
|
throw new Error("File exist in sink");
|
|
121
121
|
// eslint-disable-next-line no-unused-vars
|
|
122
122
|
} catch (error) {
|
|
123
|
-
this._log.
|
|
123
|
+
this._log.debug("Sink health check ended successfully. Sink is healthy");
|
|
124
124
|
}
|
|
125
125
|
|
|
126
126
|
return true;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eik/core",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.58",
|
|
4
4
|
"description": "Core server package",
|
|
5
5
|
"main": "lib/main.js",
|
|
6
6
|
"types": "./types/main.d.ts",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"types"
|
|
13
13
|
],
|
|
14
14
|
"scripts": {
|
|
15
|
-
"clean": "rimraf
|
|
15
|
+
"clean": "rimraf .tap node_modules types",
|
|
16
16
|
"lint": "eslint .",
|
|
17
17
|
"lint:fix": "eslint --fix .",
|
|
18
18
|
"test": "tap --disable-coverage --allow-empty-coverage",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"author": "",
|
|
26
26
|
"license": "MIT",
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@eik/common": "4.0.
|
|
28
|
+
"@eik/common": "4.0.7",
|
|
29
29
|
"@eik/sink": "1.2.5",
|
|
30
30
|
"@eik/sink-file-system": "1.0.1",
|
|
31
31
|
"@eik/sink-memory": "1.1.1",
|
|
@@ -35,7 +35,6 @@
|
|
|
35
35
|
"http-errors": "2.0.0",
|
|
36
36
|
"mime": "3.0.0",
|
|
37
37
|
"original-url": "1.2.3",
|
|
38
|
-
"rimraf": "5.0.10",
|
|
39
38
|
"semver": "7.6.3",
|
|
40
39
|
"ssri": "10.0.6",
|
|
41
40
|
"tar": "6.2.1",
|
|
@@ -53,6 +52,7 @@
|
|
|
53
52
|
"node-fetch": "3.3.2",
|
|
54
53
|
"npm-run-all": "4.1.5",
|
|
55
54
|
"prettier": "3.3.3",
|
|
55
|
+
"rimraf": "6.0.1",
|
|
56
56
|
"semantic-release": "24.0.0",
|
|
57
57
|
"tap": "18.8.0",
|
|
58
58
|
"typescript": "5.5.4"
|