@backstage/plugin-catalog-backend-module-gerrit 0.2.2 → 0.2.3-next.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 +23 -0
- package/alpha/package.json +1 -1
- package/config.d.ts +6 -0
- package/package.json +9 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend-module-gerrit
|
|
2
2
|
|
|
3
|
+
## 0.2.3-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 5b6edf1: Fixed an issue preventing the provider's `schedule` config from being applied."
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/integration@1.15.1-next.0
|
|
10
|
+
- @backstage/backend-plugin-api@1.0.1-next.0
|
|
11
|
+
- @backstage/config@1.2.0
|
|
12
|
+
- @backstage/errors@1.2.4
|
|
13
|
+
- @backstage/plugin-catalog-node@1.13.1-next.0
|
|
14
|
+
|
|
15
|
+
## 0.2.3-next.0
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
- @backstage/backend-plugin-api@1.0.1-next.0
|
|
21
|
+
- @backstage/config@1.2.0
|
|
22
|
+
- @backstage/errors@1.2.4
|
|
23
|
+
- @backstage/integration@1.15.0
|
|
24
|
+
- @backstage/plugin-catalog-node@1.13.1-next.0
|
|
25
|
+
|
|
3
26
|
## 0.2.2
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/config.d.ts
CHANGED
|
@@ -14,6 +14,8 @@
|
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
16
|
|
|
17
|
+
import { SchedulerServiceTaskScheduleDefinition } from '@backstage/backend-plugin-api';
|
|
18
|
+
|
|
17
19
|
export interface Config {
|
|
18
20
|
catalog?: {
|
|
19
21
|
/**
|
|
@@ -41,6 +43,10 @@ export interface Config {
|
|
|
41
43
|
* The branch where the provider will try to find entities. Defaults to "master".
|
|
42
44
|
*/
|
|
43
45
|
branch?: string;
|
|
46
|
+
/**
|
|
47
|
+
* (Optional) TaskScheduleDefinition for the discovery.
|
|
48
|
+
*/
|
|
49
|
+
schedule?: SchedulerServiceTaskScheduleDefinition;
|
|
44
50
|
};
|
|
45
51
|
};
|
|
46
52
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-backend-module-gerrit",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3-next.1",
|
|
4
4
|
"backstage": {
|
|
5
5
|
"role": "backend-plugin-module",
|
|
6
6
|
"pluginId": "catalog",
|
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
"default": "./dist/index.cjs.js"
|
|
24
24
|
},
|
|
25
25
|
"./alpha": {
|
|
26
|
+
"backstage": "@backstage/BackendFeature",
|
|
26
27
|
"require": "./dist/alpha.cjs.js",
|
|
27
28
|
"types": "./dist/alpha.d.ts",
|
|
28
29
|
"default": "./dist/alpha.cjs.js"
|
|
@@ -46,18 +47,18 @@
|
|
|
46
47
|
"test": "backstage-cli package test"
|
|
47
48
|
},
|
|
48
49
|
"dependencies": {
|
|
49
|
-
"@backstage/backend-plugin-api": "
|
|
50
|
-
"@backstage/config": "
|
|
51
|
-
"@backstage/errors": "
|
|
52
|
-
"@backstage/integration": "
|
|
53
|
-
"@backstage/plugin-catalog-node": "
|
|
50
|
+
"@backstage/backend-plugin-api": "1.0.1-next.0",
|
|
51
|
+
"@backstage/config": "1.2.0",
|
|
52
|
+
"@backstage/errors": "1.2.4",
|
|
53
|
+
"@backstage/integration": "1.15.1-next.0",
|
|
54
|
+
"@backstage/plugin-catalog-node": "1.13.1-next.0",
|
|
54
55
|
"fs-extra": "^11.2.0",
|
|
55
56
|
"node-fetch": "^2.7.0",
|
|
56
57
|
"uuid": "^9.0.0"
|
|
57
58
|
},
|
|
58
59
|
"devDependencies": {
|
|
59
|
-
"@backstage/backend-test-utils": "
|
|
60
|
-
"@backstage/cli": "
|
|
60
|
+
"@backstage/backend-test-utils": "1.0.1-next.1",
|
|
61
|
+
"@backstage/cli": "0.28.0-next.1",
|
|
61
62
|
"@types/fs-extra": "^11.0.0",
|
|
62
63
|
"luxon": "^3.0.0",
|
|
63
64
|
"msw": "^1.0.0"
|