@backstage/plugin-scaffolder-node 0.6.3-next.1 → 0.7.0-next.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 CHANGED
@@ -1,5 +1,35 @@
1
1
  # @backstage/plugin-scaffolder-node
2
2
 
3
+ ## 0.7.0-next.0
4
+
5
+ ### Minor Changes
6
+
7
+ - a4aa244: This change introduces an optional `taskId` property to `TaskContext`.
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies
12
+ - @backstage/backend-plugin-api@1.2.0-next.0
13
+ - @backstage/catalog-model@1.7.3
14
+ - @backstage/errors@1.2.7
15
+ - @backstage/integration@1.16.1
16
+ - @backstage/types@1.2.1
17
+ - @backstage/plugin-scaffolder-common@1.5.9
18
+
19
+ ## 0.6.3
20
+
21
+ ### Patch Changes
22
+
23
+ - 5d9e5c8: Added the ability to use `${{ context.task.id }}` in nunjucks templating, as well as `ctx.task.id` in actions to get the current task ID.
24
+ - 7dd0013: Deprecate the `logStream` option in `executeShellCommand`, replacing it with a logger instance.
25
+ - Updated dependencies
26
+ - @backstage/types@1.2.1
27
+ - @backstage/integration@1.16.1
28
+ - @backstage/backend-plugin-api@1.1.1
29
+ - @backstage/catalog-model@1.7.3
30
+ - @backstage/errors@1.2.7
31
+ - @backstage/plugin-scaffolder-common@1.5.9
32
+
3
33
  ## 0.6.3-next.1
4
34
 
5
35
  ### 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-next.1",
3
+ "version": "0.7.0-next.0",
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-next.1",
67
- "@backstage/catalog-model": "1.7.3-next.0",
68
- "@backstage/errors": "1.2.7-next.0",
69
- "@backstage/integration": "1.16.1-next.0",
70
- "@backstage/plugin-scaffolder-common": "1.5.9-next.0",
71
- "@backstage/types": "1.2.1-next.0",
66
+ "@backstage/backend-plugin-api": "1.2.0-next.0",
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-next.1",
85
- "@backstage/cli": "0.29.5-next.1",
86
- "@backstage/config": "1.3.2-next.0"
84
+ "@backstage/backend-test-utils": "1.3.0-next.0",
85
+ "@backstage/cli": "0.30.0-next.0",
86
+ "@backstage/config": "1.3.2"
87
87
  }
88
88
  }