@backstage/plugin-scaffolder 1.1.0-next.3 → 1.1.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/alpha/package.json +1 -1
- package/package.json +18 -18
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder
|
|
2
2
|
|
|
3
|
+
## 1.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 6331ec1ebc: Added a context menu to the scaffolder page that provides links to the template editor and actions reference. These links and the presence of the context menu can be toggled through the `contextMenu` prop of the scaffolder page.
|
|
8
|
+
- 8fad3b6ef5: The Template Preview page has been renamed to Template Editor, and is not available at the `/edit` path instead. There is a redirect in place from `/preview`.
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- 7c7919777e: build(deps-dev): bump `@testing-library/react-hooks` from 7.0.2 to 8.0.0
|
|
13
|
+
- 24254fd433: build(deps): bump `@testing-library/user-event` from 13.5.0 to 14.0.0
|
|
14
|
+
- 946af407db: Changed input label for owner field in GitlabRepoPicker
|
|
15
|
+
- 230ad0826f: Bump to using `@types/node` v16
|
|
16
|
+
- d34900af81: Added a new `NextScaffolderRouter` which will eventually replace the exiting router
|
|
17
|
+
- 9975ff9852: Applied the fix from version 1.0.1 of this package, which is part of the v1.0.2 release of Backstage.
|
|
18
|
+
- 4431873583: Update `usePermission` usage.
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
- @backstage/integration@1.1.0
|
|
21
|
+
- @backstage/plugin-permission-react@0.4.0
|
|
22
|
+
- @backstage/plugin-catalog-react@1.0.1
|
|
23
|
+
- @backstage/catalog-model@1.0.1
|
|
24
|
+
- @backstage/core-components@0.9.3
|
|
25
|
+
- @backstage/core-plugin-api@1.0.1
|
|
26
|
+
- @backstage/integration-react@1.0.1
|
|
27
|
+
- @backstage/plugin-catalog-common@1.0.1
|
|
28
|
+
- @backstage/catalog-client@1.0.1
|
|
29
|
+
- @backstage/plugin-scaffolder-common@1.0.1
|
|
30
|
+
|
|
3
31
|
## 1.1.0-next.3
|
|
4
32
|
|
|
5
33
|
### Minor Changes
|
package/alpha/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder",
|
|
3
3
|
"description": "The Backstage plugin that helps you create new things",
|
|
4
|
-
"version": "1.1.0
|
|
4
|
+
"version": "1.1.0",
|
|
5
5
|
"main": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -35,18 +35,18 @@
|
|
|
35
35
|
"clean": "backstage-cli package clean"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@backstage/catalog-client": "^1.0.1
|
|
39
|
-
"@backstage/catalog-model": "^1.0.1
|
|
38
|
+
"@backstage/catalog-client": "^1.0.1",
|
|
39
|
+
"@backstage/catalog-model": "^1.0.1",
|
|
40
40
|
"@backstage/config": "^1.0.0",
|
|
41
|
-
"@backstage/core-components": "^0.9.3
|
|
42
|
-
"@backstage/core-plugin-api": "^1.0.1
|
|
41
|
+
"@backstage/core-components": "^0.9.3",
|
|
42
|
+
"@backstage/core-plugin-api": "^1.0.1",
|
|
43
43
|
"@backstage/errors": "^1.0.0",
|
|
44
|
-
"@backstage/integration": "^1.1.0
|
|
45
|
-
"@backstage/integration-react": "^1.0.1
|
|
46
|
-
"@backstage/plugin-catalog-common": "^1.0.1
|
|
47
|
-
"@backstage/plugin-catalog-react": "^1.0.1
|
|
48
|
-
"@backstage/plugin-permission-react": "^0.4.0
|
|
49
|
-
"@backstage/plugin-scaffolder-common": "^1.0.1
|
|
44
|
+
"@backstage/integration": "^1.1.0",
|
|
45
|
+
"@backstage/integration-react": "^1.0.1",
|
|
46
|
+
"@backstage/plugin-catalog-common": "^1.0.1",
|
|
47
|
+
"@backstage/plugin-catalog-react": "^1.0.1",
|
|
48
|
+
"@backstage/plugin-permission-react": "^0.4.0",
|
|
49
|
+
"@backstage/plugin-scaffolder-common": "^1.0.1",
|
|
50
50
|
"@backstage/theme": "^0.2.15",
|
|
51
51
|
"@backstage/types": "^1.0.0",
|
|
52
52
|
"@codemirror/legacy-modes": "^0.19.0",
|
|
@@ -79,14 +79,14 @@
|
|
|
79
79
|
"react": "^16.13.1 || ^17.0.0"
|
|
80
80
|
},
|
|
81
81
|
"devDependencies": {
|
|
82
|
-
"@backstage/cli": "^0.17.0
|
|
83
|
-
"@backstage/core-app-api": "^1.0.1
|
|
84
|
-
"@backstage/dev-utils": "^1.0.1
|
|
85
|
-
"@backstage/plugin-catalog": "^1.1.0
|
|
86
|
-
"@backstage/test-utils": "^1.0.1
|
|
82
|
+
"@backstage/cli": "^0.17.0",
|
|
83
|
+
"@backstage/core-app-api": "^1.0.1",
|
|
84
|
+
"@backstage/dev-utils": "^1.0.1",
|
|
85
|
+
"@backstage/plugin-catalog": "^1.1.0",
|
|
86
|
+
"@backstage/test-utils": "^1.0.1",
|
|
87
87
|
"@testing-library/jest-dom": "^5.10.1",
|
|
88
88
|
"@testing-library/react": "^12.1.3",
|
|
89
|
-
"@testing-library/react-hooks": "^
|
|
89
|
+
"@testing-library/react-hooks": "^8.0.0",
|
|
90
90
|
"@testing-library/user-event": "^14.0.0",
|
|
91
91
|
"@types/humanize-duration": "^3.18.1",
|
|
92
92
|
"@types/jest": "^26.0.7",
|
|
@@ -99,5 +99,5 @@
|
|
|
99
99
|
"dist",
|
|
100
100
|
"alpha"
|
|
101
101
|
],
|
|
102
|
-
"gitHead": "
|
|
102
|
+
"gitHead": "e0e44c433319711c2fb8b175db411a621f7aaec2"
|
|
103
103
|
}
|