@backstage/plugin-scaffolder-backend 1.3.0 → 1.4.0-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.
Files changed (2) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @backstage/plugin-scaffolder-backend
2
2
 
3
+ ## 1.4.0-next.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 3500c13a33: Added a new `/v2/dry-run` endpoint that allows for a synchronous dry run of a provided template. A `supportsDryRun` option has been added to `createTemplateAction`, which signals whether the action should be executed during dry runs. When enabled, the action context will have the new `isDryRun` property set to signal if the action is being executed during a dry run.
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies
12
+ - @backstage/backend-common@0.14.1-next.0
13
+ - @backstage/catalog-model@1.1.0-next.0
14
+ - @backstage/integration@1.2.2-next.0
15
+ - @backstage/plugin-catalog-backend@1.2.1-next.0
16
+ - @backstage/catalog-client@1.0.4-next.0
17
+ - @backstage/plugin-scaffolder-common@1.1.2-next.0
18
+
3
19
  ## 1.3.0
4
20
 
5
21
  ### Minor Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-scaffolder-backend",
3
3
  "description": "The Backstage backend plugin that helps you create new things",
4
- "version": "1.3.0",
4
+ "version": "1.4.0-next.0",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -34,14 +34,14 @@
34
34
  "build:assets": "node scripts/build-nunjucks.js"
35
35
  },
36
36
  "dependencies": {
37
- "@backstage/backend-common": "^0.14.0",
38
- "@backstage/catalog-client": "^1.0.3",
39
- "@backstage/catalog-model": "^1.0.3",
37
+ "@backstage/backend-common": "^0.14.1-next.0",
38
+ "@backstage/catalog-client": "^1.0.4-next.0",
39
+ "@backstage/catalog-model": "^1.1.0-next.0",
40
40
  "@backstage/config": "^1.0.1",
41
41
  "@backstage/errors": "^1.0.0",
42
- "@backstage/integration": "^1.2.1",
43
- "@backstage/plugin-catalog-backend": "^1.2.0",
44
- "@backstage/plugin-scaffolder-common": "^1.1.1",
42
+ "@backstage/integration": "^1.2.2-next.0",
43
+ "@backstage/plugin-catalog-backend": "^1.2.1-next.0",
44
+ "@backstage/plugin-scaffolder-common": "^1.1.2-next.0",
45
45
  "@backstage/types": "^1.0.0",
46
46
  "@gitbeaker/core": "^35.6.0",
47
47
  "@gitbeaker/node": "^35.1.0",
@@ -76,8 +76,8 @@
76
76
  "zod": "^3.11.6"
77
77
  },
78
78
  "devDependencies": {
79
- "@backstage/backend-test-utils": "^0.1.25",
80
- "@backstage/cli": "^0.17.2",
79
+ "@backstage/backend-test-utils": "^0.1.26-next.0",
80
+ "@backstage/cli": "^0.17.3-next.0",
81
81
  "@types/command-exists": "^1.2.0",
82
82
  "@types/fs-extra": "^9.0.1",
83
83
  "@types/git-url-parse": "^9.0.0",
@@ -99,5 +99,5 @@
99
99
  "assets"
100
100
  ],
101
101
  "configSchema": "config.d.ts",
102
- "gitHead": "e42cb3887e41f756c16380d757d93feda27f40ee"
102
+ "gitHead": "6d8bf5b9cf494815c0916e18daa226fb8186ba5f"
103
103
  }