@backstage/plugin-catalog-backend-module-gitlab 0.3.0-next.3 → 0.3.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 +57 -0
- package/alpha/package.json +1 -1
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,62 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend-module-gitlab
|
|
2
2
|
|
|
3
|
+
## 0.3.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/backend-plugin-api@0.6.4
|
|
9
|
+
- @backstage/backend-common@0.19.6
|
|
10
|
+
- @backstage/plugin-catalog-node@1.4.5
|
|
11
|
+
- @backstage/backend-tasks@0.5.9
|
|
12
|
+
|
|
13
|
+
## 0.3.0
|
|
14
|
+
|
|
15
|
+
### Minor Changes
|
|
16
|
+
|
|
17
|
+
- 3d73bafd85c9: Fix Gitlab.com user ingestion by scoping GitlabOrgDiscoveryEntityProvider to a group.
|
|
18
|
+
|
|
19
|
+
**BREAKING** The `group` parameter is now required Gitlab.com Org Data integrations and the backend will fail to start without this option configured.
|
|
20
|
+
|
|
21
|
+
```diff
|
|
22
|
+
catalog:
|
|
23
|
+
providers:
|
|
24
|
+
gitlab:
|
|
25
|
+
yourProviderId:
|
|
26
|
+
host: gitlab.com
|
|
27
|
+
orgEnabled: true
|
|
28
|
+
+ group: org/teams
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
### Patch Changes
|
|
32
|
+
|
|
33
|
+
- 71114ac50e02: The export for the new backend system has been moved to be the `default` export.
|
|
34
|
+
|
|
35
|
+
For example, if you are currently importing the plugin using the following pattern:
|
|
36
|
+
|
|
37
|
+
```ts
|
|
38
|
+
import { examplePlugin } from '@backstage/plugin-example-backend';
|
|
39
|
+
|
|
40
|
+
backend.add(examplePlugin);
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
It should be migrated to this:
|
|
44
|
+
|
|
45
|
+
```ts
|
|
46
|
+
backend.add(import('@backstage/plugin-example-backend'));
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
- Updated dependencies
|
|
50
|
+
- @backstage/backend-tasks@0.5.8
|
|
51
|
+
- @backstage/backend-common@0.19.5
|
|
52
|
+
- @backstage/config@1.1.0
|
|
53
|
+
- @backstage/catalog-model@1.4.2
|
|
54
|
+
- @backstage/errors@1.2.2
|
|
55
|
+
- @backstage/integration@1.7.0
|
|
56
|
+
- @backstage/types@1.1.1
|
|
57
|
+
- @backstage/backend-plugin-api@0.6.3
|
|
58
|
+
- @backstage/plugin-catalog-node@1.4.4
|
|
59
|
+
|
|
3
60
|
## 0.3.0-next.3
|
|
4
61
|
|
|
5
62
|
### Minor 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.3.
|
|
4
|
+
"version": "0.3.1",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -43,23 +43,23 @@
|
|
|
43
43
|
"clean": "backstage-cli package clean"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@backstage/backend-common": "^0.19.
|
|
47
|
-
"@backstage/backend-plugin-api": "^0.6.
|
|
48
|
-
"@backstage/backend-tasks": "^0.5.
|
|
49
|
-
"@backstage/catalog-model": "^1.4.2
|
|
50
|
-
"@backstage/config": "^1.1.0
|
|
51
|
-
"@backstage/errors": "^1.2.2
|
|
52
|
-
"@backstage/integration": "^1.7.0
|
|
53
|
-
"@backstage/plugin-catalog-node": "^1.4.
|
|
54
|
-
"@backstage/types": "^1.1.1
|
|
46
|
+
"@backstage/backend-common": "^0.19.6",
|
|
47
|
+
"@backstage/backend-plugin-api": "^0.6.4",
|
|
48
|
+
"@backstage/backend-tasks": "^0.5.9",
|
|
49
|
+
"@backstage/catalog-model": "^1.4.2",
|
|
50
|
+
"@backstage/config": "^1.1.0",
|
|
51
|
+
"@backstage/errors": "^1.2.2",
|
|
52
|
+
"@backstage/integration": "^1.7.0",
|
|
53
|
+
"@backstage/plugin-catalog-node": "^1.4.5",
|
|
54
|
+
"@backstage/types": "^1.1.1",
|
|
55
55
|
"lodash": "^4.17.21",
|
|
56
56
|
"node-fetch": "^2.6.7",
|
|
57
57
|
"uuid": "^8.0.0",
|
|
58
58
|
"winston": "^3.2.1"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@backstage/backend-test-utils": "^0.2.
|
|
62
|
-
"@backstage/cli": "^0.22.13
|
|
61
|
+
"@backstage/backend-test-utils": "^0.2.5",
|
|
62
|
+
"@backstage/cli": "^0.22.13",
|
|
63
63
|
"@types/lodash": "^4.14.151",
|
|
64
64
|
"@types/uuid": "^8.0.0",
|
|
65
65
|
"luxon": "^3.0.0",
|