@backstage/plugin-scaffolder-common 1.6.0-next.1 → 1.6.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @backstage/plugin-scaffolder-common
2
2
 
3
+ ## 1.6.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
+ - Updated dependencies
16
+ - @backstage/plugin-permission-common@0.9.1
17
+ - @backstage/catalog-model@1.7.5
18
+
3
19
  ## 1.6.0-next.1
4
20
 
5
21
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-scaffolder-common",
3
- "version": "1.6.0-next.1",
3
+ "version": "1.6.0",
4
4
  "description": "Common functionalities for the scaffolder, to be shared between scaffolder and scaffolder-backend plugin",
5
5
  "backstage": {
6
6
  "role": "common-library",
@@ -70,12 +70,12 @@
70
70
  "test": "backstage-cli package test"
71
71
  },
72
72
  "dependencies": {
73
- "@backstage/catalog-model": "1.7.5-next.0",
74
- "@backstage/plugin-permission-common": "0.9.1-next.0",
75
- "@backstage/types": "1.2.1"
73
+ "@backstage/catalog-model": "^1.7.5",
74
+ "@backstage/plugin-permission-common": "^0.9.1",
75
+ "@backstage/types": "^1.2.1"
76
76
  },
77
77
  "devDependencies": {
78
- "@backstage/cli": "0.33.1-next.2"
78
+ "@backstage/cli": "^0.33.1"
79
79
  },
80
80
  "module": "./dist/index.esm.js"
81
81
  }