@backstage/plugin-scaffolder-backend-module-gitlab 0.11.3-next.2 → 0.11.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @backstage/plugin-scaffolder-backend-module-gitlab
2
2
 
3
+ ## 0.11.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 6b5e7d9: Allow setting optional description on group creation
8
+ - 7455dae: Use node prefix on native imports
9
+ - f0f9403: Changed `gitlab:group:ensureExists` action to use `Groups.show` API instead of `Groups.search` for checking if a group path exists. This is more efficient as it directly retrieves the group by path rather than searching and filtering results.
10
+ - 32c51c0: Added new `gitlab:user:info` scaffolder action that retrieves information about a GitLab user. The action can fetch either the current authenticated user or a specific user by ID.
11
+ - 69d880e: Bump to latest zod to ensure it has the latest features
12
+ - Updated dependencies
13
+ - @backstage/integration@1.20.0
14
+ - @backstage/backend-plugin-api@1.7.0
15
+ - @backstage/plugin-scaffolder-node@0.12.5
16
+
3
17
  ## 0.11.3-next.2
4
18
 
5
19
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-scaffolder-backend-module-gitlab",
3
- "version": "0.11.3-next.2",
3
+ "version": "0.11.3",
4
4
  "backstage": {
5
5
  "role": "backend-plugin-module",
6
6
  "pluginId": "scaffolder",
@@ -53,11 +53,11 @@
53
53
  "test": "backstage-cli package test"
54
54
  },
55
55
  "dependencies": {
56
- "@backstage/backend-plugin-api": "1.7.0-next.1",
57
- "@backstage/config": "1.3.6",
58
- "@backstage/errors": "1.2.7",
59
- "@backstage/integration": "1.20.0-next.2",
60
- "@backstage/plugin-scaffolder-node": "0.12.5-next.1",
56
+ "@backstage/backend-plugin-api": "^1.7.0",
57
+ "@backstage/config": "^1.3.6",
58
+ "@backstage/errors": "^1.2.7",
59
+ "@backstage/integration": "^1.20.0",
60
+ "@backstage/plugin-scaffolder-node": "^0.12.5",
61
61
  "@gitbeaker/requester-utils": "^41.2.0",
62
62
  "@gitbeaker/rest": "^41.2.0",
63
63
  "luxon": "^3.0.0",
@@ -65,8 +65,8 @@
65
65
  "zod": "^3.25.76"
66
66
  },
67
67
  "devDependencies": {
68
- "@backstage/backend-test-utils": "1.11.0-next.1",
69
- "@backstage/cli": "0.35.4-next.2",
70
- "@backstage/plugin-scaffolder-node-test-utils": "0.3.8-next.1"
68
+ "@backstage/backend-test-utils": "^1.11.0",
69
+ "@backstage/cli": "^0.35.4",
70
+ "@backstage/plugin-scaffolder-node-test-utils": "^0.3.8"
71
71
  }
72
72
  }