-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #275 from mdebarros/feature/#2151-helm-release-v12…
….1.0 feat(2151): helm-release-v12.1.0 - Updated dependencies - Fixes for updated dependencies - Bump patch version - Fixed lint issues - Added dep:check/update scripts, and made update:check/update aliases - Fixed unit & integration tests - some refactoring required as using "async-await" & "done-callbacks" are not compatible --> jestjs/jest#10529 - Added fix for 'SDK Scheme Adapter is not accepting PUT /parties with 1.1 content-type header': mojaloop/project#1891
- Loading branch information
Showing
12 changed files
with
4,123 additions
and
3,368 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -25,5 +25,6 @@ | |
], | ||
"no-console": 2, | ||
"no-prototype-builtins": "off" | ||
} | ||
}, | ||
"plugins": ["jest"] | ||
} |
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
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,6 +1,6 @@ | ||
{ | ||
"name": "@mojaloop/sdk-scheme-adapter", | ||
"version": "11.16.2", | ||
"version": "11.16.3", | ||
"description": "An adapter for connecting to Mojaloop API enabled switches.", | ||
"main": "index.js", | ||
"types": "index.d.ts", | ||
|
@@ -19,8 +19,10 @@ | |
"validate:api": "npm run validate:api:in; npm run validate:api:out", | ||
"validate:api:in": "swagger-cli validate ./InboundServer/api.yaml", | ||
"validate:api:out": "swagger-cli validate ./OutboundServer/api.yaml", | ||
"updates:check": "npm-check-updates", | ||
"updates:update": "npm-check-updates -u && npm install", | ||
"updates:check": "npm run dep:check", | ||
"updates:update": "npm run dep:update && npm install", | ||
"dep:check": "npx ncu -e 2", | ||
"dep:update": "npx ncu -u", | ||
"release": "standard-version --releaseCommitMessageFormat 'chore(release): {{currentTag}} [skip ci]'" | ||
}, | ||
"author": "Matt Kingston, James Bush, ModusBox Inc.", | ||
|
@@ -30,7 +32,8 @@ | |
"Valentin Genev <[email protected]>", | ||
"Shashikant Hirugade <[email protected]>", | ||
"Paweł Marzec <[email protected]>", | ||
"Kevin Leyow <[email protected]" | ||
"Kevin Leyow <[email protected]", | ||
"Miguel de Barros <[email protected]>" | ||
], | ||
"license": "Apache-2.0", | ||
"licenses": [ | ||
|
@@ -45,44 +48,45 @@ | |
}, | ||
"dependencies": { | ||
"@koa/cors": "^3.1.0", | ||
"@mojaloop/sdk-standard-components": "15.0.1", | ||
"ajv": "6.12.6", | ||
"@mojaloop/sdk-standard-components": "15.10.4", | ||
"ajv": "8.6.0", | ||
"axios": "^0.21.1", | ||
"co-body": "^6.1.0", | ||
"dotenv": "^8.2.0", | ||
"env-var": "^7.0.0", | ||
"dotenv": "^10.0.0", | ||
"env-var": "^7.0.1", | ||
"javascript-state-machine": "^3.1.0", | ||
"json-schema-ref-parser": "^6.0.3", | ||
"json-schema-ref-parser": "^9.0.9", | ||
"koa": "^2.13.1", | ||
"koa-body": "^4.2.0", | ||
"koa2-oauth-server": "^1.0.0", | ||
"openapi-jsonschema-parameters": "^1.1.0", | ||
"openapi-jsonschema-parameters": "^9.0.3", | ||
"promise-timeout": "^1.3.0", | ||
"redis": "^3.0.2", | ||
"uuidv4": "^6.2.6", | ||
"ws": "^7.4.2" | ||
"redis": "^3.1.2", | ||
"uuidv4": "^6.2.10", | ||
"ws": "^7.4.6" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.12.10", | ||
"@babel/preset-env": "^7.12.11", | ||
"@mojaloop/api-snippets": "^12.0.5", | ||
"@redocly/openapi-cli": "^1.0.0-beta.31", | ||
"@types/jest": "^26.0.20", | ||
"babel-jest": "^26.6.3", | ||
"eslint": "^7.18.0", | ||
"@babel/core": "^7.14.3", | ||
"@babel/preset-env": "^7.14.4", | ||
"@mojaloop/api-snippets": "^12.4.2", | ||
"@redocly/openapi-cli": "^1.0.0-beta.49", | ||
"@types/jest": "^26.0.23", | ||
"babel-jest": "^27.0.2", | ||
"eslint": "^7.28.0", | ||
"eslint-config-airbnb-base": "^14.2.1", | ||
"eslint-plugin-import": "^2.22.1", | ||
"jest": "^26.6.3", | ||
"jest-junit": "^12.0.0", | ||
"js-yaml": "^3.14.1", | ||
"nock": "^13.0.6", | ||
"npm-audit-resolver": "^2.2.1", | ||
"npm-check-updates": "^11.0.2", | ||
"openapi-response-validator": "^7.2.3", | ||
"openapi-typescript": "^2.4.2", | ||
"redis-mock": "^0.49.0", | ||
"standard-version": "^9.1.1", | ||
"supertest": "^6.1.2", | ||
"eslint-plugin-import": "^2.23.4", | ||
"eslint-plugin-jest": "^24.3.6", | ||
"jest": "^27.0.4", | ||
"jest-junit": "^12.1.0", | ||
"js-yaml": "^4.1.0", | ||
"nock": "^13.1.0", | ||
"npm-audit-resolver": "^2.3.1", | ||
"npm-check-updates": "^11.6.0", | ||
"openapi-response-validator": "^9.0.3", | ||
"openapi-typescript": "^4.0.0", | ||
"redis-mock": "^0.56.3", | ||
"standard-version": "^9.3.0", | ||
"supertest": "^6.1.3", | ||
"swagger-cli": "^4.0.4" | ||
} | ||
} |
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.