@backstage/plugin-scaffolder 1.29.0-next.2 → 1.29.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/package.json +22 -22
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder
|
|
2
2
|
|
|
3
|
+
## 1.29.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 9d864ff: Allowed passing `ui:disabled` for disabling the input field of all the pickers.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 3db64ba: Disable the submit button on creating
|
|
12
|
+
- 6a3fa48: Fixes DryRunContext not forwarding the correct Scaffolder Secrets to the DryRun API
|
|
13
|
+
- b3b7c9c: Updated the alpha `page:scaffolder` extension to accept `formFields` input, matching the updated `FormFieldBlueprint`.
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
- @backstage/core-components@0.17.0
|
|
16
|
+
- @backstage/core-plugin-api@1.10.5
|
|
17
|
+
- @backstage/integration@1.16.2
|
|
18
|
+
- @backstage/frontend-plugin-api@0.10.0
|
|
19
|
+
- @backstage/plugin-catalog-react@1.16.0
|
|
20
|
+
- @backstage/plugin-scaffolder-react@1.14.6
|
|
21
|
+
- @backstage/core-compat-api@0.4.0
|
|
22
|
+
- @backstage/plugin-scaffolder-common@1.5.10
|
|
23
|
+
- @backstage/integration-react@1.2.5
|
|
24
|
+
- @backstage/plugin-permission-react@0.4.32
|
|
25
|
+
- @backstage/catalog-client@1.9.1
|
|
26
|
+
- @backstage/catalog-model@1.7.3
|
|
27
|
+
- @backstage/errors@1.2.7
|
|
28
|
+
- @backstage/types@1.2.1
|
|
29
|
+
- @backstage/plugin-catalog-common@1.1.3
|
|
30
|
+
|
|
3
31
|
## 1.29.0-next.2
|
|
4
32
|
|
|
5
33
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder",
|
|
3
|
-
"version": "1.29.0
|
|
3
|
+
"version": "1.29.0",
|
|
4
4
|
"description": "The Backstage plugin that helps you create new things",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -70,21 +70,21 @@
|
|
|
70
70
|
"test": "backstage-cli package test"
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
|
-
"@backstage/catalog-client": "1.9.1",
|
|
74
|
-
"@backstage/catalog-model": "1.7.3",
|
|
75
|
-
"@backstage/core-compat-api": "0.4.0
|
|
76
|
-
"@backstage/core-components": "0.
|
|
77
|
-
"@backstage/core-plugin-api": "1.10.
|
|
78
|
-
"@backstage/errors": "1.2.7",
|
|
79
|
-
"@backstage/frontend-plugin-api": "0.10.0
|
|
80
|
-
"@backstage/integration": "1.16.2
|
|
81
|
-
"@backstage/integration-react": "1.2.5
|
|
82
|
-
"@backstage/plugin-catalog-common": "1.1.3",
|
|
83
|
-
"@backstage/plugin-catalog-react": "1.16.0
|
|
84
|
-
"@backstage/plugin-permission-react": "0.4.
|
|
85
|
-
"@backstage/plugin-scaffolder-common": "1.5.10
|
|
86
|
-
"@backstage/plugin-scaffolder-react": "1.14.6
|
|
87
|
-
"@backstage/types": "1.2.1",
|
|
73
|
+
"@backstage/catalog-client": "^1.9.1",
|
|
74
|
+
"@backstage/catalog-model": "^1.7.3",
|
|
75
|
+
"@backstage/core-compat-api": "^0.4.0",
|
|
76
|
+
"@backstage/core-components": "^0.17.0",
|
|
77
|
+
"@backstage/core-plugin-api": "^1.10.5",
|
|
78
|
+
"@backstage/errors": "^1.2.7",
|
|
79
|
+
"@backstage/frontend-plugin-api": "^0.10.0",
|
|
80
|
+
"@backstage/integration": "^1.16.2",
|
|
81
|
+
"@backstage/integration-react": "^1.2.5",
|
|
82
|
+
"@backstage/plugin-catalog-common": "^1.1.3",
|
|
83
|
+
"@backstage/plugin-catalog-react": "^1.16.0",
|
|
84
|
+
"@backstage/plugin-permission-react": "^0.4.32",
|
|
85
|
+
"@backstage/plugin-scaffolder-common": "^1.5.10",
|
|
86
|
+
"@backstage/plugin-scaffolder-react": "^1.14.6",
|
|
87
|
+
"@backstage/types": "^1.2.1",
|
|
88
88
|
"@codemirror/language": "^6.0.0",
|
|
89
89
|
"@codemirror/legacy-modes": "^6.1.0",
|
|
90
90
|
"@codemirror/view": "^6.0.0",
|
|
@@ -117,12 +117,12 @@
|
|
|
117
117
|
"zod-to-json-schema": "^3.20.4"
|
|
118
118
|
},
|
|
119
119
|
"devDependencies": {
|
|
120
|
-
"@backstage/cli": "0.31.0
|
|
121
|
-
"@backstage/core-app-api": "1.16.0
|
|
122
|
-
"@backstage/dev-utils": "1.1.8
|
|
123
|
-
"@backstage/plugin-catalog": "1.28.0
|
|
124
|
-
"@backstage/plugin-permission-common": "0.8.4",
|
|
125
|
-
"@backstage/test-utils": "1.7.6
|
|
120
|
+
"@backstage/cli": "^0.31.0",
|
|
121
|
+
"@backstage/core-app-api": "^1.16.0",
|
|
122
|
+
"@backstage/dev-utils": "^1.1.8",
|
|
123
|
+
"@backstage/plugin-catalog": "^1.28.0",
|
|
124
|
+
"@backstage/plugin-permission-common": "^0.8.4",
|
|
125
|
+
"@backstage/test-utils": "^1.7.6",
|
|
126
126
|
"@testing-library/dom": "^10.0.0",
|
|
127
127
|
"@testing-library/jest-dom": "^6.0.0",
|
|
128
128
|
"@testing-library/react": "^16.0.0",
|