From 7a6b5d5ae5a5be05d5afadd336347e007cf0f361 Mon Sep 17 00:00:00 2001 From: Sodiumchloridy <67376832+Sodiumchloridy@users.noreply.github.com> Date: Wed, 19 Mar 2025 18:20:06 +0800 Subject: [PATCH 1/2] build: install curl for healthcheck in Dockerfile --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 74a2e68..f0bee79 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,6 +20,9 @@ LABEL org.opencontainers.image.source=https://github.com/ghoshRitesh12/aniwatch- LABEL org.opencontainers.image.description="Node.js API for obtaining anime information from hianime.to" LABEL org.opencontainers.image.licenses=MIT +# install curl for healthcheck +RUN apk add --no-cache curl + # create a non-privileged user RUN addgroup -S aniwatch && adduser -S zoro -G aniwatch From 23007fe0b7db589e666ba7f60deb24710c8bf65b Mon Sep 17 00:00:00 2001 From: Conventional Changelog Action Date: Thu, 20 Mar 2025 17:32:50 +0000 Subject: [PATCH 2/2] chore(release): v2.11.3 [skip ci] --- CHANGELOG.md | 13 ++++--------- package.json | 2 +- 2 files changed, 5 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1570790..a666c89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## [2.11.3](https://github.com/ghoshRitesh12/aniwatch-api/compare/v2.11.2...v2.11.3) (2025-03-20) + + + ## [2.11.2](https://github.com/ghoshRitesh12/aniwatch-api/compare/v2.11.1...v2.11.2) (2025-03-15) @@ -31,12 +35,3 @@ -# [2.9.0](https://github.com/ghoshRitesh12/aniwatch-api/compare/v2.8.0...v2.9.0) (2024-12-23) - - -### Features - -* **cache:** add Cache-Control middleware and update .env.example ([f1f5db8](https://github.com/ghoshRitesh12/aniwatch-api/commit/f1f5db84f98818af2c047ea375832e5ded5f021a)) - - - diff --git a/package.json b/package.json index 0dbffdc..6d71670 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "aniwatch-api", - "version": "2.11.2", + "version": "2.11.3", "description": "Node.js API for obtaining anime information from hianime.to", "main": "src/server.ts", "type": "module",