@backstage/plugin-catalog-backend-module-gitlab 0.3.4-next.2 → 0.3.5-next.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 +28 -0
- package/alpha/package.json +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend-module-gitlab
|
|
2
2
|
|
|
3
|
+
## 0.3.5-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/backend-common@0.20.0-next.0
|
|
9
|
+
- @backstage/backend-tasks@0.5.13-next.0
|
|
10
|
+
- @backstage/integration@1.8.0-next.0
|
|
11
|
+
- @backstage/plugin-catalog-node@1.5.1-next.0
|
|
12
|
+
- @backstage/backend-plugin-api@0.6.8-next.0
|
|
13
|
+
- @backstage/catalog-model@1.4.3
|
|
14
|
+
- @backstage/config@1.1.1
|
|
15
|
+
|
|
16
|
+
## 0.3.4
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- d732f17610: Added try catch around fetching gitlab group users to prevent refresh from failing completely while only a select number of groups might not be able to load correctly.
|
|
21
|
+
- 0873a43ac1: Resolved a bug affecting the retrieval of users from group members. By appending '/all' to the API call, we now include members from all inherited groups, as per Gitlab's API specifications. This change is reflected in the listSaaSUsers function.
|
|
22
|
+
- Updated dependencies
|
|
23
|
+
- @backstage/plugin-catalog-node@1.5.0
|
|
24
|
+
- @backstage/integration@1.7.2
|
|
25
|
+
- @backstage/backend-common@0.19.9
|
|
26
|
+
- @backstage/backend-plugin-api@0.6.7
|
|
27
|
+
- @backstage/backend-tasks@0.5.12
|
|
28
|
+
- @backstage/catalog-model@1.4.3
|
|
29
|
+
- @backstage/config@1.1.1
|
|
30
|
+
|
|
3
31
|
## 0.3.4-next.2
|
|
4
32
|
|
|
5
33
|
### Patch 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.5-next.0",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -43,21 +43,21 @@
|
|
|
43
43
|
"clean": "backstage-cli package clean"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@backstage/backend-common": "^0.
|
|
47
|
-
"@backstage/backend-plugin-api": "^0.6.
|
|
48
|
-
"@backstage/backend-tasks": "^0.5.
|
|
46
|
+
"@backstage/backend-common": "^0.20.0-next.0",
|
|
47
|
+
"@backstage/backend-plugin-api": "^0.6.8-next.0",
|
|
48
|
+
"@backstage/backend-tasks": "^0.5.13-next.0",
|
|
49
49
|
"@backstage/catalog-model": "^1.4.3",
|
|
50
50
|
"@backstage/config": "^1.1.1",
|
|
51
|
-
"@backstage/integration": "^1.
|
|
52
|
-
"@backstage/plugin-catalog-node": "^1.5.
|
|
51
|
+
"@backstage/integration": "^1.8.0-next.0",
|
|
52
|
+
"@backstage/plugin-catalog-node": "^1.5.1-next.0",
|
|
53
53
|
"lodash": "^4.17.21",
|
|
54
54
|
"node-fetch": "^2.6.7",
|
|
55
55
|
"uuid": "^8.0.0",
|
|
56
56
|
"winston": "^3.2.1"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@backstage/backend-test-utils": "^0.2.
|
|
60
|
-
"@backstage/cli": "^0.24.
|
|
59
|
+
"@backstage/backend-test-utils": "^0.2.9-next.0",
|
|
60
|
+
"@backstage/cli": "^0.24.1-next.0",
|
|
61
61
|
"@types/lodash": "^4.14.151",
|
|
62
62
|
"@types/uuid": "^8.0.0",
|
|
63
63
|
"luxon": "^3.0.0",
|