@backstage/plugin-auth-backend-module-gitlab-provider 0.4.0-next.0 → 0.4.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # @backstage/plugin-auth-backend-module-gitlab-provider
2
2
 
3
+ ## 0.4.0
4
+
5
+ ### Minor Changes
6
+
7
+ - ff07934: Added the `{gitlab-integration-host}/user-id` annotation to store GitLab's user ID (immutable) in user entities. Also includes addition of the `userIdMatchingUserEntityAnnotation` sign-in resolver that matches users by the new ID.
8
+
9
+ ### Patch Changes
10
+
11
+ - 69d880e: Bump to latest zod to ensure it has the latest features
12
+ - Updated dependencies
13
+ - @backstage/backend-plugin-api@1.7.0
14
+ - @backstage/plugin-auth-node@0.6.13
15
+
3
16
  ## 0.4.0-next.0
4
17
 
5
18
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-auth-backend-module-gitlab-provider",
3
- "version": "0.4.0-next.0",
3
+ "version": "0.4.0",
4
4
  "description": "The gitlab-provider backend module for the auth plugin.",
5
5
  "backstage": {
6
6
  "role": "backend-plugin-module",
@@ -37,19 +37,19 @@
37
37
  "test": "backstage-cli package test"
38
38
  },
39
39
  "dependencies": {
40
- "@backstage/backend-plugin-api": "1.7.0-next.0",
41
- "@backstage/plugin-auth-node": "0.6.12-next.0",
40
+ "@backstage/backend-plugin-api": "^1.7.0",
41
+ "@backstage/plugin-auth-node": "^0.6.13",
42
42
  "express": "^4.22.0",
43
43
  "passport": "^0.7.0",
44
44
  "passport-gitlab2": "^5.0.0",
45
45
  "zod": "^3.25.76"
46
46
  },
47
47
  "devDependencies": {
48
- "@backstage/backend-defaults": "0.15.1-next.0",
49
- "@backstage/backend-test-utils": "1.10.4-next.0",
50
- "@backstage/cli": "0.35.3-next.0",
51
- "@backstage/plugin-auth-backend": "0.26.1-next.0",
52
- "@backstage/types": "1.2.2",
48
+ "@backstage/backend-defaults": "^0.15.2",
49
+ "@backstage/backend-test-utils": "^1.11.0",
50
+ "@backstage/cli": "^0.35.4",
51
+ "@backstage/plugin-auth-backend": "^0.27.0",
52
+ "@backstage/types": "^1.2.2",
53
53
  "supertest": "^7.0.0"
54
54
  },
55
55
  "configSchema": "config.d.ts",