@backstage/plugin-catalog-backend-module-gitlab 0.1.11-next.2 → 0.1.11
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 +18 -0
- package/alpha/package.json +1 -1
- package/dist/index.alpha.d.ts +1 -1
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend-module-gitlab
|
|
2
2
|
|
|
3
|
+
## 0.1.11
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 9f2b786fc9: Provide context for logged errors.
|
|
8
|
+
- 8e06f3cf00: Switched imports of `loggerToWinstonLogger` to `@backstage/backend-common`.
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
- @backstage/backend-plugin-api@0.3.0
|
|
11
|
+
- @backstage/backend-common@0.18.0
|
|
12
|
+
- @backstage/catalog-model@1.1.5
|
|
13
|
+
- @backstage/backend-tasks@0.4.1
|
|
14
|
+
- @backstage/plugin-catalog-node@1.3.1
|
|
15
|
+
- @backstage/plugin-catalog-backend@1.7.0
|
|
16
|
+
- @backstage/config@1.0.6
|
|
17
|
+
- @backstage/errors@1.1.4
|
|
18
|
+
- @backstage/integration@1.4.2
|
|
19
|
+
- @backstage/types@1.0.2
|
|
20
|
+
|
|
3
21
|
## 0.1.11-next.2
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/dist/index.alpha.d.ts
CHANGED
|
@@ -43,7 +43,7 @@ export declare class GitlabDiscoveryEntityProvider implements EntityProvider {
|
|
|
43
43
|
*
|
|
44
44
|
* @alpha
|
|
45
45
|
*/
|
|
46
|
-
export declare const gitlabDiscoveryEntityProviderCatalogModule: (
|
|
46
|
+
export declare const gitlabDiscoveryEntityProviderCatalogModule: () => BackendFeature;
|
|
47
47
|
|
|
48
48
|
/**
|
|
49
49
|
* Extracts repositories out of an GitLab instance.
|
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.11
|
|
4
|
+
"version": "0.1.11",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -33,15 +33,15 @@
|
|
|
33
33
|
"clean": "backstage-cli package clean"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@backstage/backend-common": "^0.18.0
|
|
37
|
-
"@backstage/backend-plugin-api": "^0.3.0
|
|
38
|
-
"@backstage/backend-tasks": "^0.4.1
|
|
39
|
-
"@backstage/catalog-model": "^1.1.5
|
|
40
|
-
"@backstage/config": "^1.0.6
|
|
36
|
+
"@backstage/backend-common": "^0.18.0",
|
|
37
|
+
"@backstage/backend-plugin-api": "^0.3.0",
|
|
38
|
+
"@backstage/backend-tasks": "^0.4.1",
|
|
39
|
+
"@backstage/catalog-model": "^1.1.5",
|
|
40
|
+
"@backstage/config": "^1.0.6",
|
|
41
41
|
"@backstage/errors": "^1.1.4",
|
|
42
|
-
"@backstage/integration": "^1.4.2
|
|
43
|
-
"@backstage/plugin-catalog-backend": "^1.7.0
|
|
44
|
-
"@backstage/plugin-catalog-node": "^1.3.1
|
|
42
|
+
"@backstage/integration": "^1.4.2",
|
|
43
|
+
"@backstage/plugin-catalog-backend": "^1.7.0",
|
|
44
|
+
"@backstage/plugin-catalog-node": "^1.3.1",
|
|
45
45
|
"@backstage/types": "^1.0.2",
|
|
46
46
|
"lodash": "^4.17.21",
|
|
47
47
|
"node-fetch": "^2.6.7",
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
"winston": "^3.2.1"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@backstage/backend-test-utils": "^0.1.32
|
|
53
|
-
"@backstage/cli": "^0.22.1
|
|
52
|
+
"@backstage/backend-test-utils": "^0.1.32",
|
|
53
|
+
"@backstage/cli": "^0.22.1",
|
|
54
54
|
"@types/lodash": "^4.14.151",
|
|
55
55
|
"@types/uuid": "^8.0.0",
|
|
56
56
|
"luxon": "^3.0.0",
|