@backstage/plugin-scaffolder-backend-module-gitlab 0.7.0-next.1 → 0.7.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 +27 -0
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-backend-module-gitlab
|
|
2
2
|
|
|
3
|
+
## 0.7.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- c4ffd13: Added the autocomplete feature to GitlabRepoUrlPicker
|
|
8
|
+
- 32459d0: **BREAKING**: Upgraded the `gitbeaker` library to version 41. As part of this, the `scopes` parameter to the `gitlab:projectDeployToken:create` is no longer optional, so you will have to pass it a value (for example `['read_repository']`).
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
- @backstage/integration@1.16.0
|
|
14
|
+
- @backstage/backend-plugin-api@1.1.0
|
|
15
|
+
- @backstage/plugin-scaffolder-node@0.6.2
|
|
16
|
+
- @backstage/errors@1.2.6
|
|
17
|
+
- @backstage/config@1.3.1
|
|
18
|
+
|
|
19
|
+
## 0.7.0-next.2
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- Updated dependencies
|
|
24
|
+
- @backstage/backend-plugin-api@1.1.0-next.2
|
|
25
|
+
- @backstage/errors@1.2.6-next.0
|
|
26
|
+
- @backstage/plugin-scaffolder-node@0.6.2-next.2
|
|
27
|
+
- @backstage/config@1.3.1-next.0
|
|
28
|
+
- @backstage/integration@1.16.0-next.1
|
|
29
|
+
|
|
3
30
|
## 0.7.0-next.1
|
|
4
31
|
|
|
5
32
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder-backend-module-gitlab",
|
|
3
|
-
"version": "0.7.0
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"backstage": {
|
|
5
5
|
"role": "backend-plugin-module",
|
|
6
6
|
"pluginId": "scaffolder",
|
|
@@ -51,11 +51,11 @@
|
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"@backstage/backend-common": "^0.25.0",
|
|
54
|
-
"@backstage/backend-plugin-api": "1.1.0
|
|
55
|
-
"@backstage/config": "1.3.
|
|
56
|
-
"@backstage/errors": "1.2.
|
|
57
|
-
"@backstage/integration": "1.16.0
|
|
58
|
-
"@backstage/plugin-scaffolder-node": "0.6.2
|
|
54
|
+
"@backstage/backend-plugin-api": "^1.1.0",
|
|
55
|
+
"@backstage/config": "^1.3.1",
|
|
56
|
+
"@backstage/errors": "^1.2.6",
|
|
57
|
+
"@backstage/integration": "^1.16.0",
|
|
58
|
+
"@backstage/plugin-scaffolder-node": "^0.6.2",
|
|
59
59
|
"@gitbeaker/rest": "^41.2.0",
|
|
60
60
|
"luxon": "^3.0.0",
|
|
61
61
|
"winston": "^3.2.1",
|
|
@@ -63,9 +63,9 @@
|
|
|
63
63
|
"zod": "^3.22.4"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
|
-
"@backstage/backend-test-utils": "1.2.0
|
|
67
|
-
"@backstage/cli": "0.29.
|
|
68
|
-
"@backstage/core-app-api": "1.15.3
|
|
69
|
-
"@backstage/plugin-scaffolder-node-test-utils": "0.1.17
|
|
66
|
+
"@backstage/backend-test-utils": "^1.2.0",
|
|
67
|
+
"@backstage/cli": "^0.29.4",
|
|
68
|
+
"@backstage/core-app-api": "^1.15.3",
|
|
69
|
+
"@backstage/plugin-scaffolder-node-test-utils": "^0.1.17"
|
|
70
70
|
}
|
|
71
71
|
}
|