@itentialopensource/adapter-azure_devops 0.2.0 → 0.2.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
+ ## 0.2.1 [12-25-2023]
3
+
4
+ * update axios and metadata
5
+
6
+ See merge request itentialopensource/adapters/devops-netops/adapter-azure_devops!13
7
+
8
+ ---
9
+
2
10
  ## 0.2.0 [11-10-2023]
3
11
 
4
12
  * Adapter Engine has been updated and the changes are being migrated to the adapter
package/SYSTEMINFO.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Microsoft Azure DevOps
2
2
 
3
3
  Vendor: Microsoft
4
- Homepage: https://www.microsoft.com
4
+ Homepage: https://www.microsoft.com/en-us/
5
5
 
6
6
  Product: Azure DevOps
7
7
  Product Page: https://azure.microsoft.com/en-us/products/devops
package/metadata.json CHANGED
@@ -17,7 +17,7 @@
17
17
  "CI/CD"
18
18
  ],
19
19
  "tags": [
20
- "Pipelines",
20
+ "Pipeline",
21
21
  "Version Control",
22
22
  "Build and Deploy"
23
23
  ],
@@ -42,7 +42,7 @@
42
42
  "contributeLink": "https://gitlab.com/itentialopensource/adapters/contributing-guide",
43
43
  "issueLink": "https://itential.atlassian.net/servicedesk/customer/portals",
44
44
  "webLink": "https://www.itential.com/adapters/azure-devops/",
45
- "vendorLink": "https://www.microsoft.com",
45
+ "vendorLink": "https://www.microsoft.com/en-us/",
46
46
  "productLink": "https://azure.microsoft.com/en-us/products/devops",
47
47
  "apiLinks": [
48
48
  "https://learn.microsoft.com/en-us/rest/api/azure/devops/?view=azure-devops-rest-7.2"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itentialopensource/adapter-azure_devops",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "This adapter integrates with system described as: Azure DevOps.",
5
5
  "main": "adapter.js",
6
6
  "wizardVersion": "2.44.7",
@@ -59,7 +59,7 @@
59
59
  "@itentialopensource/adapter-utils": "^5.3.0",
60
60
  "acorn": "^8.10.0",
61
61
  "ajv": "^8.12.0",
62
- "axios": "^1.4.0",
62
+ "axios": "^1.6.2",
63
63
  "commander": "^11.0.0",
64
64
  "dns-lookup-promise": "^1.0.4",
65
65
  "fs-extra": "^11.1.1",
Binary file
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.1.11",
2
+ "version": "0.2.0",
3
3
  "configLines": 54264,
4
4
  "scriptLines": 1783,
5
5
  "codeLines": 14951,
@@ -316,7 +316,7 @@ describe('[unit] Azure_devops 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);