@backstage/plugin-catalog-backend-module-gerrit 0.1.0 → 0.1.1-next.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 +33 -0
- package/config.d.ts +22 -21
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,38 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend-module-gerrit
|
|
2
2
|
|
|
3
|
+
## 0.1.1-next.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/backend-common@0.14.0-next.2
|
|
9
|
+
- @backstage/integration@1.2.1-next.2
|
|
10
|
+
- @backstage/backend-tasks@0.3.2-next.2
|
|
11
|
+
- @backstage/plugin-catalog-backend@1.2.0-next.2
|
|
12
|
+
|
|
13
|
+
## 0.1.1-next.1
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- 8f7b1835df: Updated dependency `msw` to `^0.41.0`.
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
- @backstage/backend-tasks@0.3.2-next.1
|
|
20
|
+
- @backstage/backend-common@0.13.6-next.1
|
|
21
|
+
- @backstage/integration@1.2.1-next.1
|
|
22
|
+
- @backstage/plugin-catalog-backend@1.2.0-next.1
|
|
23
|
+
- @backstage/catalog-model@1.0.3-next.0
|
|
24
|
+
|
|
25
|
+
## 0.1.1-next.0
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- eb2544b21b: Inline config interfaces
|
|
30
|
+
- Updated dependencies
|
|
31
|
+
- @backstage/backend-tasks@0.3.2-next.0
|
|
32
|
+
- @backstage/backend-common@0.13.6-next.0
|
|
33
|
+
- @backstage/integration@1.2.1-next.0
|
|
34
|
+
- @backstage/plugin-catalog-backend@1.2.0-next.0
|
|
35
|
+
|
|
3
36
|
## 0.1.0
|
|
4
37
|
|
|
5
38
|
### Minor Changes
|
package/config.d.ts
CHANGED
|
@@ -14,26 +14,6 @@
|
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
16
|
|
|
17
|
-
interface GerritConfig {
|
|
18
|
-
/**
|
|
19
|
-
* (Required) The host of the Gerrit integration to use.
|
|
20
|
-
* @visibility backend
|
|
21
|
-
*/
|
|
22
|
-
host: string;
|
|
23
|
-
/**
|
|
24
|
-
* (Required) The query to use for the "List Projects" API call. Used to limit the
|
|
25
|
-
* scope of the projects that the provider tries to ingest.
|
|
26
|
-
* @visibility backend
|
|
27
|
-
*/
|
|
28
|
-
query: string;
|
|
29
|
-
/**
|
|
30
|
-
* (Optional) Branch.
|
|
31
|
-
* The branch where the provider will try to find entities. Defaults to "master".
|
|
32
|
-
* @visibility backend
|
|
33
|
-
*/
|
|
34
|
-
branch?: string;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
17
|
export interface Config {
|
|
38
18
|
catalog?: {
|
|
39
19
|
/**
|
|
@@ -45,7 +25,28 @@ export interface Config {
|
|
|
45
25
|
*
|
|
46
26
|
* Maps provider id with configuration.
|
|
47
27
|
*/
|
|
48
|
-
gerrit?: Record<
|
|
28
|
+
gerrit?: Record<
|
|
29
|
+
string,
|
|
30
|
+
{
|
|
31
|
+
/**
|
|
32
|
+
* (Required) The host of the Gerrit integration to use.
|
|
33
|
+
* @visibility backend
|
|
34
|
+
*/
|
|
35
|
+
host: string;
|
|
36
|
+
/**
|
|
37
|
+
* (Required) The query to use for the "List Projects" API call. Used to limit the
|
|
38
|
+
* scope of the projects that the provider tries to ingest.
|
|
39
|
+
* @visibility backend
|
|
40
|
+
*/
|
|
41
|
+
query: string;
|
|
42
|
+
/**
|
|
43
|
+
* (Optional) Branch.
|
|
44
|
+
* The branch where the provider will try to find entities. Defaults to "master".
|
|
45
|
+
* @visibility backend
|
|
46
|
+
*/
|
|
47
|
+
branch?: string;
|
|
48
|
+
}
|
|
49
|
+
>;
|
|
49
50
|
};
|
|
50
51
|
};
|
|
51
52
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-backend-module-gerrit",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1-next.2",
|
|
4
4
|
"main": "dist/index.cjs.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -28,22 +28,22 @@
|
|
|
28
28
|
"postpack": "backstage-cli package postpack"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@backstage/backend-common": "^0.
|
|
32
|
-
"@backstage/backend-tasks": "^0.3.
|
|
33
|
-
"@backstage/catalog-model": "^1.0.
|
|
31
|
+
"@backstage/backend-common": "^0.14.0-next.2",
|
|
32
|
+
"@backstage/backend-tasks": "^0.3.2-next.2",
|
|
33
|
+
"@backstage/catalog-model": "^1.0.3-next.0",
|
|
34
34
|
"@backstage/config": "^1.0.1",
|
|
35
35
|
"@backstage/errors": "^1.0.0",
|
|
36
|
-
"@backstage/integration": "^1.2.
|
|
37
|
-
"@backstage/plugin-catalog-backend": "^1.
|
|
36
|
+
"@backstage/integration": "^1.2.1-next.2",
|
|
37
|
+
"@backstage/plugin-catalog-backend": "^1.2.0-next.2",
|
|
38
38
|
"fs-extra": "10.1.0",
|
|
39
|
-
"msw": "^0.
|
|
39
|
+
"msw": "^0.42.0",
|
|
40
40
|
"node-fetch": "^2.6.7",
|
|
41
41
|
"uuid": "^8.0.0",
|
|
42
42
|
"winston": "^3.2.1"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@backstage/backend-test-utils": "^0.1.
|
|
46
|
-
"@backstage/cli": "^0.17.
|
|
45
|
+
"@backstage/backend-test-utils": "^0.1.25-next.2",
|
|
46
|
+
"@backstage/cli": "^0.17.2-next.2",
|
|
47
47
|
"@types/fs-extra": "^9.0.1"
|
|
48
48
|
},
|
|
49
49
|
"files": [
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"config.d.ts"
|
|
52
52
|
],
|
|
53
53
|
"configSchema": "config.d.ts",
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "afc672d59763a835574e6c47819107d22cfd1ad7"
|
|
55
55
|
}
|