@itentialopensource/adapter-git 0.3.6 → 0.3.8
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/adapter.js +0 -1
- package/metadata.json +7 -13
- package/package.json +2 -5
- package/refs?service=git-upload-pack +0 -0
- package/compliance-report.json +0 -9
- package/compliance-report.txt +0 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,20 @@
|
|
|
1
1
|
|
|
2
|
+
## 0.3.8 [09-24-2024]
|
|
3
|
+
|
|
4
|
+
* Removed request and patch-package dependencies
|
|
5
|
+
|
|
6
|
+
See merge request itentialopensource/adapters/adapter-git!12
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## 0.3.7 [08-26-2024]
|
|
11
|
+
|
|
12
|
+
* update dependencies and metadata
|
|
13
|
+
|
|
14
|
+
See merge request itentialopensource/adapters/adapter-git!11
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
2
18
|
## 0.3.6 [08-14-2024]
|
|
3
19
|
|
|
4
20
|
* Changes made at 2024.08.14_17:46PM
|
package/adapter.js
CHANGED
|
@@ -19,7 +19,6 @@ const path = require('path');
|
|
|
19
19
|
const util = require('util');
|
|
20
20
|
/* Fetch in the other needed components for the this Adaptor */
|
|
21
21
|
const EventEmitterCl = require('events').EventEmitter;
|
|
22
|
-
const request = require('request');
|
|
23
22
|
const AjvCl = require('ajv');
|
|
24
23
|
const git = require('isomorphic-git');
|
|
25
24
|
const http = require('isomorphic-git/http/node');
|
package/metadata.json
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "adapter-git",
|
|
3
3
|
"webName": "Adapter for Integration to Git",
|
|
4
|
+
"supportLevel": "community",
|
|
4
5
|
"vendor": "Generic",
|
|
5
6
|
"product": "Git",
|
|
7
|
+
"techAlliance": false,
|
|
6
8
|
"osVersion": [],
|
|
7
9
|
"apiVersions": [],
|
|
8
10
|
"iapVersions": [
|
|
@@ -17,16 +19,10 @@
|
|
|
17
19
|
"CI/CD"
|
|
18
20
|
],
|
|
19
21
|
"tags": [
|
|
20
|
-
"
|
|
21
|
-
"Version Control",
|
|
22
|
-
"Build and Deploy"
|
|
22
|
+
"CI/CD & Self-Service"
|
|
23
23
|
],
|
|
24
24
|
"useCases": [
|
|
25
|
-
"
|
|
26
|
-
"Create, update, manage and remove Projects",
|
|
27
|
-
"Automated Deployment of a new System, Application or Project",
|
|
28
|
-
"Versioning of Infrastructure Configuration",
|
|
29
|
-
"Automation of Network Configuration Changes from Repository"
|
|
25
|
+
"CI/CD Pipeline"
|
|
30
26
|
],
|
|
31
27
|
"deprecated": {
|
|
32
28
|
"isDeprecated": false
|
|
@@ -43,7 +39,7 @@
|
|
|
43
39
|
"storeLink": "",
|
|
44
40
|
"npmLink": "https://www.npmjs.com/package/@itentialopensource/adapter-git",
|
|
45
41
|
"repoLink": "https://gitlab.com/itentialopensource/adapters/adapter-git",
|
|
46
|
-
"docLink": "https://
|
|
42
|
+
"docLink": "https://gitlab.com/itentialopensource/adapters/adapter-git/-/blob/master/README.md?ref_type=heads",
|
|
47
43
|
"demoLinks": [],
|
|
48
44
|
"trainingLinks": [
|
|
49
45
|
{
|
|
@@ -54,7 +50,7 @@
|
|
|
54
50
|
"faqLink": "https://docs.itential.com/opensource/docs/troubleshooting-an-adapter",
|
|
55
51
|
"contributeLink": "https://gitlab.com/itentialopensource/adapters/contributing-guide",
|
|
56
52
|
"issueLink": "https://itential.atlassian.net/servicedesk/customer/portals",
|
|
57
|
-
"webLink": "",
|
|
53
|
+
"webLink": "https://www.itential.com/adapters/git/",
|
|
58
54
|
"vendorLink": "https://en.wikipedia.org/wiki/Git",
|
|
59
55
|
"productLink": "https://en.wikipedia.org/wiki/Git",
|
|
60
56
|
"apiLinks": [
|
|
@@ -75,7 +71,5 @@
|
|
|
75
71
|
"workflowProjects": [],
|
|
76
72
|
"transformationProjects": [],
|
|
77
73
|
"exampleProjects": []
|
|
78
|
-
}
|
|
79
|
-
"supportLevel": "community",
|
|
80
|
-
"techAlliance": false
|
|
74
|
+
}
|
|
81
75
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itentialopensource/adapter-git",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.8",
|
|
4
4
|
"description": "Itential adapter to run git commands",
|
|
5
5
|
"main": "adapter.js",
|
|
6
6
|
"wizardVersion": "2.44.7",
|
|
@@ -16,8 +16,7 @@
|
|
|
16
16
|
"test:integration": "mocha test/integration/adapterTestIntegration.js --LOG=error",
|
|
17
17
|
"test": "npm run test:unit && npm run test:integration",
|
|
18
18
|
"deploy": "npm publish --registry=https://registry.npmjs.org --access=public",
|
|
19
|
-
"build": "npm run deploy"
|
|
20
|
-
"postinstall": "patch-package"
|
|
19
|
+
"build": "npm run deploy"
|
|
21
20
|
},
|
|
22
21
|
"keywords": [
|
|
23
22
|
"Itential",
|
|
@@ -47,9 +46,7 @@
|
|
|
47
46
|
"fs-extra": "^11.2.0",
|
|
48
47
|
"isomorphic-git": "^1.21.0",
|
|
49
48
|
"json-query": "^2.2.2",
|
|
50
|
-
"patch-package": "^6.4.7",
|
|
51
49
|
"readline-sync": "^1.4.10",
|
|
52
|
-
"request": "^2.88.2",
|
|
53
50
|
"uuid": "^3.0.1"
|
|
54
51
|
},
|
|
55
52
|
"devDependencies": {
|
|
Binary file
|
package/compliance-report.json
DELETED
package/compliance-report.txt
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
---------------------------------------------------------------------------------------------
|
|
2
|
-
**** Project Compliance Summary ****
|
|
3
|
-
0 project(s) are not valid
|
|
4
|
-
0 project(s) are valid
|
|
5
|
-
---------------------------------------------------------------------------------------------
|