@mojaloop/ml-testing-toolkit-client-lib 1.2.1 → 1.2.2

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/Dockerfile +4 -1
  3. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
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.2.2](https://github.com/mojaloop/ml-testing-toolkit-client-lib/compare/v1.2.1...v1.2.2) (2024-02-07)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **mojaloop/#3603:** fix permission issues in docker ([#9](https://github.com/mojaloop/ml-testing-toolkit-client-lib/issues/9)) ([d57faa8](https://github.com/mojaloop/ml-testing-toolkit-client-lib/commit/d57faa8dce7b9de286f39981a6e88be5097c2d67))
11
+
5
12
  ### [1.2.1](https://github.com/mojaloop/ml-testing-toolkit-client-lib/compare/v1.2.0...v1.2.1) (2023-10-11)
6
13
 
7
14
 
package/Dockerfile CHANGED
@@ -39,9 +39,12 @@ RUN ln -sf /dev/stdout ./logs/combined.log
39
39
 
40
40
  # Create a non-root user:app-user
41
41
  RUN adduser -D app-user
42
- USER app-user
43
42
 
44
43
  COPY --chown=app-user --from=builder /opt/app .
44
+ RUN chown app-user:app-user /opt/app
45
+
46
+ USER app-user
47
+
45
48
  RUN npm prune --production
46
49
 
47
50
  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.2.1",
4
+ "version": "1.2.2",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Vijaya Kumar Guthi, ModusBox Inc. ",
7
7
  "contributors": [
@@ -64,15 +64,15 @@
64
64
  },
65
65
  "dependencies": {
66
66
  "@mojaloop/central-services-logger": "11.2.2",
67
- "@mojaloop/ml-testing-toolkit-shared-lib": "14.0.0",
67
+ "@mojaloop/ml-testing-toolkit-shared-lib": "14.0.1",
68
68
  "@mojaloop/sdk-standard-components": "17.1.3",
69
- "@slack/webhook": "7.0.0",
69
+ "@slack/webhook": "7.0.2",
70
70
  "atob": "2.1.2",
71
- "aws-sdk": "2.1472.0",
72
- "axios": "1.5.1",
71
+ "aws-sdk": "2.1552.0",
72
+ "axios": "1.6.7",
73
73
  "cli-table3": "0.6.3",
74
- "commander": "11.0.0",
75
- "dotenv": "16.3.1",
74
+ "commander": "12.0.0",
75
+ "dotenv": "16.4.1",
76
76
  "fs": "0.0.1-security",
77
77
  "lodash": "4.17.21",
78
78
  "mv": "2.1.1",
@@ -83,18 +83,18 @@
83
83
  "rc": "1.2.8",
84
84
  "request": "2.88.2",
85
85
  "request-promise-native": "1.0.8",
86
- "socket.io-client": "4.7.2"
86
+ "socket.io-client": "4.7.4"
87
87
  },
88
88
  "devDependencies": {
89
89
  "audit-ci": "^6.6.1",
90
90
  "jest": "^29.7.0",
91
91
  "jest-junit": "^16.0.0",
92
- "npm-check-updates": "16.14.5",
92
+ "npm-check-updates": "16.14.14",
93
93
  "nyc": "^15.1.0",
94
94
  "parse-strings-in-object": "1.6.0",
95
95
  "pre-commit": "1.2.2",
96
96
  "replace": "^1.2.2",
97
- "sinon": "16.1.0",
97
+ "sinon": "17.0.1",
98
98
  "standard": "^17.1.0",
99
99
  "standard-version": "^9.5.0"
100
100
  },