@backstage/plugin-scaffolder-node 0.6.3 → 0.7.0-next.1

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 CHANGED
@@ -1,5 +1,33 @@
1
1
  # @backstage/plugin-scaffolder-node
2
2
 
3
+ ## 0.7.0-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/backend-plugin-api@1.2.0-next.1
9
+ - @backstage/catalog-model@1.7.3
10
+ - @backstage/errors@1.2.7
11
+ - @backstage/integration@1.16.1
12
+ - @backstage/types@1.2.1
13
+ - @backstage/plugin-scaffolder-common@1.5.9
14
+
15
+ ## 0.7.0-next.0
16
+
17
+ ### Minor Changes
18
+
19
+ - a4aa244: This change introduces an optional `taskId` property to `TaskContext`.
20
+
21
+ ### Patch Changes
22
+
23
+ - Updated dependencies
24
+ - @backstage/backend-plugin-api@1.2.0-next.0
25
+ - @backstage/catalog-model@1.7.3
26
+ - @backstage/errors@1.2.7
27
+ - @backstage/integration@1.16.1
28
+ - @backstage/types@1.2.1
29
+ - @backstage/plugin-scaffolder-common@1.5.9
30
+
3
31
  ## 0.6.3
4
32
 
5
33
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -89,6 +89,7 @@ type TaskBrokerDispatchOptions = {
89
89
  * @public
90
90
  */
91
91
  interface TaskContext {
92
+ taskId?: string;
92
93
  cancelSignal: AbortSignal;
93
94
  spec: TaskSpec;
94
95
  secrets?: TaskSecrets;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-scaffolder-node",
3
- "version": "0.6.3",
3
+ "version": "0.7.0-next.1",
4
4
  "description": "The plugin-scaffolder-node module for @backstage/plugin-scaffolder-backend",
5
5
  "backstage": {
6
6
  "role": "node-library",
@@ -63,12 +63,12 @@
63
63
  },
64
64
  "dependencies": {
65
65
  "@backstage/backend-common": "^0.25.0",
66
- "@backstage/backend-plugin-api": "^1.1.1",
67
- "@backstage/catalog-model": "^1.7.3",
68
- "@backstage/errors": "^1.2.7",
69
- "@backstage/integration": "^1.16.1",
70
- "@backstage/plugin-scaffolder-common": "^1.5.9",
71
- "@backstage/types": "^1.2.1",
66
+ "@backstage/backend-plugin-api": "1.2.0-next.1",
67
+ "@backstage/catalog-model": "1.7.3",
68
+ "@backstage/errors": "1.2.7",
69
+ "@backstage/integration": "1.16.1",
70
+ "@backstage/plugin-scaffolder-common": "1.5.9",
71
+ "@backstage/types": "1.2.1",
72
72
  "concat-stream": "^2.0.0",
73
73
  "fs-extra": "^11.2.0",
74
74
  "globby": "^11.0.0",
@@ -81,8 +81,8 @@
81
81
  "zod-to-json-schema": "^3.20.4"
82
82
  },
83
83
  "devDependencies": {
84
- "@backstage/backend-test-utils": "^1.2.1",
85
- "@backstage/cli": "^0.29.5",
86
- "@backstage/config": "^1.3.2"
84
+ "@backstage/backend-test-utils": "1.3.0-next.2",
85
+ "@backstage/cli": "0.30.0-next.2",
86
+ "@backstage/config": "1.3.2"
87
87
  }
88
88
  }