@backstage/plugin-catalog-backend-module-gitlab 0.3.18-next.2 → 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 CHANGED
@@ -1,5 +1,40 @@
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
+
22
+ ## 0.3.18-next.3
23
+
24
+ ### Patch Changes
25
+
26
+ - d44a20a: Added additional plugin metadata to `package.json`.
27
+ - Updated dependencies
28
+ - @backstage/backend-plugin-api@0.6.19-next.3
29
+ - @backstage/integration@1.12.0-next.1
30
+ - @backstage/plugin-catalog-common@1.0.24-next.0
31
+ - @backstage/plugin-catalog-node@1.12.1-next.2
32
+ - @backstage/plugin-events-node@0.3.5-next.2
33
+ - @backstage/backend-tasks@0.5.24-next.3
34
+ - @backstage/backend-common@0.23.0-next.3
35
+ - @backstage/catalog-model@1.5.0
36
+ - @backstage/config@1.2.0
37
+
3
38
  ## 0.3.18-next.2
4
39
 
5
40
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-backend-module-gitlab",
3
- "version": "0.3.18-next.2",
3
+ "version": "0.3.18",
4
4
  "main": "../dist/alpha.cjs.js",
5
5
  "types": "../dist/alpha.d.ts"
6
6
  }
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: () => _backstage_backend_plugin_api.BackendFeature;
8
+ declare const catalogModuleGitlabDiscoveryEntityProvider: _backstage_backend_plugin_api.BackendFeatureCompat;
9
9
 
10
10
  export { catalogModuleGitlabDiscoveryEntityProvider as default };
package/package.json CHANGED
@@ -1,9 +1,11 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-backend-module-gitlab",
3
- "version": "0.3.18-next.2",
3
+ "version": "0.3.18",
4
4
  "description": "A Backstage catalog backend module that helps integrate towards GitLab",
5
5
  "backstage": {
6
- "role": "backend-plugin-module"
6
+ "role": "backend-plugin-module",
7
+ "pluginId": "catalog",
8
+ "pluginPackage": "@backstage/plugin-catalog-backend"
7
9
  },
8
10
  "publishConfig": {
9
11
  "access": "public"
@@ -48,24 +50,24 @@
48
50
  "test": "backstage-cli package test"
49
51
  },
50
52
  "dependencies": {
51
- "@backstage/backend-common": "^0.23.0-next.2",
52
- "@backstage/backend-plugin-api": "^0.6.19-next.2",
53
- "@backstage/backend-tasks": "^0.5.24-next.2",
53
+ "@backstage/backend-common": "^0.23.0",
54
+ "@backstage/backend-plugin-api": "^0.6.19",
55
+ "@backstage/backend-tasks": "^0.5.24",
54
56
  "@backstage/catalog-model": "^1.5.0",
55
57
  "@backstage/config": "^1.2.0",
56
- "@backstage/integration": "^1.12.0-next.0",
57
- "@backstage/plugin-catalog-common": "^1.0.23",
58
- "@backstage/plugin-catalog-node": "^1.12.1-next.1",
59
- "@backstage/plugin-events-node": "^0.3.5-next.1",
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",
60
62
  "@gitbeaker/rest": "^40.0.3",
61
63
  "lodash": "^4.17.21",
62
64
  "node-fetch": "^2.6.7",
63
65
  "uuid": "^9.0.0"
64
66
  },
65
67
  "devDependencies": {
66
- "@backstage/backend-test-utils": "^0.4.0-next.2",
67
- "@backstage/cli": "^0.26.7-next.2",
68
- "@backstage/plugin-events-backend-test-utils": "^0.1.29-next.1",
68
+ "@backstage/backend-test-utils": "^0.4.0",
69
+ "@backstage/cli": "^0.26.7",
70
+ "@backstage/plugin-events-backend-test-utils": "^0.1.29",
69
71
  "@types/lodash": "^4.14.151",
70
72
  "@types/uuid": "^9.0.0",
71
73
  "luxon": "^3.0.0",