@itentialopensource/adapter-winston_syslog 1.1.0 → 1.1.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.
- package/CHANGELOG.md +16 -0
- package/metadata.json +10 -4
- package/package.json +4 -4
- package/refs?service=git-upload-pack +0 -0
- package/test/unit/adapterTestUnit.js +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,20 @@
|
|
|
1
1
|
|
|
2
|
+
## 1.1.2 [03-12-2024]
|
|
3
|
+
|
|
4
|
+
* Changes made at 2024.03.12_10:56AM
|
|
5
|
+
|
|
6
|
+
See merge request itentialopensource/adapters/telemetry-analytics/adapter-winston_syslog!6
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## 1.1.1 [02-27-2024]
|
|
11
|
+
|
|
12
|
+
* Changes made at 2024.02.27_11:29AM
|
|
13
|
+
|
|
14
|
+
See merge request itentialopensource/adapters/telemetry-analytics/adapter-winston_syslog!5
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
2
18
|
## 1.1.0 [01-04-2024]
|
|
3
19
|
|
|
4
20
|
* Adapter Engine has been updated and the changes are being migrated to the adapter
|
package/metadata.json
CHANGED
|
@@ -14,10 +14,16 @@
|
|
|
14
14
|
"method": "REST",
|
|
15
15
|
"type": "Adapter",
|
|
16
16
|
"domains": [
|
|
17
|
-
"
|
|
17
|
+
"Service Assurance"
|
|
18
|
+
],
|
|
19
|
+
"tags": [
|
|
20
|
+
"Monitoring & Troubleshooting"
|
|
21
|
+
],
|
|
22
|
+
"useCases": [
|
|
23
|
+
"Add Device to Monitoring",
|
|
24
|
+
"Automated network data gathering for diagnostics",
|
|
25
|
+
"Verify network connectivity"
|
|
18
26
|
],
|
|
19
|
-
"tags": [],
|
|
20
|
-
"useCases": [],
|
|
21
27
|
"deprecated": {
|
|
22
28
|
"isDeprecated": false
|
|
23
29
|
},
|
|
@@ -46,4 +52,4 @@
|
|
|
46
52
|
"transformationProjects": [],
|
|
47
53
|
"exampleProjects": []
|
|
48
54
|
}
|
|
49
|
-
}
|
|
55
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itentialopensource/adapter-winston_syslog",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"description": "This adapter integrates with winston_syslog and sends logs to any syslog server.",
|
|
5
5
|
"main": "adapter.js",
|
|
6
6
|
"systemName": "winston_syslog",
|
|
@@ -56,16 +56,16 @@
|
|
|
56
56
|
"author": "Itential",
|
|
57
57
|
"homepage": "https://gitlab.com/itentialopensource/adapters/telemetry-analytics/adapter-winston_syslog#readme",
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@itentialopensource/adapter-utils": "^5.3.
|
|
59
|
+
"@itentialopensource/adapter-utils": "^5.3.8",
|
|
60
60
|
"acorn": "^8.10.0",
|
|
61
61
|
"ajv": "^8.12.0",
|
|
62
|
-
"axios": "^1.6.
|
|
62
|
+
"axios": "^1.6.7",
|
|
63
63
|
"commander": "^11.0.0",
|
|
64
64
|
"dns-lookup-promise": "^1.0.4",
|
|
65
65
|
"fs-extra": "^11.1.1",
|
|
66
66
|
"json-query": "^2.2.2",
|
|
67
67
|
"json5": "^2.2.2",
|
|
68
|
-
"mocha": "^10.
|
|
68
|
+
"mocha": "^10.3.0",
|
|
69
69
|
"mocha-param": "^2.0.1",
|
|
70
70
|
"mongodb": "^4.16.0",
|
|
71
71
|
"nyc": "^15.1.0",
|
|
Binary file
|
|
@@ -316,10 +316,10 @@ describe('[unit] WinstonSyslog Adapter Test', () => {
|
|
|
316
316
|
assert.notEqual(null, packageDotJson.dependencies);
|
|
317
317
|
assert.notEqual('', packageDotJson.dependencies);
|
|
318
318
|
assert.equal('^8.12.0', packageDotJson.dependencies.ajv);
|
|
319
|
-
assert.equal('^1.6.
|
|
319
|
+
assert.equal('^1.6.7', packageDotJson.dependencies.axios);
|
|
320
320
|
assert.equal('^11.0.0', packageDotJson.dependencies.commander);
|
|
321
321
|
assert.equal('^11.1.1', packageDotJson.dependencies['fs-extra']);
|
|
322
|
-
assert.equal('^10.
|
|
322
|
+
assert.equal('^10.3.0', packageDotJson.dependencies.mocha);
|
|
323
323
|
assert.equal('^2.0.1', packageDotJson.dependencies['mocha-param']);
|
|
324
324
|
assert.equal('^15.1.0', packageDotJson.dependencies.nyc);
|
|
325
325
|
assert.equal('^0.4.4', packageDotJson.dependencies.ping);
|