-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(mojaloop/#3458): nodejs upgrade (#244)
chore(mojaloop/#3458): NodeJS version upgrade - mojaloop/project#3458 - Upgraded nodejs from v16 to v18 LTS - Applied CI changes as previously implemented in [sdk-scheme-adapter](mojaloop/sdk-scheme-adapter#453) - Updated NPM dependencies - Resolved all audit issues - Migrated `master` branch to `main` branch
- Loading branch information
Showing
14 changed files
with
3,276 additions
and
4,989 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,4 @@ | ||
## 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: [ | ||
# TODO: Upgrading ws is causing some incompatibility issues connecting to sdk-scheme-adapter ws server and causing some test failures | ||
"ws", | ||
# TODO: Upgrading axios is breaking lot of unit tests. It might be because of breaking changes in axios. | ||
"axios", | ||
# TODO: Upgrading jest is causing test failures | ||
"jest", | ||
# Upgrading `npm-check-updates` introduces rimraf>glob as a dependency that is under the BlueOak-1.0.0 licensing | ||
# which is still being investigated if it aligns with Mojaloop's policies. | ||
# An override is also in place for npm-check-updates>rimraf in package.json. | ||
# If you have trouble with package-lock.json not containing the override | ||
# delete BOTH node_modules/ and package-lock.json. Might be due to | ||
# https://github.com/npm/cli/issues/4232 | ||
# This is a temporary fix until Mojaloop decides on Blue Oak licensing. | ||
"npm-check-updates", | ||
] | ||
|
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 |
---|---|---|
@@ -1 +1 @@ | ||
16.15.0 | ||
18.17.1 |
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 @@ | ||
module.exports = { | ||
header: '# Changelog: [mojaloop/thirdparty-api-svc](https://github.com/mojaloop/thirdparty-api-svc)', | ||
types: [ | ||
{"type": "feat", "section": "Features"}, | ||
{"type": "fix", "section": "Bug Fixes"}, | ||
{"type": "docs", "section": "Documentation"}, | ||
{"type": "style", "section": "Styling"}, | ||
{"type": "refactor", "section": "Refactors"}, | ||
{"type": "perf", "section": "Performance"}, | ||
{"type": "test", "section": "Tests"}, | ||
{"type": "build", "section": "Build System"}, | ||
{"type": "ci", "section": "CI"}, | ||
{"type": "chore", "section": "Chore"}, | ||
{"type": "revert", "section": "Reverts"} | ||
] | ||
} |
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
Oops, something went wrong.