@mojaloop/ml-testing-toolkit-client-lib 1.0.0-snapshot.1 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.ncurc.js +1 -7
- package/CHANGELOG.md +11 -0
- package/Dockerfile +5 -2
- package/package.json +7 -8
package/.ncurc.js
CHANGED
|
@@ -1,10 +1,4 @@
|
|
|
1
1
|
module.exports = {
|
|
2
2
|
// 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).
|
|
3
|
-
reject: [
|
|
4
|
-
// TODO: Upgrading ws is causing incompatibility issues with old versions of ws servers. Need to investigate the cause.
|
|
5
|
-
"ws",
|
|
6
|
-
// TODO: Upgrading socket.io-client is causing incompatibility issues with old versions of socket.io servers. Need to investigate the cause.
|
|
7
|
-
"socket.io-client",
|
|
8
|
-
"@types/socket.io"
|
|
9
|
-
]
|
|
3
|
+
reject: []
|
|
10
4
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [1.0.0](https://github.com/mojaloop/ml-testing-toolkit-client-lib/compare/v0.0.6...v1.0.0) (2022-07-28)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### ⚠ BREAKING CHANGES
|
|
9
|
+
|
|
10
|
+
* Major version bump for node v16 LTS support.
|
|
11
|
+
|
|
12
|
+
Major version bump since this is a big upgrade.
|
|
13
|
+
|
|
14
|
+
* updated shared lib ([#1](https://github.com/mojaloop/ml-testing-toolkit-client-lib/issues/1)) ([f85fb61](https://github.com/mojaloop/ml-testing-toolkit-client-lib/commit/f85fb616955f54ba0463acac374976fa430f35d5)), closes [#2092](https://github.com/mojaloop/ml-testing-toolkit-client-lib/issues/2092)
|
|
15
|
+
|
|
5
16
|
### [0.0.6](https://github.com/mojaloop/ml-testing-toolkit-client-lib/compare/v0.0.5...v0.0.6) (2022-06-06)
|
|
6
17
|
|
|
7
18
|
|
package/Dockerfile
CHANGED
|
@@ -16,10 +16,13 @@ FROM node:16.15.0-alpine
|
|
|
16
16
|
WORKDIR /opt/app
|
|
17
17
|
|
|
18
18
|
# Create a non-root user: ml-user
|
|
19
|
-
RUN adduser -D ml-user
|
|
20
|
-
USER ml-user
|
|
19
|
+
RUN adduser -D ml-user
|
|
21
20
|
|
|
22
21
|
COPY --chown=ml-user --from=builder /opt/app .
|
|
22
|
+
RUN chown ml-user:ml-user /opt/app
|
|
23
|
+
|
|
24
|
+
USER ml-user
|
|
25
|
+
|
|
23
26
|
RUN npm prune --production
|
|
24
27
|
|
|
25
28
|
CMD ["npm", "run", "cli"]
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mojaloop/ml-testing-toolkit-client-lib",
|
|
3
3
|
"description": "Testing Toolkit Client Library",
|
|
4
|
-
"version": "1.0.0
|
|
4
|
+
"version": "1.0.0",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Vijaya Kumar Guthi, ModusBox Inc. ",
|
|
7
7
|
"contributors": [
|
|
@@ -15,6 +15,9 @@
|
|
|
15
15
|
"url": "https://github.com/mojaloop/ml-testing-toolkit-client-lib.git"
|
|
16
16
|
},
|
|
17
17
|
"bugs": "https://github.com/mojaloop/ml-testing-toolkit-client-lib/issues",
|
|
18
|
+
"engines": {
|
|
19
|
+
"node": "=16.x"
|
|
20
|
+
},
|
|
18
21
|
"config": {},
|
|
19
22
|
"bin": {
|
|
20
23
|
"ml-ttk-cli": "bin/cli.js"
|
|
@@ -63,7 +66,7 @@
|
|
|
63
66
|
"@mojaloop/sdk-standard-components": "17.1.1",
|
|
64
67
|
"@slack/webhook": "^6.1.0",
|
|
65
68
|
"atob": "2.1.2",
|
|
66
|
-
"aws-sdk": "^2.
|
|
69
|
+
"aws-sdk": "^2.1183.0",
|
|
67
70
|
"axios": "^0.27.2",
|
|
68
71
|
"cli-table3": "0.6.2",
|
|
69
72
|
"commander": "9.4.0",
|
|
@@ -78,17 +81,13 @@
|
|
|
78
81
|
"rc": "1.2.8",
|
|
79
82
|
"request": "^2.88.2",
|
|
80
83
|
"request-promise-native": "1.0.8",
|
|
81
|
-
"socket.io-client": "^
|
|
82
|
-
"ws": "^7.5.5"
|
|
84
|
+
"socket.io-client": "^4.5.1"
|
|
83
85
|
},
|
|
84
86
|
"devDependencies": {
|
|
85
87
|
"audit-ci": "^6.3.0",
|
|
86
|
-
"eslint": "^8.20.0",
|
|
87
|
-
"eslint-plugin-import": "^2.26.0",
|
|
88
88
|
"jest": "^28.1.3",
|
|
89
89
|
"jest-junit": "^14.0.0",
|
|
90
|
-
"npm-
|
|
91
|
-
"npm-check-updates": "16.0.0",
|
|
90
|
+
"npm-check-updates": "16.0.1",
|
|
92
91
|
"nyc": "^15.1.0",
|
|
93
92
|
"parse-strings-in-object": "1.6.0",
|
|
94
93
|
"pre-commit": "1.2.2",
|