@backstage/plugin-catalog-backend-module-gitlab 0.1.9-next.1 → 0.1.9
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/package.json +15 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend-module-gitlab
|
|
2
2
|
|
|
3
|
+
## 0.1.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 6bb046bcbe: Add `gitlabDiscoveryEntityProviderCatalogModule` (new backend-plugin-api, alpha).
|
|
8
|
+
- 81cedb5033: `GitlabDiscoveryEntityProvider`: Add option to configure schedule via `app-config.yaml` instead of in code.
|
|
9
|
+
|
|
10
|
+
Please find how to configure the schedule at the config at
|
|
11
|
+
https://backstage.io/docs/integrations/gitlab/discovery
|
|
12
|
+
|
|
13
|
+
- 4c9f7847e4: Updated dependency `msw` to `^0.48.0` while moving it to be a dev dependency.
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
- @backstage/backend-common@0.16.0
|
|
16
|
+
- @backstage/plugin-catalog-backend@1.5.1
|
|
17
|
+
- @backstage/integration@1.4.0
|
|
18
|
+
- @backstage/backend-tasks@0.3.7
|
|
19
|
+
- @backstage/catalog-model@1.1.3
|
|
20
|
+
- @backstage/types@1.0.1
|
|
21
|
+
- @backstage/backend-plugin-api@0.1.4
|
|
22
|
+
- @backstage/plugin-catalog-node@1.2.1
|
|
23
|
+
- @backstage/config@1.0.4
|
|
24
|
+
- @backstage/errors@1.1.3
|
|
25
|
+
|
|
3
26
|
## 0.1.9-next.1
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-backend-module-gitlab",
|
|
3
3
|
"description": "A Backstage catalog backend module that helps integrate towards GitLab",
|
|
4
|
-
"version": "0.1.9
|
|
4
|
+
"version": "0.1.9",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -33,28 +33,28 @@
|
|
|
33
33
|
"clean": "backstage-cli package clean"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@backstage/backend-common": "^0.16.0
|
|
37
|
-
"@backstage/backend-plugin-api": "^0.1.4
|
|
38
|
-
"@backstage/backend-tasks": "^0.3.7
|
|
39
|
-
"@backstage/catalog-model": "^1.1.3
|
|
40
|
-
"@backstage/config": "^1.0.4
|
|
41
|
-
"@backstage/errors": "^1.1.3
|
|
42
|
-
"@backstage/integration": "^1.4.0
|
|
43
|
-
"@backstage/plugin-catalog-backend": "^1.5.1
|
|
44
|
-
"@backstage/plugin-catalog-node": "^1.2.1
|
|
45
|
-
"@backstage/types": "^1.0.1
|
|
36
|
+
"@backstage/backend-common": "^0.16.0",
|
|
37
|
+
"@backstage/backend-plugin-api": "^0.1.4",
|
|
38
|
+
"@backstage/backend-tasks": "^0.3.7",
|
|
39
|
+
"@backstage/catalog-model": "^1.1.3",
|
|
40
|
+
"@backstage/config": "^1.0.4",
|
|
41
|
+
"@backstage/errors": "^1.1.3",
|
|
42
|
+
"@backstage/integration": "^1.4.0",
|
|
43
|
+
"@backstage/plugin-catalog-backend": "^1.5.1",
|
|
44
|
+
"@backstage/plugin-catalog-node": "^1.2.1",
|
|
45
|
+
"@backstage/types": "^1.0.1",
|
|
46
46
|
"lodash": "^4.17.21",
|
|
47
|
-
"msw": "^0.47.0",
|
|
48
47
|
"node-fetch": "^2.6.7",
|
|
49
48
|
"uuid": "^8.0.0",
|
|
50
49
|
"winston": "^3.2.1"
|
|
51
50
|
},
|
|
52
51
|
"devDependencies": {
|
|
53
|
-
"@backstage/backend-test-utils": "^0.1.30
|
|
54
|
-
"@backstage/cli": "^0.21.0
|
|
52
|
+
"@backstage/backend-test-utils": "^0.1.30",
|
|
53
|
+
"@backstage/cli": "^0.21.0",
|
|
55
54
|
"@types/lodash": "^4.14.151",
|
|
56
55
|
"@types/uuid": "^8.0.0",
|
|
57
|
-
"luxon": "^3.0.0"
|
|
56
|
+
"luxon": "^3.0.0",
|
|
57
|
+
"msw": "^0.48.0"
|
|
58
58
|
},
|
|
59
59
|
"files": [
|
|
60
60
|
"alpha",
|