@visulima/health-check 4.0.0-alpha.1 → 4.0.0-alpha.3
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 +16 -0
- package/README.md +29 -19
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
## @visulima/health-check [4.0.0-alpha.3](https://github.com/visulima/visulima/compare/@visulima/health-check@4.0.0-alpha.2...@visulima/health-check@4.0.0-alpha.3) (2025-12-11)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* update package OG images across multiple packages ([f08e4dd](https://github.com/visulima/visulima/commit/f08e4dd2b105ccb29c8412020a9c2be36d6c1e9e))
|
|
6
|
+
|
|
7
|
+
## @visulima/health-check [4.0.0-alpha.2](https://github.com/visulima/visulima/compare/@visulima/health-check@4.0.0-alpha.1...@visulima/health-check@4.0.0-alpha.2) (2025-12-06)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* add new package image, fixed readme rendering on npm, fixed building of packages ([b790ba2](https://github.com/visulima/visulima/commit/b790ba253ea07fef83528fd822a678facf021b5f))
|
|
12
|
+
|
|
13
|
+
### Miscellaneous Chores
|
|
14
|
+
|
|
15
|
+
* update @anolilab/semantic-release-pnpm and @anolilab/semantic-release-preset to versions 3.2.2 and 12.1.2 across multiple package.json files for improved compatibility ([3921626](https://github.com/visulima/visulima/commit/3921626141fe5da398749bf0ba675f1596f18afb))
|
|
16
|
+
|
|
1
17
|
## @visulima/health-check [4.0.0-alpha.1](https://github.com/visulima/visulima/compare/@visulima/health-check@3.0.5...@visulima/health-check@4.0.0-alpha.1) (2025-12-04)
|
|
2
18
|
|
|
3
19
|
### ⚠ BREAKING CHANGES
|
package/README.md
CHANGED
|
@@ -1,23 +1,24 @@
|
|
|
1
|
-
|
|
2
|
-
<h3>Visulima health-check</h3>
|
|
3
|
-
<p>
|
|
4
|
-
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.
|
|
1
|
+
<!-- START_PACKAGE_OG_IMAGE_PLACEHOLDER -->
|
|
5
2
|
|
|
6
|
-
|
|
3
|
+
<a href="https://www.anolilab.com/open-source" align="center">
|
|
7
4
|
|
|
8
|
-
|
|
9
|
-
[node:http](https://nodejs.org/api/http.html),
|
|
10
|
-
[cacheable-lookup](https://github.com/szmarczak/cacheable-lookup),
|
|
11
|
-
[node:process.env](https://nodejs.org/docs/latest/api/process.html#process_process_env)
|
|
5
|
+
<img src="__assets__/package-og.svg" alt="health-check" />
|
|
12
6
|
|
|
13
|
-
|
|
14
|
-
|
|
7
|
+
</a>
|
|
8
|
+
|
|
9
|
+
<h3 align="center">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.</h3>
|
|
10
|
+
|
|
11
|
+
<!-- END_PACKAGE_OG_IMAGE_PLACEHOLDER -->
|
|
15
12
|
|
|
16
13
|
<br />
|
|
17
14
|
|
|
18
15
|
<div align="center">
|
|
19
16
|
|
|
20
|
-
[![typescript-image]
|
|
17
|
+
[![typescript-image][typescript-badge]][typescript-url]
|
|
18
|
+
[![mit licence][license-badge]][license]
|
|
19
|
+
[![npm downloads][npm-downloads-badge]][npm-downloads]
|
|
20
|
+
[![Chat][chat-badge]][chat]
|
|
21
|
+
[![PRs Welcome][prs-welcome-badge]][prs-welcome]
|
|
21
22
|
|
|
22
23
|
</div>
|
|
23
24
|
|
|
@@ -192,14 +193,23 @@ If you would like to help take a look at the [list of issues](https://github.com
|
|
|
192
193
|
- [Daniel Bannert](https://github.com/prisis)
|
|
193
194
|
- [All Contributors](https://github.com/visulima/visulima/graphs/contributors)
|
|
194
195
|
|
|
196
|
+
## Made with ❤️ at Anolilab
|
|
197
|
+
|
|
198
|
+
This is an open source project and will always remain free to use. If you think it's cool, please star it 🌟. [Anolilab](https://www.anolilab.com/open-source) is a Development and AI Studio. Contact us at [hello@anolilab.com](mailto:hello@anolilab.com) if you need any help with these technologies or just want to say hi!
|
|
199
|
+
|
|
195
200
|
## License
|
|
196
201
|
|
|
197
|
-
The visulima health-check is open-sourced software licensed under the [MIT][license
|
|
202
|
+
The visulima health-check is open-sourced software licensed under the [MIT][license]
|
|
198
203
|
|
|
199
|
-
|
|
204
|
+
<!-- badges -->
|
|
200
205
|
|
|
201
|
-
[
|
|
202
|
-
[license
|
|
203
|
-
[
|
|
204
|
-
[npm-
|
|
205
|
-
[
|
|
206
|
+
[license-badge]: https://img.shields.io/npm/l/@visulima/health-check?style=for-the-badge
|
|
207
|
+
[license]: https://github.com/visulima/visulima/blob/main/LICENSE
|
|
208
|
+
[npm-downloads-badge]: https://img.shields.io/npm/dm/@visulima/health-check?style=for-the-badge
|
|
209
|
+
[npm-downloads]: https://www.npmjs.com/package/@visulima/health-check
|
|
210
|
+
[prs-welcome-badge]: https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=for-the-badge
|
|
211
|
+
[prs-welcome]: https://github.com/visulima/visulima/blob/main/.github/CONTRIBUTING.md
|
|
212
|
+
[chat-badge]: https://img.shields.io/discord/932323359193186354.svg?style=for-the-badge
|
|
213
|
+
[chat]: https://discord.gg/TtFJY8xkFK
|
|
214
|
+
[typescript-badge]: https://img.shields.io/badge/Typescript-294E80.svg?style=for-the-badge&logo=typescript
|
|
215
|
+
[typescript-url]: https://www.typescriptlang.org/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/health-check",
|
|
3
|
-
"version": "4.0.0-alpha.
|
|
3
|
+
"version": "4.0.0-alpha.3",
|
|
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",
|