Compare commits

..

2 Commits

Author SHA1 Message Date
Raj Nandan Sharma c0edb59884 chore: update version to 3.2.4 and reflect changes in User-Agent and documentation 2025-03-12 23:16:48 +05:30
Raj Nandan Sharma 1e86c429ca fix: install libcap tools for setting capabilities in Dockerfile 2025-03-12 23:00:18 +05:30
4 changed files with 10 additions and 3 deletions
+7
View File
@@ -120,6 +120,13 @@ COPY --chown=node:node --from=builder /app/main.js ./main.js
COPY --chown=node:node --from=builder /app/openapi.json ./openapi.json
COPY --chown=node:node --from=builder /app/openapi.yaml ./openapi.yaml
# Install libcap tools before setting capabilities
RUN if [ -f "/etc/alpine-release" ]; then \
apk add --no-cache libcap; \
else \
apt-get update && apt-get install -y libcap2-bin && rm -rf /var/lib/apt/lists/*; \
fi
# Set capabilities for ping (before changing to non-root user)
RUN if [ -f "/etc/alpine-release" ]; then \
# Alpine path
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "kener",
"version": "3.2.3",
"version": "3.2.4",
"private": false,
"license": "MIT",
"description": "Kener: An open-source Node.js status page application for real-time service monitoring, incident management, and customizable reporting. Simplify service outage tracking, enhance incident communication, and ensure a seamless user experience.",
+1 -1
View File
@@ -13,7 +13,7 @@ class Webhook {
constructor(trigger_meta, method, siteData, monitorData) {
const kenerHeader = {
"Content-Type": "application/json",
"User-Agent": "Kener/3.2.3",
"User-Agent": "Kener/3.2.4",
};
let headers = trigger_meta.headers;
this.trigger_meta = trigger_meta;
+1 -1
View File
@@ -110,7 +110,7 @@
<!-- Document Icon - Replace with your own logo -->
<img src="https://kener.ing/logo.png" class="h-8 w-8" alt="" />
<span class="text-xl font-medium">Kener Documentation</span>
<span class="me-2 rounded border px-2.5 py-0.5 text-xs font-medium"> 3.2.3 </span>
<span class="me-2 rounded border px-2.5 py-0.5 text-xs font-medium"> 3.2.4 </span>
</a>
</div>