@backstage/plugin-scaffolder-node 0.4.0-next.1 → 0.4.0-next.2
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 +17 -0
- package/alpha/package.json +1 -1
- package/dist/index.d.ts +1 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-node
|
|
2
2
|
|
|
3
|
+
## 0.4.0-next.2
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 02ee466: **DEPRECATION** - Deprecated the `logStream` in the `ActionContext`. Please move to using `ctx.logger.x` instead.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @backstage/integration@1.9.1-next.2
|
|
13
|
+
- @backstage/backend-common@0.21.4-next.2
|
|
14
|
+
- @backstage/backend-plugin-api@0.6.14-next.2
|
|
15
|
+
- @backstage/catalog-model@1.4.5-next.0
|
|
16
|
+
- @backstage/errors@1.2.4-next.0
|
|
17
|
+
- @backstage/types@1.1.1
|
|
18
|
+
- @backstage/plugin-scaffolder-common@1.5.1-next.1
|
|
19
|
+
|
|
3
20
|
## 0.4.0-next.1
|
|
4
21
|
|
|
5
22
|
### Minor Changes
|
package/alpha/package.json
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -144,6 +144,7 @@ interface TaskBroker {
|
|
|
144
144
|
*/
|
|
145
145
|
type ActionContext<TActionInput extends JsonObject, TActionOutput extends JsonObject = JsonObject> = {
|
|
146
146
|
logger: Logger;
|
|
147
|
+
/** @deprecated - use `ctx.logger` instead */
|
|
147
148
|
logStream: Writable;
|
|
148
149
|
secrets?: TaskSecrets;
|
|
149
150
|
workspacePath: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder-node",
|
|
3
|
-
"version": "0.4.0-next.
|
|
3
|
+
"version": "0.4.0-next.2",
|
|
4
4
|
"description": "The plugin-scaffolder-node module for @backstage/plugin-scaffolder-backend",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "node-library"
|
|
@@ -44,11 +44,11 @@
|
|
|
44
44
|
"test": "backstage-cli package test"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@backstage/backend-common": "^0.21.4-next.
|
|
48
|
-
"@backstage/backend-plugin-api": "^0.6.14-next.
|
|
47
|
+
"@backstage/backend-common": "^0.21.4-next.2",
|
|
48
|
+
"@backstage/backend-plugin-api": "^0.6.14-next.2",
|
|
49
49
|
"@backstage/catalog-model": "^1.4.5-next.0",
|
|
50
50
|
"@backstage/errors": "^1.2.4-next.0",
|
|
51
|
-
"@backstage/integration": "^1.9.1-next.
|
|
51
|
+
"@backstage/integration": "^1.9.1-next.2",
|
|
52
52
|
"@backstage/plugin-scaffolder-common": "^1.5.1-next.1",
|
|
53
53
|
"@backstage/types": "^1.1.1",
|
|
54
54
|
"fs-extra": "^11.2.0",
|
|
@@ -60,8 +60,8 @@
|
|
|
60
60
|
"zod-to-json-schema": "^3.20.4"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
|
-
"@backstage/backend-test-utils": "^0.3.4-next.
|
|
64
|
-
"@backstage/cli": "^0.25.3-next.
|
|
63
|
+
"@backstage/backend-test-utils": "^0.3.4-next.2",
|
|
64
|
+
"@backstage/cli": "^0.25.3-next.2",
|
|
65
65
|
"@backstage/config": "^1.2.0-next.1"
|
|
66
66
|
}
|
|
67
67
|
}
|