@visulima/health-check 2.0.4 → 2.0.6
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.6](https://github.com/visulima/visulima/compare/@visulima/health-check@2.0.5...@visulima/health-check@2.0.6) (2023-10-30)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* update dependencies in pnpm-lock.yaml ([d3a5626](https://github.com/visulima/visulima/commit/d3a5626d2c751c3e14f592db62b583b28046dcc7))
|
|
7
|
+
|
|
8
|
+
## @visulima/health-check [2.0.5](https://github.com/visulima/visulima/compare/@visulima/health-check@2.0.4...@visulima/health-check@2.0.5) (2023-10-24)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* updated deps ([4eedb60](https://github.com/visulima/visulima/commit/4eedb604c4f78cf331195e2c053dc72e1c6cf9ad))
|
|
14
|
+
|
|
1
15
|
## @visulima/health-check [2.0.4](https://github.com/visulima/visulima/compare/@visulima/health-check@2.0.3...@visulima/health-check@2.0.4) (2023-10-15)
|
|
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.6",
|
|
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",
|
|
@@ -63,12 +63,12 @@
|
|
|
63
63
|
"scripts": {
|
|
64
64
|
"build": "cross-env NODE_ENV=development tsup",
|
|
65
65
|
"build:prod": "cross-env NODE_ENV=production tsup",
|
|
66
|
-
"check:packagejson": "publint --strict",
|
|
67
66
|
"clean": "rimraf node_modules dist .eslintcache",
|
|
68
67
|
"coverage": "vitest run --coverage",
|
|
69
68
|
"dev": "pnpm run build --watch",
|
|
70
69
|
"lint:eslint": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.js",
|
|
71
|
-
"lint:eslint:fix": "
|
|
70
|
+
"lint:eslint:fix": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.js --fix",
|
|
71
|
+
"lint:packagejson": "publint --strict",
|
|
72
72
|
"lint:prettier": "prettier --config=.prettierrc.js --check .",
|
|
73
73
|
"lint:prettier:fix": "prettier --config=.prettierrc.js --write .",
|
|
74
74
|
"lint:types": "tsc --noEmit",
|
|
@@ -86,18 +86,18 @@
|
|
|
86
86
|
"@anolilab/semantic-release-preset": "^8.0.0",
|
|
87
87
|
"@babel/core": "^7.23.2",
|
|
88
88
|
"@rushstack/eslint-plugin-security": "^0.7.1",
|
|
89
|
-
"@types/node": "18.
|
|
89
|
+
"@types/node": "18.18.5",
|
|
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.52.0",
|
|
94
94
|
"eslint-plugin-deprecation": "^2.0.0",
|
|
95
95
|
"eslint-plugin-etc": "^2.0.3",
|
|
96
|
-
"eslint-plugin-import": "npm:eslint-plugin-i@^2.
|
|
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.8",
|
|
99
99
|
"eslint-plugin-vitest-globals": "^1.4.0",
|
|
100
|
-
"next": "^13.4
|
|
100
|
+
"next": "^13.5.4",
|
|
101
101
|
"node-mocks-http": "^1.13.0",
|
|
102
102
|
"prettier": "^3.0.3",
|
|
103
103
|
"rimraf": "^5.0.5",
|
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
"vitest": "^0.34.6"
|
|
109
109
|
},
|
|
110
110
|
"optionalDependencies": {
|
|
111
|
-
"next": "^13.5.
|
|
111
|
+
"next": "^13.5.6"
|
|
112
112
|
},
|
|
113
113
|
"engines": {
|
|
114
114
|
"node": ">=18.* <=20.*"
|