Skip to content
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

fix(mojaloop/#3533): downgrade ML dependencies #398

Merged
merged 9 commits into from
Oct 19, 2023
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
9 changes: 8 additions & 1 deletion .ncurc.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
## Add a TODO comment indicating the reason for each rejected dependency upgrade added to this list, and what should be done to resolve it (i.e. handle it through a story, etc).
reject: [
# @hapi/catbox-memory v6 and onwards breaks tests. Needs investigation.
"@hapi/catbox-memory"
"@hapi/catbox-memory",
# running stable versions until lag issue is fixed
"@mojaloop/central-ledger",
"@mojaloop/central-services-shared",
"@mojaloop/central-services-stream",
"@mojaloop/event-sdk",
# prevents CI from running package install in v6.1.1
"sinon"
]
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ ARG NODE_VERSION=lts-alpine
# Build Image
FROM node:${NODE_VERSION} as builder

USER root

WORKDIR /opt/app/

RUN apk add --no-cache -t build-dependencies git make gcc g++ python3 libtool autoconf automake bash \
&& cd $(npm root -g)/npm
RUN apk --no-cache add git
RUN apk add --no-cache -t build-dependencies make gcc g++ python3 libtool openssl-dev autoconf automake bash \
&& cd $(npm root -g)/npm \
&& npm install -g node-gyp

COPY package.json package-lock.json* /opt/app/
RUN npm ci
Expand Down
7 changes: 6 additions & 1 deletion audit-ci.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@
"GHSA-w5p7-h5w8-2hfq",
"GHSA-qgmg-gppg-76g5",
"GHSA-p9pc-299p-vxgp",
"GHSA-7fh5-64p2-3v2j"
"GHSA-7fh5-64p2-3v2j",
"GHSA-67hx-6x53-jw92",
"GHSA-wc69-rhjr-hc9g",
"GHSA-g954-5hwp-pp24",
"GHSA-h755-8qp9-cq85",
"GHSA-f9xv-q969-pqx4"
]
}
Loading