@backstage/plugin-scaffolder-node 0.10.0-next.2 → 0.10.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 +20 -0
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-node
|
|
2
2
|
|
|
3
|
+
## 0.10.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
|
+
- dbde180: An internal refactor which adds additional types to experimental checkpoints
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
- @backstage/plugin-permission-common@0.9.1
|
|
18
|
+
- @backstage/catalog-model@1.7.5
|
|
19
|
+
- @backstage/integration@1.17.1
|
|
20
|
+
- @backstage/plugin-scaffolder-common@1.6.0
|
|
21
|
+
- @backstage/backend-plugin-api@1.4.1
|
|
22
|
+
|
|
3
23
|
## 0.10.0-next.2
|
|
4
24
|
|
|
5
25
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder-node",
|
|
3
|
-
"version": "0.10.0
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"description": "The plugin-scaffolder-node module for @backstage/plugin-scaffolder-backend",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "node-library",
|
|
@@ -62,13 +62,13 @@
|
|
|
62
62
|
"test": "backstage-cli package test"
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
|
-
"@backstage/backend-plugin-api": "1.4.1
|
|
66
|
-
"@backstage/catalog-model": "1.7.5
|
|
67
|
-
"@backstage/errors": "1.2.7",
|
|
68
|
-
"@backstage/integration": "1.17.1
|
|
69
|
-
"@backstage/plugin-permission-common": "0.9.1
|
|
70
|
-
"@backstage/plugin-scaffolder-common": "1.6.0
|
|
71
|
-
"@backstage/types": "1.2.1",
|
|
65
|
+
"@backstage/backend-plugin-api": "^1.4.1",
|
|
66
|
+
"@backstage/catalog-model": "^1.7.5",
|
|
67
|
+
"@backstage/errors": "^1.2.7",
|
|
68
|
+
"@backstage/integration": "^1.17.1",
|
|
69
|
+
"@backstage/plugin-permission-common": "^0.9.1",
|
|
70
|
+
"@backstage/plugin-scaffolder-common": "^1.6.0",
|
|
71
|
+
"@backstage/types": "^1.2.1",
|
|
72
72
|
"@isomorphic-git/pgp-plugin": "^0.0.7",
|
|
73
73
|
"concat-stream": "^2.0.0",
|
|
74
74
|
"fs-extra": "^11.2.0",
|
|
@@ -84,9 +84,9 @@
|
|
|
84
84
|
"zod-to-json-schema": "^3.20.4"
|
|
85
85
|
},
|
|
86
86
|
"devDependencies": {
|
|
87
|
-
"@backstage/backend-test-utils": "1.7.0
|
|
88
|
-
"@backstage/cli": "0.33.1
|
|
89
|
-
"@backstage/config": "1.3.3
|
|
87
|
+
"@backstage/backend-test-utils": "^1.7.0",
|
|
88
|
+
"@backstage/cli": "^0.33.1",
|
|
89
|
+
"@backstage/config": "^1.3.3",
|
|
90
90
|
"@types/lodash": "^4.14.151"
|
|
91
91
|
}
|
|
92
92
|
}
|