Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ services:
- commitrack

cache:
image: docker.io/redis:8.2.1-bookworm@sha256:5fa2edb1e408fa8235e6db8fab01d1afaaae96c9403ba67b70feceb8661e8621
image: docker.io/redis:8.2.2-bookworm@sha256:f0957bcaa75fd58a9a1847c1f07caf370579196259d69ac07f2e27b5b389b021
container_name: commitrack-cache
ports:
- "6379:6379"
Expand Down
257 changes: 130 additions & 127 deletions package-lock.json

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,16 @@
},
"devDependencies": {
"@8hobbies/eslint-conf-baseline": "6.0.0",
"@prisma/client": "6.16.2",
"@prisma/client": "6.16.3",
"@types/eslint": "9.6.1",
"@types/node": "22.18.6",
"eslint": "9.36.0",
"@types/node": "22.18.8",
"eslint": "9.37.0",
"globals": "16.4.0",
"prettier": "3.6.2",
"prisma": "6.16.2",
"prisma": "6.16.3",
"tsx": "4.20.6",
"typescript": "5.9.2",
"typescript-eslint": "8.44.1",
"typescript": "5.9.3",
"typescript-eslint": "8.45.0",
"vitest": "3.2.4"
}
}
2 changes: 1 addition & 1 deletion packages/api-server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ COPY --from=root packages/common/ /common
RUN npm install -g npm && npm ci && npm run build && rm dist/*.tsbuildinfo

# Production image --------------
FROM docker.io/node:22.19.0-bookworm-slim@sha256:4a4884e8a44826194dff92ba316264f392056cbe243dcc9fd3551e71cea02b90 AS runner
FROM docker.io/node:22.20.0-bookworm-slim@sha256:d943bf20249f8b92eff6f605362df2ee9cf2d6ce2ea771a8886e126ec8714f08 AS runner
WORKDIR /app

LABEL org.opencontainers.image.authors="8 Hobbies, LLC"
Expand Down
275 changes: 144 additions & 131 deletions packages/api-server/package-lock.json

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions packages/api-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,22 +19,22 @@
"@8hobbies/eslint-conf-baseline": "6.0.0",
"@types/eslint": "9.6.1",
"@types/jest": "30.0.0",
"@types/node": "22.18.6",
"@types/node": "22.18.8",
"@vitest/coverage-v8": "3.2.4",
"eslint": "9.36.0",
"eslint": "9.37.0",
"globals": "16.4.0",
"prettier": "3.6.2",
"prisma": "6.16.2",
"typescript": "5.9.2",
"typescript-eslint": "8.44.1",
"prisma": "6.16.3",
"typescript": "5.9.3",
"typescript-eslint": "8.45.0",
"vitest": "3.2.4"
},
"dependencies": {
"@8hobbies/utils": "4.2.0",
"@fastify/type-provider-json-schema-to-ts": "5.0.0",
"@prisma/client": "6.16.2",
"@prisma/client": "6.16.3",
"fastify": "5.6.1",
"fastify-plugin": "5.0.1",
"fastify-plugin": "5.1.0",
"redis": "4.7.1"
}
}
Loading