@backstage/plugin-catalog-backend-module-gitlab 0.3.18-next.3 → 0.3.18
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 +19 -0
- package/alpha/package.json +1 -1
- package/dist/alpha.d.ts +1 -1
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend-module-gitlab
|
|
2
2
|
|
|
3
|
+
## 0.3.18
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 78a0b08: Internal refactor to handle `BackendFeature` contract change.
|
|
8
|
+
- d44a20a: Added additional plugin metadata to `package.json`.
|
|
9
|
+
- 150fc77: Fixed an issue in `GitlabOrgDiscoveryEntityProvider` where a missing `orgEnabled` config key was throwing an error.
|
|
10
|
+
- f271164: Fixed an issue in `GitlabDiscoveryEntityProvider` where the fallback branch was taking precedence over the GitLab default branch.
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @backstage/backend-common@0.23.0
|
|
13
|
+
- @backstage/backend-plugin-api@0.6.19
|
|
14
|
+
- @backstage/backend-tasks@0.5.24
|
|
15
|
+
- @backstage/integration@1.12.0
|
|
16
|
+
- @backstage/plugin-catalog-node@1.12.1
|
|
17
|
+
- @backstage/plugin-events-node@0.3.5
|
|
18
|
+
- @backstage/plugin-catalog-common@1.0.24
|
|
19
|
+
- @backstage/catalog-model@1.5.0
|
|
20
|
+
- @backstage/config@1.2.0
|
|
21
|
+
|
|
3
22
|
## 0.3.18-next.3
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/dist/alpha.d.ts
CHANGED
|
@@ -5,6 +5,6 @@ import * as _backstage_backend_plugin_api from '@backstage/backend-plugin-api';
|
|
|
5
5
|
*
|
|
6
6
|
* @alpha
|
|
7
7
|
*/
|
|
8
|
-
declare const catalogModuleGitlabDiscoveryEntityProvider:
|
|
8
|
+
declare const catalogModuleGitlabDiscoveryEntityProvider: _backstage_backend_plugin_api.BackendFeatureCompat;
|
|
9
9
|
|
|
10
10
|
export { catalogModuleGitlabDiscoveryEntityProvider as default };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-backend-module-gitlab",
|
|
3
|
-
"version": "0.3.18
|
|
3
|
+
"version": "0.3.18",
|
|
4
4
|
"description": "A Backstage catalog backend module that helps integrate towards GitLab",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
@@ -50,24 +50,24 @@
|
|
|
50
50
|
"test": "backstage-cli package test"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@backstage/backend-common": "^0.23.0
|
|
54
|
-
"@backstage/backend-plugin-api": "^0.6.19
|
|
55
|
-
"@backstage/backend-tasks": "^0.5.24
|
|
53
|
+
"@backstage/backend-common": "^0.23.0",
|
|
54
|
+
"@backstage/backend-plugin-api": "^0.6.19",
|
|
55
|
+
"@backstage/backend-tasks": "^0.5.24",
|
|
56
56
|
"@backstage/catalog-model": "^1.5.0",
|
|
57
57
|
"@backstage/config": "^1.2.0",
|
|
58
|
-
"@backstage/integration": "^1.12.0
|
|
59
|
-
"@backstage/plugin-catalog-common": "^1.0.24
|
|
60
|
-
"@backstage/plugin-catalog-node": "^1.12.1
|
|
61
|
-
"@backstage/plugin-events-node": "^0.3.5
|
|
58
|
+
"@backstage/integration": "^1.12.0",
|
|
59
|
+
"@backstage/plugin-catalog-common": "^1.0.24",
|
|
60
|
+
"@backstage/plugin-catalog-node": "^1.12.1",
|
|
61
|
+
"@backstage/plugin-events-node": "^0.3.5",
|
|
62
62
|
"@gitbeaker/rest": "^40.0.3",
|
|
63
63
|
"lodash": "^4.17.21",
|
|
64
64
|
"node-fetch": "^2.6.7",
|
|
65
65
|
"uuid": "^9.0.0"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
|
-
"@backstage/backend-test-utils": "^0.4.0
|
|
69
|
-
"@backstage/cli": "^0.26.7
|
|
70
|
-
"@backstage/plugin-events-backend-test-utils": "^0.1.29
|
|
68
|
+
"@backstage/backend-test-utils": "^0.4.0",
|
|
69
|
+
"@backstage/cli": "^0.26.7",
|
|
70
|
+
"@backstage/plugin-events-backend-test-utils": "^0.1.29",
|
|
71
71
|
"@types/lodash": "^4.14.151",
|
|
72
72
|
"@types/uuid": "^9.0.0",
|
|
73
73
|
"luxon": "^3.0.0",
|