Skip to content

Commit e7459c0

Browse files
authored
Merge pull request #151 from CBIIT/1.5.8
1.5.8
2 parents bfdb2c1 + fd6fac4 commit e7459c0

3 files changed

Lines changed: 43 additions & 16 deletions

File tree

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
FROM node:25.6.1-slim
1+
FROM node:25.8.2-slim
22

33
ENV PORT 8080
44
ENV NODE_ENV production
55

66
# Upgrade npm to latest version to address CVE-2026-0775 (npm 11.8.0 vulnerability)
77
RUN npm install -g npm@latest
88

9-
# Update tar to 7.5.8 to fix CVE in npm's bundled tar (7.5.4)
9+
# Update tar to 7.5.11 to fix CVE in npm's bundled tar (7.5.4)
1010
RUN mkdir -p /tmp/tar-update && \
1111
cd /tmp/tar-update && \
1212
npm init -y && \
13-
npm install tar@7.5.8 --legacy-peer-deps && \
13+
npm install tar@7.5.11 --legacy-peer-deps && \
1414
rm -rf /usr/local/lib/node_modules/npm/node_modules/tar && \
1515
cp -r node_modules/tar /usr/local/lib/node_modules/npm/node_modules/ && \
1616
rm -rf /tmp/tar-update
@@ -28,7 +28,7 @@ RUN mkdir -p /tmp/brace-expansion-update && \
2828
RUN mkdir -p /tmp/minimatch-update && \
2929
cd /tmp/minimatch-update && \
3030
npm init -y && \
31-
npm install minimatch@10.2.1 --legacy-peer-deps && \
31+
npm install minimatch@10.2.3 --legacy-peer-deps && \
3232
rm -rf /usr/local/lib/node_modules/npm/node_modules/minimatch && \
3333
cp -r node_modules/minimatch /usr/local/lib/node_modules/npm/node_modules/ && \
3434
rm -rf /usr/local/lib/node_modules/npm/node_modules/brace-expansion && \

package-lock.json

Lines changed: 36 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,15 @@
2020
"express": "^4.21.2",
2121
"helmet": "^5.0.2",
2222
"json2csv": "^5.0.6",
23-
"lodash": "^4.17.21",
23+
"lodash": "^4.18.0",
2424
"mysql": "^2.18.1",
2525
"node-cache": "^5.1.2",
2626
"winston": "^3.8.2"
2727
},
2828
"overrides": {
2929
"glob": "^11.1.0",
30-
"minimatch": "^3.1.2"
30+
"minimatch": "^3.1.2",
31+
"path-to-regexp": "0.1.13"
3132
},
3233
"devDependencies": {
3334
"@vitest/coverage-v8": "^4.0.15",

0 commit comments

Comments
 (0)