-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…243) feat(mojaloop/#2092): upgrade nodeJS version for core services - mojaloop/project#2092 - standardised CI scripts - updated docker-compose files to work correctly - fixed lint issues - updated .nvmrc to latest LTS version - added standard CI scripts/config to package.json: release, snapshot, standard-version, etc - updated gitignore to include standard IGNORE patterns - updated README with standard auto-release information - Fixed imports - Cleaned up Package.json - replaced npm-audit-resolves with audit-ci and added an applicable `audit-ci.jsonc` file with an audit allowList as per [mojaloop/design-authority-project/issues/92](mojaloop/design-authority-project#92) - added safeguards for uncaught promises as required by Node v16 or otherwise the process will terminate in such an advent (possibly due to the legacy RXJS dependency Notes: - Helm chart mountPaths need to be updated from `/opt/central-event-processor` to `/opt/app` as follows: ```YAML volumeMounts: - mountPath: /opt/app/config name: <deployment-name> ``` BREAKING CHANGE: Major version bump for node v16 LTS support, re-structuring of project directories to align to core Mojaloop repositories and docker image now uses `/opt/app` instead of `/opt/central-event-processor` which will impact config mounts.
- Loading branch information
Showing
24 changed files
with
23,466 additions
and
5,089 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
## 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: [ | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
16.15.0 |
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"$schema": "https://github.com/IBM/audit-ci/raw/main/docs/schema.json", | ||
// audit-ci supports reading JSON, JSONC, and JSON5 config files. | ||
// Only use one of ["low": true, "moderate": true, "high": true, "critical": true] | ||
"moderate": true, | ||
"allowlist": [ // NOTE: Please add as much information as possible to any items added to the allowList | ||
// Currently no fixes available for the following | ||
"GHSA-v88g-cgmw-v5xw", | ||
"GHSA-93q8-gq69-wqmw", | ||
"GHSA-fwr7-v2mv-hh25", | ||
"GHSA-phwq-j96m-2c2q", | ||
"GHSA-mhxj-85r3-2x55", | ||
"GHSA-v5vg-g7rq-363w", | ||
"GHSA-896r-f27r-55mw", | ||
"GHSA-282f-qqgm-c34q", | ||
"GHSA-6vfc-qv3f-vr6c", | ||
"GHSA-xvch-5gv4-984h", | ||
"GHSA-vh95-rmgr-6w4m", | ||
"GHSA-wc69-rhjr-hc9g", | ||
"GHSA-rp65-9cf3-cjxr", | ||
"GHSA-g954-5hwp-pp24", | ||
"GHSA-mjxr-4v3x-q3m4", | ||
"GHSA-rjqq-98f6-6j3r", | ||
"GHSA-w5p7-h5w8-2hfq", | ||
"GHSA-gcv8-gh4r-25x6", | ||
"GHSA-8h2f-7jc4-7m3m", | ||
"GHSA-3vjf-82ff-p4r3", | ||
"GHSA-gmv4-r438-p67f", | ||
"GHSA-p9pc-299p-vxgp" | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.