@backstage/plugin-scaffolder-node 0.6.3-next.0 → 0.6.3

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 +26 -0
  2. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -1,5 +1,31 @@
1
1
  # @backstage/plugin-scaffolder-node
2
2
 
3
+ ## 0.6.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 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.
8
+ - 7dd0013: Deprecate the `logStream` option in `executeShellCommand`, replacing it with a logger instance.
9
+ - Updated dependencies
10
+ - @backstage/types@1.2.1
11
+ - @backstage/integration@1.16.1
12
+ - @backstage/backend-plugin-api@1.1.1
13
+ - @backstage/catalog-model@1.7.3
14
+ - @backstage/errors@1.2.7
15
+ - @backstage/plugin-scaffolder-common@1.5.9
16
+
17
+ ## 0.6.3-next.1
18
+
19
+ ### Patch Changes
20
+
21
+ - Updated dependencies
22
+ - @backstage/types@1.2.1-next.0
23
+ - @backstage/backend-plugin-api@1.1.1-next.1
24
+ - @backstage/catalog-model@1.7.3-next.0
25
+ - @backstage/errors@1.2.7-next.0
26
+ - @backstage/plugin-scaffolder-common@1.5.9-next.0
27
+ - @backstage/integration@1.16.1-next.0
28
+
3
29
  ## 0.6.3-next.0
4
30
 
5
31
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-scaffolder-node",
3
- "version": "0.6.3-next.0",
3
+ "version": "0.6.3",
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.0",
67
- "@backstage/catalog-model": "1.7.2",
68
- "@backstage/errors": "1.2.6",
69
- "@backstage/integration": "1.16.0",
70
- "@backstage/plugin-scaffolder-common": "1.5.8",
71
- "@backstage/types": "1.2.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",
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.0",
85
- "@backstage/cli": "0.29.5-next.0",
86
- "@backstage/config": "1.3.1"
84
+ "@backstage/backend-test-utils": "^1.2.1",
85
+ "@backstage/cli": "^0.29.5",
86
+ "@backstage/config": "^1.3.2"
87
87
  }
88
88
  }