@backstage/plugin-scaffolder-backend 1.4.0-next.2 → 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,5 +1,32 @@
1
1
  # @backstage/plugin-scaffolder-backend
2
2
 
3
+ ## 1.4.0-next.3
4
+
5
+ ### Minor Changes
6
+
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
+
3
30
  ## 1.4.0-next.2
4
31
 
5
32
  ### Minor Changes
@@ -40,10 +67,6 @@
40
67
 
41
68
  ## 1.4.0-next.0
42
69
 
43
- ### Minor Changes
44
-
45
- - 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.
46
-
47
70
  ### Patch Changes
48
71
 
49
72
  - Updated dependencies
@@ -86,6 +109,7 @@
86
109
  - Added a route under `/v2/tasks` to list tasks by a `userEntityRef` using the `createdBy` query parameter
87
110
  - c042c5eaff: Add an option to not protect the default branch.
88
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.
89
113
 
90
114
  ### Patch Changes
91
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
+ }