@backstage/plugin-scaffolder-node 0.12.0-next.0 → 0.12.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 +44 -0
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,49 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-node
|
|
2
2
|
|
|
3
|
+
## 0.12.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 9b81a90: **BREAKING** - Marking optional fields as required in the `TaskBroker`, these can be fixed with a no-op `() => void` if you don't want to implement the functions.
|
|
8
|
+
|
|
9
|
+
- `cancel`, `recoverTasks` and `retry` are the required methods on the `TaskBroker` interface.
|
|
10
|
+
|
|
11
|
+
**NOTE**: If you're affected by this breaking change, please reach out to us in an issue as we're thinking about completely removing the `TaskBroker` extension point soon and would like to hear your use cases for the upcoming re-architecture of the `scaffolder-backend` plugin.
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- c8aa210: **BREAKING ALPHA**: We've moved the `scaffolderActionsExtensionPoint` from `/alpha` to the main export.
|
|
16
|
+
|
|
17
|
+
```tsx
|
|
18
|
+
// before
|
|
19
|
+
import { scaffolderActionsExtensionPoint } from '@backstage/plugin-scaffolder-node/alpha';
|
|
20
|
+
|
|
21
|
+
// after
|
|
22
|
+
import { scaffolderActionsExtensionPoint } from '@backstage/plugin-scaffolder-node';
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
- 6e2bda7: **DEPRECATION**: We're going to be working on refactoring a lot of the internals of the Scaffolder backend plugin, and with that comes a lot of deprecations and removals for public types that are making these things hard.
|
|
26
|
+
|
|
27
|
+
If you're using these types, please reach out to us either on Discord or a GitHub issue with your use cases.
|
|
28
|
+
|
|
29
|
+
- `SerializedTask`, `SerializedTaskEvent`, `TaskBroker`, `TaskContext`, `TaskBrokerDispatchOptions`, `TaskBrokerDispatchResult`, `TaskCompletionState`, `TaskEventType`, `TaskFilter`, `TaskFilters`, `TaskStatus` are the types that have now been marked as deprecated, and will be removed in a future release.
|
|
30
|
+
|
|
31
|
+
- Updated dependencies
|
|
32
|
+
- @backstage/integration@1.18.1
|
|
33
|
+
- @backstage/backend-plugin-api@1.4.4
|
|
34
|
+
- @backstage/plugin-permission-common@0.9.2
|
|
35
|
+
- @backstage/plugin-scaffolder-common@1.7.2
|
|
36
|
+
|
|
37
|
+
## 0.12.0-next.1
|
|
38
|
+
|
|
39
|
+
### Patch Changes
|
|
40
|
+
|
|
41
|
+
- Updated dependencies
|
|
42
|
+
- @backstage/integration@1.18.1-next.1
|
|
43
|
+
- @backstage/backend-plugin-api@1.4.4-next.0
|
|
44
|
+
- @backstage/plugin-permission-common@0.9.2-next.0
|
|
45
|
+
- @backstage/plugin-scaffolder-common@1.7.2-next.1
|
|
46
|
+
|
|
3
47
|
## 0.12.0-next.0
|
|
4
48
|
|
|
5
49
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder-node",
|
|
3
|
-
"version": "0.12.0
|
|
3
|
+
"version": "0.12.0",
|
|
4
4
|
"description": "The plugin-scaffolder-node module for @backstage/plugin-scaffolder-backend",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "node-library",
|
|
@@ -62,13 +62,13 @@
|
|
|
62
62
|
"test": "backstage-cli package test"
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
|
-
"@backstage/backend-plugin-api": "1.4.
|
|
66
|
-
"@backstage/catalog-model": "1.7.5",
|
|
67
|
-
"@backstage/errors": "1.2.7",
|
|
68
|
-
"@backstage/integration": "1.18.1
|
|
69
|
-
"@backstage/plugin-permission-common": "0.9.
|
|
70
|
-
"@backstage/plugin-scaffolder-common": "1.7.2
|
|
71
|
-
"@backstage/types": "1.2.2",
|
|
65
|
+
"@backstage/backend-plugin-api": "^1.4.4",
|
|
66
|
+
"@backstage/catalog-model": "^1.7.5",
|
|
67
|
+
"@backstage/errors": "^1.2.7",
|
|
68
|
+
"@backstage/integration": "^1.18.1",
|
|
69
|
+
"@backstage/plugin-permission-common": "^0.9.2",
|
|
70
|
+
"@backstage/plugin-scaffolder-common": "^1.7.2",
|
|
71
|
+
"@backstage/types": "^1.2.2",
|
|
72
72
|
"@isomorphic-git/pgp-plugin": "^0.0.7",
|
|
73
73
|
"concat-stream": "^2.0.0",
|
|
74
74
|
"fs-extra": "^11.2.0",
|
|
@@ -84,9 +84,9 @@
|
|
|
84
84
|
"zod-to-json-schema": "^3.20.4"
|
|
85
85
|
},
|
|
86
86
|
"devDependencies": {
|
|
87
|
-
"@backstage/backend-test-utils": "1.9.1
|
|
88
|
-
"@backstage/cli": "0.34.4
|
|
89
|
-
"@backstage/config": "1.3.
|
|
87
|
+
"@backstage/backend-test-utils": "^1.9.1",
|
|
88
|
+
"@backstage/cli": "^0.34.4",
|
|
89
|
+
"@backstage/config": "^1.3.5",
|
|
90
90
|
"@types/lodash": "^4.14.151"
|
|
91
91
|
}
|
|
92
92
|
}
|