@itentialopensource/adapter-servicenow 2.8.0 → 2.8.1

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,12 @@
1
1
 
2
+ ## 2.8.1 [12-23-2023]
3
+
4
+ * update axios and metadata
5
+
6
+ See merge request itentialopensource/adapters/itsm-testing/adapter-servicenow!28
7
+
8
+ ---
9
+
2
10
  ## 2.8.0 [12-14-2023]
3
11
 
4
12
  * More migration changes
package/metadata.json CHANGED
@@ -42,9 +42,10 @@
42
42
  ],
43
43
  "useCases": [
44
44
  "Create, update, complete or cancel Change Management Requests",
45
+ "Create, update, complete or cancel Catalog Request Items",
45
46
  "Create, update, close or cancel tickets/issues for Problems/Solutions during Automations",
46
47
  "Add, update, manage or remove assets to/from CMDB systems",
47
- "Update, close, or cancel a Service Order during Automations",
48
+ "Update, close, or cancel a Service Order during Automations",
48
49
  "Create and update Knowledge Base Articles"
49
50
  ],
50
51
  "deprecated": {
@@ -57,10 +58,11 @@
57
58
  "repoLink": "https://gitlab.com/itentialopensource/adapters/itsm-testing/adapter-servicenow",
58
59
  "docLink": "https://docs.itential.com/opensource/docs/servicenow",
59
60
  "demoLinks": [
60
- "https://www.itential.com/blog/company/network-cloud-automation/getting-real-time-with-automating-network-change-management-with-servicenow/",
61
+ "https://www.itential.com/blog/getting-real-time-with-automating-network-change-management-with-servicenow/",
61
62
  "https://www.itential.com/resource/demo/integrating-servicenow-cmdb-as-a-source-of-truth-to-drive-network-automation-with-itential-2/",
62
63
  "https://www.itential.com/solutions/integrations/servicenow-network-automation/"
63
64
  ],
65
+ "trainingLinks": [],
64
66
  "faqLink": "https://docs.itential.com/opensource/docs/troubleshooting-an-adapter",
65
67
  "contributeLink": "https://gitlab.com/itentialopensource/adapters/contributing-guide",
66
68
  "issueLink": "https://itential.atlassian.net/servicedesk/customer/portals",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itentialopensource/adapter-servicenow",
3
- "version": "2.8.0",
3
+ "version": "2.8.1",
4
4
  "description": "This adapter integrates with system described as: servicenowMadrid.",
5
5
  "main": "adapter.js",
6
6
  "systemName": "ServiceNow",
@@ -58,7 +58,7 @@
58
58
  "@itentialopensource/adapter-utils": "^5.3.0",
59
59
  "acorn": "^8.10.0",
60
60
  "ajv": "^8.12.0",
61
- "axios": "^1.4.0",
61
+ "axios": "^1.6.2",
62
62
  "commander": "^11.0.0",
63
63
  "dns-lookup-promise": "^1.0.4",
64
64
  "fs-extra": "^11.1.1",
Binary file
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "2.7.0",
2
+ "version": "2.8.0",
3
3
  "configLines": 8401,
4
4
  "scriptLines": 1783,
5
5
  "codeLines": 12921,
@@ -316,7 +316,7 @@ describe('[unit] Servicenow 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.4.0', packageDotJson.dependencies.axios);
319
+ assert.equal('^1.6.2', 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
322
  assert.equal('^10.2.0', packageDotJson.dependencies.mocha);