Skip to content

Feature/ri 7274 updating dependencies before the release #4848

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# the best way to minimize the number of node_module restores and build steps
# while still keeping the final image small.

FROM node:20.14-alpine as build
FROM node:20.19.4-alpine as build

# update apk repository and install build dependencies
RUN apk update && apk add --no-cache --virtual .gyp \
Expand Down Expand Up @@ -43,7 +43,7 @@ RUN yarn --cwd ./redisinsight/api install --production
COPY ./redisinsight/api/.yarnclean.prod ./redisinsight/api/.yarnclean
RUN yarn --cwd ./redisinsight/api autoclean --force

FROM node:20.14-alpine
FROM node:20.19.4-alpine

# runtime args and environment variables
ARG NODE_ENV=production
Expand Down
3 changes: 2 additions & 1 deletion redisinsight/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@
"winston-daily-rotate-file/**/file-stream-rotator": "^1.0.0",
"**/form-data": "^4.0.4",
"form-data": "^4.0.4",
"supertest/**/form-data": "^4.0.4"
"supertest/**/form-data": "^4.0.4",
"**/multer": "^2.0.2"
},
"dependencies": {
"@nestjs/common": "^11.0.20",
Expand Down
8 changes: 4 additions & 4 deletions redisinsight/api/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5967,10 +5967,10 @@ ms@^2.0.0, ms@^2.1.1, ms@^2.1.3:
resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==

[email protected]:
version "2.0.1"
resolved "https://registry.yarnpkg.com/multer/-/multer-2.0.1.tgz#3ed335ed2b96240e3df9e23780c91cfcf5d29202"
integrity sha512-Ug8bXeTIUlxurg8xLTEskKShvcKDZALo1THEX5E41pYCD2sCVub5/kIRIGqWNoqV6szyLyQKV6mD4QUrWE5GCQ==
[email protected], multer@^2.0.2:
version "2.0.2"
resolved "https://registry.yarnpkg.com/multer/-/multer-2.0.2.tgz#08a8aa8255865388c387aaf041426b0c87bf58dd"
integrity sha512-u7f2xaZ/UG8oLXHvtF/oWTRvT44p9ecwBBqTwgJVq0+4BW1g8OW01TyMEGWBHbyMOYVHXslaut7qEQ1meATXgw==
dependencies:
append-field "^1.0.0"
busboy "^1.6.0"
Expand Down
Loading