@itentialopensource/adapter-winston_syslog 1.2.0 → 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.
package/CHANGELOG.md CHANGED
@@ -1,4 +1,20 @@
1
1
 
2
+ ## 1.2.2 [08-14-2024]
3
+
4
+ * Changes made at 2024.08.14_17:51PM
5
+
6
+ See merge request itentialopensource/adapters/adapter-winston_syslog!10
7
+
8
+ ---
9
+
10
+ ## 1.2.1 [08-07-2024]
11
+
12
+ * Changes made at 2024.08.06_18:47PM
13
+
14
+ See merge request itentialopensource/adapters/adapter-winston_syslog!9
15
+
16
+ ---
17
+
2
18
  ## 1.2.0 [07-31-2024]
3
19
 
4
20
  * Manual Migration Updates
package/TAB2.md CHANGED
@@ -276,5 +276,5 @@ Sample Properties can be used to help you configure the adapter in the Itential
276
276
  ### Swagger
277
277
 
278
278
  Note: The content for this section may be missing as its corresponding .json file is unavailable. This sections will be updated once adapter-openapi.json file is added.
279
- ## [Generic Adapter Information](https://gitlab.com/itentialopensource/adapters/telemetry-analytics/adapter-winston_syslog/-/blob/master/README.md)
279
+ ## [Generic Adapter Information](https://gitlab.com/itentialopensource/adapters/adapter-winston_syslog/-/blob/master/README.md)
280
280
 
package/metadata.json CHANGED
@@ -59,7 +59,9 @@
59
59
  "link": "https://www.npmjs.com/package/winston-syslog",
60
60
  "public": true
61
61
  }
62
- ]
62
+ ],
63
+ "workshopLinks": [],
64
+ "workshopHomePage": "https://www.itential.com/get-started/"
63
65
  },
64
66
  "assets": [],
65
67
  "relatedItems": {
@@ -69,5 +71,7 @@
69
71
  "workflowProjects": [],
70
72
  "transformationProjects": [],
71
73
  "exampleProjects": []
72
- }
74
+ },
75
+ "supportLevel": "community",
76
+ "techAlliance": false
73
77
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itentialopensource/adapter-winston_syslog",
3
- "version": "1.2.0",
3
+ "version": "1.2.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",
@@ -55,23 +55,23 @@
55
55
  "author": "Itential",
56
56
  "homepage": "https://gitlab.com/itentialopensource/adapters/adapter-winston_syslog#readme",
57
57
  "dependencies": {
58
- "@itentialopensource/adapter-utils": "^5.5.0",
59
- "acorn": "^8.10.0",
60
- "ajv": "^8.12.0",
61
- "axios": "^1.6.8",
58
+ "@itentialopensource/adapter-utils": "^5.6.0",
59
+ "acorn": "^8.12.1",
60
+ "ajv": "^8.17.1",
61
+ "axios": "^1.7.4",
62
62
  "commander": "^11.0.0",
63
63
  "dns-lookup-promise": "^1.0.4",
64
- "fs-extra": "^11.1.1",
64
+ "fs-extra": "^11.2.0",
65
65
  "json-query": "^2.2.2",
66
66
  "json5": "^2.2.2",
67
- "mocha": "^10.6.0",
67
+ "mocha": "^10.7.3",
68
68
  "mocha-param": "^2.0.1",
69
69
  "mongodb": "^4.16.0",
70
70
  "ping": "^0.4.4",
71
71
  "prompts": "^2.4.2",
72
72
  "readline-sync": "^1.4.10",
73
- "semver": "^7.5.3",
74
- "winston": "^3.9.0",
73
+ "semver": "^7.6.3",
74
+ "winston": "^3.13.1",
75
75
  "winston-syslog": "^2.7.0"
76
76
  },
77
77
  "devDependencies": {
Binary file
@@ -314,16 +314,16 @@ describe('[unit] WinstonSyslog Adapter Test', () => {
314
314
  assert.notEqual(undefined, packageDotJson.dependencies);
315
315
  assert.notEqual(null, packageDotJson.dependencies);
316
316
  assert.notEqual('', packageDotJson.dependencies);
317
- assert.equal('^8.12.0', packageDotJson.dependencies.ajv);
318
- assert.equal('^1.6.8', packageDotJson.dependencies.axios);
317
+ assert.equal('^8.17.1', packageDotJson.dependencies.ajv);
318
+ assert.equal('^1.7.4', packageDotJson.dependencies.axios);
319
319
  assert.equal('^11.0.0', packageDotJson.dependencies.commander);
320
- assert.equal('^11.1.1', packageDotJson.dependencies['fs-extra']);
321
- assert.equal('^10.6.0', packageDotJson.dependencies.mocha);
320
+ assert.equal('^11.2.0', packageDotJson.dependencies['fs-extra']);
321
+ assert.equal('^10.7.3', packageDotJson.dependencies.mocha);
322
322
  assert.equal('^2.0.1', packageDotJson.dependencies['mocha-param']);
323
323
  assert.equal('^0.4.4', packageDotJson.dependencies.ping);
324
324
  assert.equal('^1.4.10', packageDotJson.dependencies['readline-sync']);
325
- assert.equal('^7.5.3', packageDotJson.dependencies.semver);
326
- assert.equal('^3.9.0', packageDotJson.dependencies.winston);
325
+ assert.equal('^7.6.3', packageDotJson.dependencies.semver);
326
+ assert.equal('^3.13.1', packageDotJson.dependencies.winston);
327
327
  done();
328
328
  } catch (error) {
329
329
  log.error(`Test Failure: ${error}`);