@cybermem/mcp 0.14.4 → 0.14.5

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,11 @@
1
1
  # @cybermem/mcp
2
2
 
3
+ ## 0.14.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Automated release for patch version bump.
8
+
3
9
  ## 0.14.4
4
10
 
5
11
  ### Patch Changes
package/Dockerfile CHANGED
@@ -1,5 +1,5 @@
1
1
  # Base stage
2
- FROM node:20-slim AS base
2
+ FROM node:24-slim AS base
3
3
  WORKDIR /app
4
4
  RUN apt-get update && apt-get install -y --no-install-recommends python3 make g++ && rm -rf /var/lib/apt/lists/*
5
5
 
@@ -12,13 +12,13 @@ RUN npm run build
12
12
  RUN npm prune --production
13
13
 
14
14
  # Native stage for sqlite3 bindings
15
- FROM node:20-slim AS native-builder
15
+ FROM node:24-slim AS native-builder
16
16
  RUN apt-get update && apt-get install -y --no-install-recommends python3 make g++ && rm -rf /var/lib/apt/lists/*
17
17
  WORKDIR /native
18
18
  RUN npm init -y && npm install sqlite3@5.1.7 sqlite@5.1.1
19
19
 
20
20
  # Runtime stage
21
- FROM node:20-slim AS runner
21
+ FROM node:24-slim AS runner
22
22
  RUN apt-get update && apt-get install -y --no-install-recommends curl libc6 && rm -rf /var/lib/apt/lists/*
23
23
  WORKDIR /app
24
24
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cybermem/mcp",
3
- "version": "0.14.4",
3
+ "version": "0.14.5",
4
4
  "description": "CyberMem MCP Server - AI Memory with openmemory-js SDK",
5
5
  "main": "dist/index.js",
6
6
  "bin": {