@backstage/plugin-catalog-backend-module-gitlab 0.5.0-next.2 → 0.5.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,38 @@
1
1
  # @backstage/plugin-catalog-backend-module-gitlab
2
2
 
3
+ ## 0.5.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 1b5fdd9: Extended the configuration with the `includeArchivedRepos` property, which allows including repositories when the project is archived.
8
+
9
+ ### Patch Changes
10
+
11
+ - 4e58bc7: Upgrade to uuid v11 internally
12
+ - Updated dependencies
13
+ - @backstage/config@1.3.0
14
+ - @backstage/plugin-events-node@0.4.5
15
+ - @backstage/backend-defaults@0.5.3
16
+ - @backstage/plugin-catalog-node@1.14.0
17
+ - @backstage/backend-plugin-api@1.0.2
18
+ - @backstage/catalog-model@1.7.1
19
+ - @backstage/integration@1.15.2
20
+ - @backstage/plugin-catalog-common@1.1.1
21
+
22
+ ## 0.5.0-next.3
23
+
24
+ ### Patch Changes
25
+
26
+ - Updated dependencies
27
+ - @backstage/plugin-events-node@0.4.5-next.3
28
+ - @backstage/backend-defaults@0.5.3-next.3
29
+ - @backstage/backend-plugin-api@1.0.2-next.2
30
+ - @backstage/catalog-model@1.7.0
31
+ - @backstage/config@1.2.0
32
+ - @backstage/integration@1.15.1
33
+ - @backstage/plugin-catalog-common@1.1.0
34
+ - @backstage/plugin-catalog-node@1.14.0-next.2
35
+
3
36
  ## 0.5.0-next.2
4
37
 
5
38
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-backend-module-gitlab",
3
- "version": "0.5.0-next.2",
3
+ "version": "0.5.0",
4
4
  "description": "A Backstage catalog backend module that helps integrate towards GitLab",
5
5
  "backstage": {
6
6
  "role": "backend-plugin-module",
@@ -37,10 +37,19 @@
37
37
  },
38
38
  "main": "./dist/index.cjs.js",
39
39
  "types": "./dist/index.d.ts",
40
+ "typesVersions": {
41
+ "*": {
42
+ "index": [
43
+ "dist/index.d.ts"
44
+ ],
45
+ "alpha": [
46
+ "dist/alpha.d.ts"
47
+ ]
48
+ }
49
+ },
40
50
  "files": [
41
51
  "config.d.ts",
42
- "dist",
43
- "alpha"
52
+ "dist"
44
53
  ],
45
54
  "scripts": {
46
55
  "build": "backstage-cli package build",
@@ -52,25 +61,24 @@
52
61
  "test": "backstage-cli package test"
53
62
  },
54
63
  "dependencies": {
55
- "@backstage/backend-defaults": "0.5.3-next.2",
56
- "@backstage/backend-plugin-api": "1.0.2-next.2",
57
- "@backstage/catalog-model": "1.7.0",
58
- "@backstage/config": "1.2.0",
59
- "@backstage/integration": "1.15.1",
60
- "@backstage/plugin-catalog-common": "1.1.0",
61
- "@backstage/plugin-catalog-node": "1.14.0-next.2",
62
- "@backstage/plugin-events-node": "0.4.5-next.2",
64
+ "@backstage/backend-defaults": "^0.5.3",
65
+ "@backstage/backend-plugin-api": "^1.0.2",
66
+ "@backstage/catalog-model": "^1.7.1",
67
+ "@backstage/config": "^1.3.0",
68
+ "@backstage/integration": "^1.15.2",
69
+ "@backstage/plugin-catalog-common": "^1.1.1",
70
+ "@backstage/plugin-catalog-node": "^1.14.0",
71
+ "@backstage/plugin-events-node": "^0.4.5",
63
72
  "@gitbeaker/rest": "^40.0.3",
64
73
  "lodash": "^4.17.21",
65
74
  "node-fetch": "^2.7.0",
66
- "uuid": "^9.0.0"
75
+ "uuid": "^11.0.0"
67
76
  },
68
77
  "devDependencies": {
69
- "@backstage/backend-test-utils": "1.1.0-next.2",
70
- "@backstage/cli": "0.29.0-next.2",
71
- "@backstage/plugin-events-backend-test-utils": "0.1.38-next.2",
78
+ "@backstage/backend-test-utils": "^1.1.0",
79
+ "@backstage/cli": "^0.29.0",
80
+ "@backstage/plugin-events-backend-test-utils": "^0.1.38",
72
81
  "@types/lodash": "^4.14.151",
73
- "@types/uuid": "^9.0.0",
74
82
  "luxon": "^3.0.0",
75
83
  "msw": "^1.0.0"
76
84
  },
@@ -1,6 +0,0 @@
1
- {
2
- "name": "@backstage/plugin-catalog-backend-module-gitlab__alpha",
3
- "version": "0.5.0-next.2",
4
- "main": "../dist/alpha.cjs.js",
5
- "types": "../dist/alpha.d.ts"
6
- }