@backstage/plugin-catalog-backend-module-gitlab 0.3.0-next.3 → 0.3.0

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