@visulima/health-check 4.0.0-alpha.7 → 4.0.0-alpha.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/package.json +2 -4
package/CHANGELOG.md CHANGED
@@ -1,3 +1,28 @@
1
+ ## @visulima/health-check [4.0.0-alpha.9](https://github.com/visulima/visulima/compare/@visulima/health-check@4.0.0-alpha.8...@visulima/health-check@4.0.0-alpha.9) (2026-04-22)
2
+
3
+ ### Bug Fixes
4
+
5
+ * Remove JSR configuration generation script and generated jsr.json files ([#616](https://github.com/visulima/visulima/issues/616)) ([533744b](https://github.com/visulima/visulima/commit/533744b103b74896941db5b727173e617a27a63b))
6
+
7
+ ### Miscellaneous Chores
8
+
9
+ * bump engines.node to ^22.14.0 || >=24.10.0 ([c3d0931](https://github.com/visulima/visulima/commit/c3d0931d1504e4f21ebf50ea680cfa7ce4ba15ce))
10
+ * fixed jsr.json ([5d85e51](https://github.com/visulima/visulima/commit/5d85e5179de38e284ec433b14d77c71a1619c8d6))
11
+
12
+ ## @visulima/health-check [4.0.0-alpha.8](https://github.com/visulima/visulima/compare/@visulima/health-check@4.0.0-alpha.7...@visulima/health-check@4.0.0-alpha.8) (2026-04-15)
13
+
14
+ ### Bug Fixes
15
+
16
+ * **api:** resolve eslint and type-safety issues across api packages ([3601491](https://github.com/visulima/visulima/commit/3601491261de56b5cfad87c97daafd458e4ee3b6))
17
+ * **health-check:** add node types for process/http/assert globals ([39f503f](https://github.com/visulima/visulima/commit/39f503fdce923a892d015552b377f0bf59f7468c))
18
+
19
+ ### Miscellaneous Chores
20
+
21
+ * **api:** remove empty dependency objects from package.json ([f6bfc85](https://github.com/visulima/visulima/commit/f6bfc85c48c973ff8ea0a7db5951794ae0ea3efb))
22
+ * **health-check:** add tsconfig.eslint.json for type-aware linting ([be743c8](https://github.com/visulima/visulima/commit/be743c8682f5ff1fc56dfda2856d9a434cd52dd2))
23
+ * **health-check:** apply prettier formatting ([2069a83](https://github.com/visulima/visulima/commit/2069a8375ff28d692045381abdcc6454a1f60a27))
24
+ * **health-check:** migrate .prettierrc.cjs to prettier.config.js ([c593760](https://github.com/visulima/visulima/commit/c5937606ae0226d58c114aad77261c266a720995))
25
+
1
26
  ## @visulima/health-check [4.0.0-alpha.7](https://github.com/visulima/visulima/compare/@visulima/health-check@4.0.0-alpha.6...@visulima/health-check@4.0.0-alpha.7) (2026-03-26)
2
27
 
3
28
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visulima/health-check",
3
- "version": "4.0.0-alpha.7",
3
+ "version": "4.0.0-alpha.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",
@@ -56,10 +56,8 @@
56
56
  "http-status-codes": "^2.3.0",
57
57
  "pingman": "^2.1.0"
58
58
  },
59
- "peerDependencies": {},
60
- "optionalDependencies": {},
61
59
  "engines": {
62
- "node": ">=22.13 <=25.x"
60
+ "node": "^22.14.0 || >=24.10.0"
63
61
  },
64
62
  "os": [
65
63
  "darwin",