@backstage/plugin-scaffolder-node 0.1.1 → 0.1.2-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 +11 -0
- package/alpha/package.json +1 -1
- package/dist/index.alpha.d.ts +4 -0
- package/dist/index.beta.d.ts +4 -0
- package/dist/index.d.ts +4 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-node
|
|
2
2
|
|
|
3
|
+
## 0.1.2-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- e27ddc36dad: Added a possibility to cancel the running task (executing of a scaffolder template)
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/plugin-scaffolder-common@1.2.7-next.0
|
|
10
|
+
- @backstage/backend-plugin-api@0.5.1-next.0
|
|
11
|
+
- @backstage/catalog-model@1.2.1
|
|
12
|
+
- @backstage/types@1.0.2
|
|
13
|
+
|
|
3
14
|
## 0.1.1
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/dist/index.alpha.d.ts
CHANGED
|
@@ -50,6 +50,10 @@ export declare type ActionContext<TActionInput extends JsonObject> = {
|
|
|
50
50
|
*/
|
|
51
51
|
ref?: string;
|
|
52
52
|
};
|
|
53
|
+
/**
|
|
54
|
+
* Implement the signal to make your custom step abortable https://developer.mozilla.org/en-US/docs/Web/API/AbortController/signal
|
|
55
|
+
*/
|
|
56
|
+
signal?: AbortSignal;
|
|
53
57
|
};
|
|
54
58
|
|
|
55
59
|
/**
|
package/dist/index.beta.d.ts
CHANGED
|
@@ -50,6 +50,10 @@ export declare type ActionContext<TActionInput extends JsonObject> = {
|
|
|
50
50
|
*/
|
|
51
51
|
ref?: string;
|
|
52
52
|
};
|
|
53
|
+
/**
|
|
54
|
+
* Implement the signal to make your custom step abortable https://developer.mozilla.org/en-US/docs/Web/API/AbortController/signal
|
|
55
|
+
*/
|
|
56
|
+
signal?: AbortSignal;
|
|
53
57
|
};
|
|
54
58
|
|
|
55
59
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -50,6 +50,10 @@ export declare type ActionContext<TActionInput extends JsonObject> = {
|
|
|
50
50
|
*/
|
|
51
51
|
ref?: string;
|
|
52
52
|
};
|
|
53
|
+
/**
|
|
54
|
+
* Implement the signal to make your custom step abortable https://developer.mozilla.org/en-US/docs/Web/API/AbortController/signal
|
|
55
|
+
*/
|
|
56
|
+
signal?: AbortSignal;
|
|
53
57
|
};
|
|
54
58
|
|
|
55
59
|
/**
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder-node",
|
|
3
3
|
"description": "The plugin-scaffolder-node module for @backstage/plugin-scaffolder-backend",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.2-next.0",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -24,9 +24,9 @@
|
|
|
24
24
|
"postpack": "backstage-cli package postpack"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@backstage/backend-plugin-api": "^0.5.0",
|
|
27
|
+
"@backstage/backend-plugin-api": "^0.5.1-next.0",
|
|
28
28
|
"@backstage/catalog-model": "^1.2.1",
|
|
29
|
-
"@backstage/plugin-scaffolder-common": "^1.2.
|
|
29
|
+
"@backstage/plugin-scaffolder-common": "^1.2.7-next.0",
|
|
30
30
|
"@backstage/types": "^1.0.2",
|
|
31
31
|
"jsonschema": "^1.2.6",
|
|
32
32
|
"winston": "^3.2.1",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"zod-to-json-schema": "~3.18.0"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@backstage/cli": "^0.22.
|
|
37
|
+
"@backstage/cli": "^0.22.6-next.0"
|
|
38
38
|
},
|
|
39
39
|
"files": [
|
|
40
40
|
"alpha",
|