@visulima/health-check 2.0.7 → 2.0.9
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/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## @visulima/health-check [2.0.9](https://github.com/visulima/visulima/compare/@visulima/health-check@2.0.8...@visulima/health-check@2.0.9) (2023-11-30)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** updated package deps ([b4f4ede](https://github.com/visulima/visulima/commit/b4f4eded7bbded62b341ade0017ab357336f3af2))
|
|
7
|
+
|
|
8
|
+
## @visulima/health-check [2.0.8](https://github.com/visulima/visulima/compare/@visulima/health-check@2.0.7...@visulima/health-check@2.0.8) (2023-11-07)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* fixed the homepage url of the package ([02075ce](https://github.com/visulima/visulima/commit/02075ce997d62c1caf79690b32dd2f931e64bebe))
|
|
14
|
+
|
|
1
15
|
## @visulima/health-check [2.0.7](https://github.com/visulima/visulima/compare/@visulima/health-check@2.0.6...@visulima/health-check@2.0.7) (2023-11-02)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/health-check",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.9",
|
|
4
4
|
"description": "A library built to provide support for defining service health for node services. It allows you to register async health checks for your dependencies and the service itself, provides a health endpoint that exposes their status, and health metrics.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"anolilab",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"http-check",
|
|
16
16
|
"ping-check"
|
|
17
17
|
],
|
|
18
|
-
"homepage": "https://visulima.com/
|
|
18
|
+
"homepage": "https://www.visulima.com/docs/package/health-check",
|
|
19
19
|
"repository": {
|
|
20
20
|
"type": "git",
|
|
21
21
|
"url": "https://github.com/visulima/visulima.git",
|
|
@@ -84,27 +84,27 @@
|
|
|
84
84
|
"@anolilab/eslint-config": "^15.0.2",
|
|
85
85
|
"@anolilab/prettier-config": "^5.0.13",
|
|
86
86
|
"@anolilab/semantic-release-preset": "^8.0.2",
|
|
87
|
-
"@babel/core": "^7.23.
|
|
87
|
+
"@babel/core": "^7.23.3",
|
|
88
88
|
"@rushstack/eslint-plugin-security": "^0.7.1",
|
|
89
89
|
"@types/node": "18.18.8",
|
|
90
90
|
"@vitest/coverage-v8": "^0.34.6",
|
|
91
91
|
"cross-env": "^7.0.3",
|
|
92
92
|
"cross-fetch": "^4.0.0",
|
|
93
|
-
"eslint": "^8.
|
|
93
|
+
"eslint": "^8.54.0",
|
|
94
94
|
"eslint-plugin-deprecation": "^2.0.0",
|
|
95
95
|
"eslint-plugin-etc": "^2.0.3",
|
|
96
96
|
"eslint-plugin-import": "npm:eslint-plugin-i@^2.29.0",
|
|
97
97
|
"eslint-plugin-mdx": "^2.2.0",
|
|
98
|
-
"eslint-plugin-vitest": "^0.3.
|
|
98
|
+
"eslint-plugin-vitest": "^0.3.10",
|
|
99
99
|
"eslint-plugin-vitest-globals": "^1.4.0",
|
|
100
100
|
"next": "^13.5.6",
|
|
101
101
|
"node-mocks-http": "^1.13.0",
|
|
102
|
-
"prettier": "^3.0
|
|
102
|
+
"prettier": "^3.1.0",
|
|
103
103
|
"rimraf": "^5.0.5",
|
|
104
|
-
"semantic-release": "^22.0.
|
|
104
|
+
"semantic-release": "^22.0.8",
|
|
105
105
|
"sort-package-json": "^2.6.0",
|
|
106
|
-
"tsup": "^
|
|
107
|
-
"typescript": "^5.
|
|
106
|
+
"tsup": "^8.0.1",
|
|
107
|
+
"typescript": "^5.3.2",
|
|
108
108
|
"vitest": "^0.34.6"
|
|
109
109
|
},
|
|
110
110
|
"optionalDependencies": {
|