@cybermem/dashboard 0.14.4 → 0.14.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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # @cybermem/dashboard
2
2
 
3
+ ## 0.14.6
4
+
5
+ ### Patch Changes
6
+
7
+ - Automated release for patch version bump.
8
+
9
+ ## 0.14.5
10
+
11
+ ### Patch Changes
12
+
13
+ - Automated release for patch version bump.
14
+
3
15
  ## 0.14.4
4
16
 
5
17
  ### Patch Changes
package/Dockerfile CHANGED
@@ -1,5 +1,5 @@
1
1
  # Base stage for both dev and prod
2
- FROM node:20-alpine AS base
2
+ FROM node:24-alpine AS base
3
3
  WORKDIR /app
4
4
 
5
5
  # Use corepack to get the pnpm version from the lockfile and speed up installs via cache
@@ -27,13 +27,13 @@ RUN --mount=type=cache,target=/root/.pnpm-store \
27
27
  pnpm build
28
28
 
29
29
  # Native stage for sqlite3 bindings and wrapper
30
- FROM node:20-alpine AS native-builder
30
+ FROM node:24-alpine AS native-builder
31
31
  RUN apk update && apk add --no-cache python3 python3-dev make g++
32
32
  WORKDIR /native
33
33
  RUN npm init -y && npm install sqlite3@5.1.7 sqlite@5.1.1
34
34
 
35
35
  # Production stage
36
- FROM node:20-alpine AS production
36
+ FROM node:24-alpine AS production
37
37
  RUN apk add --no-cache libc6-compat
38
38
  WORKDIR /app
39
39
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cybermem/dashboard",
3
- "version": "0.14.4",
3
+ "version": "0.14.6",
4
4
  "description": "CyberMem Monitoring Dashboard",
5
5
  "homepage": "https://cybermem.dev",
6
6
  "repository": {