@backstage/plugin-scaffolder-backend 1.4.0-next.0 → 1.4.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 CHANGED
@@ -1,10 +1,71 @@
1
1
  # @backstage/plugin-scaffolder-backend
2
2
 
3
- ## 1.4.0-next.0
3
+ ## 1.4.0-next.3
4
4
 
5
5
  ### Minor Changes
6
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.
7
+ - 91c1d12123: Export experimental `scaffolderCatalogExtension` for the new backend system. This export is not considered stable and should not be used in production.
8
+
9
+ ### Patch Changes
10
+
11
+ - ea6dcb84a4: Don't resolve symlinks, treat them as binary files and copy them as-is
12
+ - af02f54483: new setUserAsOwner flag for publish:gitlab action
13
+
14
+ The field default is `false`. When true it will use the token configured in the gitlab integration for the matching host, to try and set the user logged in via `repoUrlPicker` `requestUserCredentials` OAuth flow as owner of the repository created in GitLab.
15
+
16
+ - a70869e775: Updated dependency `msw` to `^0.43.0`.
17
+ - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`.
18
+ - 72622d9143: Updated dependency `yaml` to `^2.0.0`.
19
+ - 511f49ee43: Updated dependency `octokit` to `^2.0.0`.
20
+ - 735853353b: Updated dependency `@octokit/webhooks` to `^10.0.0`.
21
+ - Updated dependencies
22
+ - @backstage/backend-plugin-api@0.1.0-next.0
23
+ - @backstage/plugin-catalog-backend@1.3.0-next.3
24
+ - @backstage/plugin-catalog-node@1.0.0-next.0
25
+ - @backstage/backend-common@0.14.1-next.3
26
+ - @backstage/catalog-client@1.0.4-next.2
27
+ - @backstage/integration@1.2.2-next.3
28
+ - @backstage/catalog-model@1.1.0-next.3
29
+
30
+ ## 1.4.0-next.2
31
+
32
+ ### Minor Changes
33
+
34
+ - 4baf8a4ece: Update GitLab Merge Request Action to allow source branch to be deleted
35
+ - 2db07887cb: Added two new scaffolder actions: `github:repo:create` and `github:repo:push`
36
+
37
+ ### Patch Changes
38
+
39
+ - 679b32172e: Updated dependency `knex` to `^2.0.0`.
40
+ - e2d7b76f43: Upgrade git-url-parse to 12.0.0.
41
+
42
+ Motivation for upgrade is transitively upgrading parse-url which is vulnerable
43
+ to several CVEs detected by Snyk.
44
+
45
+ - SNYK-JS-PARSEURL-2935944
46
+ - SNYK-JS-PARSEURL-2935947
47
+ - SNYK-JS-PARSEURL-2936249
48
+
49
+ - Updated dependencies
50
+ - @backstage/catalog-model@1.1.0-next.2
51
+ - @backstage/backend-common@0.14.1-next.2
52
+ - @backstage/plugin-catalog-backend@1.2.1-next.2
53
+ - @backstage/integration@1.2.2-next.2
54
+
55
+ ## 1.4.0-next.1
56
+
57
+ ### Patch Changes
58
+
59
+ - 801d606909: Improve error messaging when passing in malformed auth
60
+ - Updated dependencies
61
+ - @backstage/catalog-model@1.1.0-next.1
62
+ - @backstage/backend-common@0.14.1-next.1
63
+ - @backstage/errors@1.1.0-next.0
64
+ - @backstage/plugin-catalog-backend@1.2.1-next.1
65
+ - @backstage/catalog-client@1.0.4-next.1
66
+ - @backstage/integration@1.2.2-next.1
67
+
68
+ ## 1.4.0-next.0
8
69
 
9
70
  ### Patch Changes
10
71
 
@@ -48,6 +109,7 @@
48
109
  - Added a route under `/v2/tasks` to list tasks by a `userEntityRef` using the `createdBy` query parameter
49
110
  - c042c5eaff: Add an option to not protect the default branch.
50
111
  - f93af969cd: Added the ability to support running of templates that are not in the `default` namespace
112
+ - 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.
51
113
 
52
114
  ### Patch Changes
53
115
 
@@ -0,0 +1,6 @@
1
+ {
2
+ "name": "@backstage/plugin-scaffolder-backend",
3
+ "version": "1.4.0-next.3",
4
+ "main": "../dist/index.cjs.js",
5
+ "types": "../dist/index.alpha.d.ts"
6
+ }