@backstage/plugin-scaffolder 1.18.0-next.1 → 1.18.0-next.2
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/README.md +1 -1
- package/alpha/package.json +1 -1
- package/dist/alpha.esm.js +1 -1
- package/dist/esm/{index-7840abd4.esm.js → index-72b0a968.esm.js} +3 -2
- package/dist/esm/index-72b0a968.esm.js.map +1 -0
- package/dist/index.esm.js +1 -1
- package/package.json +15 -15
- package/dist/esm/index-7840abd4.esm.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder
|
|
2
2
|
|
|
3
|
+
## 1.18.0-next.2
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 7f11009: Added stack trace display to `ErrorPage` and updated existing refs
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 9aac2b0: Use `--cwd` as the first `yarn` argument
|
|
12
|
+
- 8fe56a8: Widen `@types/react` dependency range to include version 18.
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
- @backstage/core-components@0.14.0-next.1
|
|
15
|
+
- @backstage/core-plugin-api@1.9.0-next.1
|
|
16
|
+
- @backstage/frontend-plugin-api@0.6.0-next.2
|
|
17
|
+
- @backstage/plugin-catalog-react@1.10.0-next.2
|
|
18
|
+
- @backstage/plugin-permission-react@0.4.20-next.1
|
|
19
|
+
- @backstage/plugin-scaffolder-react@1.8.0-next.2
|
|
20
|
+
- @backstage/integration-react@1.1.24-next.1
|
|
21
|
+
- @backstage/core-compat-api@0.2.0-next.2
|
|
22
|
+
- @backstage/catalog-client@1.6.0-next.1
|
|
23
|
+
- @backstage/catalog-model@1.4.4-next.0
|
|
24
|
+
- @backstage/errors@1.2.3
|
|
25
|
+
- @backstage/integration@1.9.0-next.0
|
|
26
|
+
- @backstage/types@1.1.1
|
|
27
|
+
- @backstage/plugin-catalog-common@1.0.21-next.0
|
|
28
|
+
- @backstage/plugin-scaffolder-common@1.5.0-next.1
|
|
29
|
+
|
|
3
30
|
## 1.18.0-next.1
|
|
4
31
|
|
|
5
32
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ the plugin, if you previously removed it.
|
|
|
20
20
|
|
|
21
21
|
```bash
|
|
22
22
|
# From your Backstage root directory
|
|
23
|
-
yarn
|
|
23
|
+
yarn --cwd packages/app add @backstage/plugin-scaffolder
|
|
24
24
|
```
|
|
25
25
|
|
|
26
26
|
### Add the plugin to your `packages/app`
|
package/alpha/package.json
CHANGED
package/dist/alpha.esm.js
CHANGED
|
@@ -32,7 +32,7 @@ const scaffolderApi = createApiExtension({
|
|
|
32
32
|
const scaffolderPage = createPageExtension({
|
|
33
33
|
routeRef: convertLegacyRouteRef(rootRouteRef),
|
|
34
34
|
defaultPath: "/create",
|
|
35
|
-
loader: () => import('./esm/index-
|
|
35
|
+
loader: () => import('./esm/index-72b0a968.esm.js').then((m) => compatWrapper(/* @__PURE__ */ React.createElement(m.Router, null)))
|
|
36
36
|
});
|
|
37
37
|
const scaffolderNavItem = createNavItemExtension({
|
|
38
38
|
routeRef: convertLegacyRouteRef(rootRouteRef),
|
|
@@ -236,7 +236,8 @@ const ActionsPage = () => {
|
|
|
236
236
|
ErrorPage,
|
|
237
237
|
{
|
|
238
238
|
statusMessage: "Failed to load installed actions",
|
|
239
|
-
status: "500"
|
|
239
|
+
status: "500",
|
|
240
|
+
stack: error.stack
|
|
240
241
|
}
|
|
241
242
|
);
|
|
242
243
|
}
|
|
@@ -2477,4 +2478,4 @@ const Router = (props) => {
|
|
|
2477
2478
|
};
|
|
2478
2479
|
|
|
2479
2480
|
export { Router };
|
|
2480
|
-
//# sourceMappingURL=index-
|
|
2481
|
+
//# sourceMappingURL=index-72b0a968.esm.js.map
|