@backstage/plugin-catalog-backend-module-gitlab 0.3.3-next.2 → 0.3.3

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,37 @@
1
1
  # @backstage/plugin-catalog-backend-module-gitlab
2
2
 
3
+ ## 0.3.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 4f70fdfc93: fix: use REST API to get root group memberships for GitLab SaaS users listing
8
+
9
+ This API is the only one that shows `email` field for enterprise users and
10
+ allows to filter out bot users not using a license using the `is_using_seat`
11
+ field.
12
+
13
+ We also added the annotation `gitlab.com/saml-external-uid` taking the value
14
+ of `group_saml_identity.extern_uid` of the `groups/:group-id/members` endpoint
15
+ response. This is useful in case you want to create a `SignInResolver` that
16
+ references the user with the id of your identity provider (e.g. OneLogin).
17
+
18
+ ref:
19
+
20
+ https://docs.gitlab.com/ee/user/enterprise_user/#get-users-email-addresses-through-the-api
21
+ https://docs.gitlab.com/ee/api/members.html#limitations
22
+
23
+ - 890e3b5ad4: Make sure to include the error message when ingestion fails
24
+ - 0b55f773a7: Removed some unused dependencies
25
+ - 6ae7f12abb: Make sure the archived projects are skipped with the Gitlab API
26
+ - Updated dependencies
27
+ - @backstage/backend-tasks@0.5.11
28
+ - @backstage/backend-common@0.19.8
29
+ - @backstage/integration@1.7.1
30
+ - @backstage/plugin-catalog-node@1.4.7
31
+ - @backstage/catalog-model@1.4.3
32
+ - @backstage/backend-plugin-api@0.6.6
33
+ - @backstage/config@1.1.1
34
+
3
35
  ## 0.3.3-next.2
4
36
 
5
37
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-backend-module-gitlab",
3
- "version": "0.3.3-next.2",
3
+ "version": "0.3.3",
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.3-next.2",
4
+ "version": "0.3.3",
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.19.8-next.2",
47
- "@backstage/backend-plugin-api": "^0.6.6-next.2",
48
- "@backstage/backend-tasks": "^0.5.11-next.2",
49
- "@backstage/catalog-model": "^1.4.3-next.0",
50
- "@backstage/config": "^1.1.1-next.0",
51
- "@backstage/integration": "^1.7.1-next.1",
52
- "@backstage/plugin-catalog-node": "^1.4.7-next.2",
46
+ "@backstage/backend-common": "^0.19.8",
47
+ "@backstage/backend-plugin-api": "^0.6.6",
48
+ "@backstage/backend-tasks": "^0.5.11",
49
+ "@backstage/catalog-model": "^1.4.3",
50
+ "@backstage/config": "^1.1.1",
51
+ "@backstage/integration": "^1.7.1",
52
+ "@backstage/plugin-catalog-node": "^1.4.7",
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.7-next.2",
60
- "@backstage/cli": "^0.23.0-next.2",
59
+ "@backstage/backend-test-utils": "^0.2.7",
60
+ "@backstage/cli": "^0.23.0",
61
61
  "@types/lodash": "^4.14.151",
62
62
  "@types/uuid": "^8.0.0",
63
63
  "luxon": "^3.0.0",