@backstage/plugin-scaffolder-react 1.4.0-next.2 → 1.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.
- package/CHANGELOG.md +26 -0
- package/alpha/package.json +1 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-react
|
|
2
2
|
|
|
3
|
+
## 1.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 82e10a6939c: Add support for Markdown text blob outputs from templates
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- ad1a1429de4: Improvements to the `scaffolder/next` buttons UX:
|
|
12
|
+
|
|
13
|
+
- Added padding around the "Create" button in the `Stepper` component
|
|
14
|
+
- Added a button bar that includes the "Cancel" and "Start Over" buttons to the `OngoingTask` component. The state of these buttons match their existing counter parts in the Context Menu
|
|
15
|
+
- Added a "Show Button Bar"/"Hide Button Bar" item to the `ContextMenu` component
|
|
16
|
+
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
- @backstage/theme@0.3.0
|
|
19
|
+
- @backstage/plugin-catalog-react@1.6.0
|
|
20
|
+
- @backstage/plugin-scaffolder-common@1.3.0
|
|
21
|
+
- @backstage/core-components@0.13.1
|
|
22
|
+
- @backstage/catalog-client@1.4.1
|
|
23
|
+
- @backstage/catalog-model@1.3.0
|
|
24
|
+
- @backstage/core-plugin-api@1.5.1
|
|
25
|
+
- @backstage/errors@1.1.5
|
|
26
|
+
- @backstage/types@1.0.2
|
|
27
|
+
- @backstage/version-bridge@1.0.4
|
|
28
|
+
|
|
3
29
|
## 1.4.0-next.2
|
|
4
30
|
|
|
5
31
|
### Minor Changes
|
package/alpha/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder-react",
|
|
3
3
|
"description": "A frontend library that helps other Backstage plugins interact with the Scaffolder",
|
|
4
|
-
"version": "1.4.0
|
|
4
|
+
"version": "1.4.0",
|
|
5
5
|
"main": "./dist/index.esm.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -45,12 +45,12 @@
|
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"@backstage/catalog-client": "^1.4.1",
|
|
47
47
|
"@backstage/catalog-model": "^1.3.0",
|
|
48
|
-
"@backstage/core-components": "^0.13.1
|
|
48
|
+
"@backstage/core-components": "^0.13.1",
|
|
49
49
|
"@backstage/core-plugin-api": "^1.5.1",
|
|
50
50
|
"@backstage/errors": "^1.1.5",
|
|
51
|
-
"@backstage/plugin-catalog-react": "^1.6.0
|
|
52
|
-
"@backstage/plugin-scaffolder-common": "^1.3.0
|
|
53
|
-
"@backstage/theme": "^0.3.0
|
|
51
|
+
"@backstage/plugin-catalog-react": "^1.6.0",
|
|
52
|
+
"@backstage/plugin-scaffolder-common": "^1.3.0",
|
|
53
|
+
"@backstage/theme": "^0.3.0",
|
|
54
54
|
"@backstage/types": "^1.0.2",
|
|
55
55
|
"@backstage/version-bridge": "^1.0.4",
|
|
56
56
|
"@material-ui/core": "^4.12.2",
|
|
@@ -85,11 +85,11 @@
|
|
|
85
85
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
86
86
|
},
|
|
87
87
|
"devDependencies": {
|
|
88
|
-
"@backstage/cli": "^0.22.7
|
|
89
|
-
"@backstage/core-app-api": "^1.8.0
|
|
90
|
-
"@backstage/plugin-catalog": "^1.11.0
|
|
88
|
+
"@backstage/cli": "^0.22.7",
|
|
89
|
+
"@backstage/core-app-api": "^1.8.0",
|
|
90
|
+
"@backstage/plugin-catalog": "^1.11.0",
|
|
91
91
|
"@backstage/plugin-catalog-common": "^1.0.13",
|
|
92
|
-
"@backstage/test-utils": "^1.3.1
|
|
92
|
+
"@backstage/test-utils": "^1.3.1",
|
|
93
93
|
"@testing-library/dom": "^8.0.0",
|
|
94
94
|
"@testing-library/jest-dom": "^5.10.1",
|
|
95
95
|
"@testing-library/react": "^12.1.3",
|