@backstage/plugin-scaffolder-backend 4.0.2-next.1 → 4.0.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 +13 -0
- package/package.json +19 -19
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-backend
|
|
2
2
|
|
|
3
|
+
## 4.0.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 55902bb: Fixed `DatabaseTaskStore.list` returning `totalTasks` as a string on PostgreSQL. knex returns a `COUNT(*)` aggregate as a string on PostgreSQL (the column is a bigint) while better-sqlite3 returns a number, so the count is now coerced with `Number(...)` and guarded with `Number.isSafeInteger(...)`. This in turn fixes the `list-scaffolder-tasks` action, whose output schema declares `totalTasks: z.number()` and previously failed validation in production with `Invalid output ... totalTasks: Expected number, received string`.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/backend-openapi-utils@0.7.0
|
|
10
|
+
- @backstage/backend-plugin-api@1.9.3
|
|
11
|
+
- @backstage/plugin-catalog-node@2.2.3
|
|
12
|
+
- @backstage/plugin-events-node@0.4.24
|
|
13
|
+
- @backstage/plugin-permission-node@0.11.2
|
|
14
|
+
- @backstage/plugin-scaffolder-node@0.13.5
|
|
15
|
+
|
|
3
16
|
## 4.0.2-next.1
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder-backend",
|
|
3
|
-
"version": "4.0.2
|
|
3
|
+
"version": "4.0.2",
|
|
4
4
|
"description": "The Backstage backend plugin that helps you create new things",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin",
|
|
@@ -77,19 +77,19 @@
|
|
|
77
77
|
"test": "backstage-cli package test"
|
|
78
78
|
},
|
|
79
79
|
"dependencies": {
|
|
80
|
-
"@backstage/backend-openapi-utils": "0.7.0
|
|
81
|
-
"@backstage/backend-plugin-api": "1.9.3
|
|
82
|
-
"@backstage/catalog-model": "1.9.0",
|
|
83
|
-
"@backstage/config": "1.3.8",
|
|
84
|
-
"@backstage/errors": "1.3.1",
|
|
85
|
-
"@backstage/integration": "2.0.3",
|
|
86
|
-
"@backstage/plugin-catalog-node": "2.2.3
|
|
87
|
-
"@backstage/plugin-events-node": "0.4.24
|
|
88
|
-
"@backstage/plugin-permission-common": "0.9.9",
|
|
89
|
-
"@backstage/plugin-permission-node": "0.11.2
|
|
90
|
-
"@backstage/plugin-scaffolder-common": "2.2.1",
|
|
91
|
-
"@backstage/plugin-scaffolder-node": "0.13.5
|
|
92
|
-
"@backstage/types": "1.2.2",
|
|
80
|
+
"@backstage/backend-openapi-utils": "^0.7.0",
|
|
81
|
+
"@backstage/backend-plugin-api": "^1.9.3",
|
|
82
|
+
"@backstage/catalog-model": "^1.9.0",
|
|
83
|
+
"@backstage/config": "^1.3.8",
|
|
84
|
+
"@backstage/errors": "^1.3.1",
|
|
85
|
+
"@backstage/integration": "^2.0.3",
|
|
86
|
+
"@backstage/plugin-catalog-node": "^2.2.3",
|
|
87
|
+
"@backstage/plugin-events-node": "^0.4.24",
|
|
88
|
+
"@backstage/plugin-permission-common": "^0.9.9",
|
|
89
|
+
"@backstage/plugin-permission-node": "^0.11.2",
|
|
90
|
+
"@backstage/plugin-scaffolder-common": "^2.2.1",
|
|
91
|
+
"@backstage/plugin-scaffolder-node": "^0.13.5",
|
|
92
|
+
"@backstage/types": "^1.2.2",
|
|
93
93
|
"@types/luxon": "^3.0.0",
|
|
94
94
|
"express": "^4.22.0",
|
|
95
95
|
"fs-extra": "^11.2.0",
|
|
@@ -113,11 +113,11 @@
|
|
|
113
113
|
"zod-to-json-schema": "^3.25.1"
|
|
114
114
|
},
|
|
115
115
|
"devDependencies": {
|
|
116
|
-
"@backstage/backend-defaults": "0.17.5
|
|
117
|
-
"@backstage/backend-test-utils": "1.11.5
|
|
118
|
-
"@backstage/cli": "0.36.4
|
|
119
|
-
"@backstage/plugin-scaffolder-node-test-utils": "0.3.13
|
|
120
|
-
"@backstage/repo-tools": "0.18.0
|
|
116
|
+
"@backstage/backend-defaults": "^0.17.5",
|
|
117
|
+
"@backstage/backend-test-utils": "^1.11.5",
|
|
118
|
+
"@backstage/cli": "^0.36.4",
|
|
119
|
+
"@backstage/plugin-scaffolder-node-test-utils": "^0.3.13",
|
|
120
|
+
"@backstage/repo-tools": "^0.18.0",
|
|
121
121
|
"@types/express": "^4.17.6",
|
|
122
122
|
"@types/fs-extra": "^11.0.0",
|
|
123
123
|
"@types/nunjucks": "^3.1.4",
|