@backstage/plugin-scaffolder-react 1.18.0-next.2 → 1.18.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 +24 -0
- package/package.json +18 -18
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-react
|
|
2
2
|
|
|
3
|
+
## 1.18.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- c1ce316: BREAKING `/alpha`: Converted `scaffolder.task.read` and `scaffolder.task.cancel` into Resource Permissions.
|
|
8
|
+
|
|
9
|
+
BREAKING `/alpha`: Added a new scaffolder rule `isTaskOwner` for `scaffolder.task.read` and `scaffolder.task.cancel` to allow for conditional permission policies such as restricting access to tasks and task events based on task creators.
|
|
10
|
+
|
|
11
|
+
BREAKING `/alpha`: Retrying a task now requires both `scaffolder.task.read` and `scaffolder.task.create` permissions, replacing the previous requirement of `scaffolder.task.read` and `scaffolder.task.cancel`.
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 94c11a5: Scroll to the top of the page when navigating between steps in template forms.
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
- @backstage/plugin-catalog-react@1.19.1
|
|
18
|
+
- @backstage/catalog-model@1.7.5
|
|
19
|
+
- @backstage/catalog-client@1.10.2
|
|
20
|
+
- @backstage/core-components@0.17.4
|
|
21
|
+
- @backstage/core-plugin-api@1.10.9
|
|
22
|
+
- @backstage/theme@0.6.7
|
|
23
|
+
- @backstage/plugin-scaffolder-common@1.6.0
|
|
24
|
+
- @backstage/frontend-plugin-api@0.10.4
|
|
25
|
+
- @backstage/plugin-permission-react@0.4.36
|
|
26
|
+
|
|
3
27
|
## 1.18.0-next.2
|
|
4
28
|
|
|
5
29
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder-react",
|
|
3
|
-
"version": "1.18.0
|
|
3
|
+
"version": "1.18.0",
|
|
4
4
|
"description": "A frontend library that helps other Backstage plugins interact with the Scaffolder",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "web-library",
|
|
@@ -66,17 +66,17 @@
|
|
|
66
66
|
"test": "backstage-cli package test"
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
69
|
-
"@backstage/catalog-client": "1.10.2
|
|
70
|
-
"@backstage/catalog-model": "1.7.5
|
|
71
|
-
"@backstage/core-components": "0.17.4
|
|
72
|
-
"@backstage/core-plugin-api": "1.10.9
|
|
73
|
-
"@backstage/frontend-plugin-api": "0.10.4
|
|
74
|
-
"@backstage/plugin-catalog-react": "1.19.1
|
|
75
|
-
"@backstage/plugin-permission-react": "0.4.36
|
|
76
|
-
"@backstage/plugin-scaffolder-common": "1.6.0
|
|
77
|
-
"@backstage/theme": "0.6.7
|
|
78
|
-
"@backstage/types": "1.2.1",
|
|
79
|
-
"@backstage/version-bridge": "1.0.11",
|
|
69
|
+
"@backstage/catalog-client": "^1.10.2",
|
|
70
|
+
"@backstage/catalog-model": "^1.7.5",
|
|
71
|
+
"@backstage/core-components": "^0.17.4",
|
|
72
|
+
"@backstage/core-plugin-api": "^1.10.9",
|
|
73
|
+
"@backstage/frontend-plugin-api": "^0.10.4",
|
|
74
|
+
"@backstage/plugin-catalog-react": "^1.19.1",
|
|
75
|
+
"@backstage/plugin-permission-react": "^0.4.36",
|
|
76
|
+
"@backstage/plugin-scaffolder-common": "^1.6.0",
|
|
77
|
+
"@backstage/theme": "^0.6.7",
|
|
78
|
+
"@backstage/types": "^1.2.1",
|
|
79
|
+
"@backstage/version-bridge": "^1.0.11",
|
|
80
80
|
"@material-ui/core": "^4.12.2",
|
|
81
81
|
"@material-ui/icons": "^4.9.1",
|
|
82
82
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
@@ -104,12 +104,12 @@
|
|
|
104
104
|
"zod-to-json-schema": "^3.20.4"
|
|
105
105
|
},
|
|
106
106
|
"devDependencies": {
|
|
107
|
-
"@backstage/cli": "0.33.1
|
|
108
|
-
"@backstage/core-app-api": "1.18.0
|
|
109
|
-
"@backstage/plugin-catalog": "1.31.1
|
|
110
|
-
"@backstage/plugin-catalog-common": "1.1.5
|
|
111
|
-
"@backstage/plugin-permission-common": "0.9.1
|
|
112
|
-
"@backstage/test-utils": "1.7.10
|
|
107
|
+
"@backstage/cli": "^0.33.1",
|
|
108
|
+
"@backstage/core-app-api": "^1.18.0",
|
|
109
|
+
"@backstage/plugin-catalog": "^1.31.1",
|
|
110
|
+
"@backstage/plugin-catalog-common": "^1.1.5",
|
|
111
|
+
"@backstage/plugin-permission-common": "^0.9.1",
|
|
112
|
+
"@backstage/test-utils": "^1.7.10",
|
|
113
113
|
"@testing-library/dom": "^10.0.0",
|
|
114
114
|
"@testing-library/jest-dom": "^6.0.0",
|
|
115
115
|
"@testing-library/react": "^16.0.0",
|