@backstage/plugin-scaffolder-backend 1.6.0-next.2 → 1.6.0-next.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.
- package/CHANGELOG.md +18 -0
- package/alpha/package.json +1 -1
- package/dist/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/package.json +15 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-backend
|
|
2
2
|
|
|
3
|
+
## 1.6.0-next.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 50467bc15b: The number of task workers used to execute templates now default to 3, rather than 1.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/plugin-catalog-node@1.1.0-next.2
|
|
10
|
+
- @backstage/backend-plugin-api@0.1.2-next.2
|
|
11
|
+
- @backstage/catalog-client@1.1.0-next.2
|
|
12
|
+
- @backstage/catalog-model@1.1.1-next.0
|
|
13
|
+
- @backstage/config@1.0.2-next.0
|
|
14
|
+
- @backstage/errors@1.1.1-next.0
|
|
15
|
+
- @backstage/integration@1.3.1-next.2
|
|
16
|
+
- @backstage/plugin-catalog-backend@1.4.0-next.3
|
|
17
|
+
- @backstage/backend-common@0.15.1-next.3
|
|
18
|
+
- @backstage/plugin-scaffolder-common@1.2.0-next.1
|
|
19
|
+
- @backstage/plugin-auth-node@0.2.5-next.3
|
|
20
|
+
|
|
3
21
|
## 1.6.0-next.2
|
|
4
22
|
|
|
5
23
|
### Minor Changes
|
package/alpha/package.json
CHANGED
package/dist/index.cjs.js
CHANGED
|
@@ -4562,7 +4562,7 @@ async function createRouter(options) {
|
|
|
4562
4562
|
}
|
|
4563
4563
|
const actionRegistry = new TemplateActionRegistry();
|
|
4564
4564
|
const workers = [];
|
|
4565
|
-
for (let i = 0; i < (taskWorkers ||
|
|
4565
|
+
for (let i = 0; i < (taskWorkers || 3); i++) {
|
|
4566
4566
|
const worker = await TaskWorker.create({
|
|
4567
4567
|
taskBroker,
|
|
4568
4568
|
actionRegistry,
|