@backstage/plugin-scaffolder-node 0.5.0-next.2 → 0.5.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 CHANGED
@@ -1,5 +1,24 @@
1
1
  # @backstage/plugin-scaffolder-node
2
2
 
3
+ ## 0.5.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 3ec4e6d: Added pagination support for listing of tasks and the ability to filter on several users and task statuses.
8
+
9
+ ### Patch Changes
10
+
11
+ - 094eaa3: Remove references to in-repo backend-common
12
+ - 11e0752: Make it possible to manually retry the scaffolder template from the step it failed
13
+ - d7a736c: Use `branch` function instead of `checkout` function when creating branch
14
+ - Updated dependencies
15
+ - @backstage/integration@1.15.1
16
+ - @backstage/backend-plugin-api@1.0.1
17
+ - @backstage/catalog-model@1.7.0
18
+ - @backstage/errors@1.2.4
19
+ - @backstage/types@1.1.1
20
+ - @backstage/plugin-scaffolder-common@1.5.6
21
+
3
22
  ## 0.5.0-next.2
4
23
 
5
24
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-scaffolder-node__alpha",
3
- "version": "0.5.0-next.2",
3
+ "version": "0.5.0",
4
4
  "main": "../dist/alpha.cjs.js",
5
5
  "types": "../dist/alpha.d.ts"
6
6
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-scaffolder-node",
3
- "version": "0.5.0-next.2",
3
+ "version": "0.5.0",
4
4
  "description": "The plugin-scaffolder-node module for @backstage/plugin-scaffolder-backend",
5
5
  "backstage": {
6
6
  "role": "node-library",
@@ -54,12 +54,12 @@
54
54
  },
55
55
  "dependencies": {
56
56
  "@backstage/backend-common": "^0.25.0",
57
- "@backstage/backend-plugin-api": "1.0.1-next.1",
58
- "@backstage/catalog-model": "1.7.0",
59
- "@backstage/errors": "1.2.4",
60
- "@backstage/integration": "1.15.1-next.1",
61
- "@backstage/plugin-scaffolder-common": "1.5.6",
62
- "@backstage/types": "1.1.1",
57
+ "@backstage/backend-plugin-api": "^1.0.1",
58
+ "@backstage/catalog-model": "^1.7.0",
59
+ "@backstage/errors": "^1.2.4",
60
+ "@backstage/integration": "^1.15.1",
61
+ "@backstage/plugin-scaffolder-common": "^1.5.6",
62
+ "@backstage/types": "^1.1.1",
63
63
  "concat-stream": "^2.0.0",
64
64
  "fs-extra": "^11.2.0",
65
65
  "globby": "^11.0.0",
@@ -72,8 +72,8 @@
72
72
  "zod-to-json-schema": "^3.20.4"
73
73
  },
74
74
  "devDependencies": {
75
- "@backstage/backend-test-utils": "1.0.1-next.2",
76
- "@backstage/cli": "0.28.0-next.2",
77
- "@backstage/config": "1.2.0"
75
+ "@backstage/backend-test-utils": "^1.0.1",
76
+ "@backstage/cli": "^0.28.0",
77
+ "@backstage/config": "^1.2.0"
78
78
  }
79
79
  }