@backstage/plugin-scaffolder-backend 0.0.0-nightly-20220706025229 → 0.0.0-nightly-20220709024234

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,18 +1,26 @@
1
1
  # @backstage/plugin-scaffolder-backend
2
2
 
3
- ## 0.0.0-nightly-20220706025229
3
+ ## 0.0.0-nightly-20220709024234
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.
8
7
  - 4baf8a4ece: Update GitLab Merge Request Action to allow source branch to be deleted
8
+ - 91c1d12123: Export experimental `scaffolderCatalogExtension` for the new backend system. This export is not considered stable and should not be used in production.
9
9
  - 2db07887cb: Added two new scaffolder actions: `github:repo:create` and `github:repo:push`
10
10
 
11
11
  ### Patch Changes
12
12
 
13
13
  - 801d606909: Improve error messaging when passing in malformed auth
14
+ - ea6dcb84a4: Don't resolve symlinks, treat them as binary files and copy them as-is
15
+ - af02f54483: new setUserAsOwner flag for publish:gitlab action
16
+
17
+ 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.
18
+
14
19
  - a70869e775: Updated dependency `msw` to `^0.43.0`.
20
+ - 72622d9143: Updated dependency `yaml` to `^2.0.0`.
15
21
  - 679b32172e: Updated dependency `knex` to `^2.0.0`.
22
+ - 511f49ee43: Updated dependency `octokit` to `^2.0.0`.
23
+ - 735853353b: Updated dependency `@octokit/webhooks` to `^10.0.0`.
16
24
  - e2d7b76f43: Upgrade git-url-parse to 12.0.0.
17
25
 
18
26
  Motivation for upgrade is transitively upgrading parse-url which is vulnerable
@@ -23,13 +31,15 @@
23
31
  - SNYK-JS-PARSEURL-2936249
24
32
 
25
33
  - Updated dependencies
26
- - @backstage/backend-common@0.0.0-nightly-20220706025229
27
- - @backstage/catalog-model@0.0.0-nightly-20220706025229
28
- - @backstage/catalog-client@0.0.0-nightly-20220706025229
29
- - @backstage/integration@0.0.0-nightly-20220706025229
30
- - @backstage/plugin-catalog-backend@0.0.0-nightly-20220706025229
31
- - @backstage/errors@0.0.0-nightly-20220706025229
32
- - @backstage/plugin-scaffolder-common@0.0.0-nightly-20220706025229
34
+ - @backstage/backend-plugin-api@0.0.0-nightly-20220709024234
35
+ - @backstage/backend-common@0.0.0-nightly-20220709024234
36
+ - @backstage/plugin-catalog-backend@0.0.0-nightly-20220709024234
37
+ - @backstage/catalog-model@0.0.0-nightly-20220709024234
38
+ - @backstage/plugin-catalog-node@0.0.0-nightly-20220709024234
39
+ - @backstage/catalog-client@0.0.0-nightly-20220709024234
40
+ - @backstage/integration@0.0.0-nightly-20220709024234
41
+ - @backstage/errors@0.0.0-nightly-20220709024234
42
+ - @backstage/plugin-scaffolder-common@0.0.0-nightly-20220709024234
33
43
 
34
44
  ## 1.4.0-next.2
35
45
 
@@ -71,10 +81,6 @@
71
81
 
72
82
  ## 1.4.0-next.0
73
83
 
74
- ### Minor Changes
75
-
76
- - 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.
77
-
78
84
  ### Patch Changes
79
85
 
80
86
  - Updated dependencies
@@ -117,6 +123,7 @@
117
123
  - Added a route under `/v2/tasks` to list tasks by a `userEntityRef` using the `createdBy` query parameter
118
124
  - c042c5eaff: Add an option to not protect the default branch.
119
125
  - f93af969cd: Added the ability to support running of templates that are not in the `default` namespace
126
+ - 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.
120
127
 
121
128
  ### Patch Changes
122
129
 
@@ -0,0 +1,6 @@
1
+ {
2
+ "name": "@backstage/plugin-scaffolder-backend",
3
+ "version": "0.0.0-nightly-20220709024234",
4
+ "main": "../dist/index.cjs.js",
5
+ "types": "../dist/index.alpha.d.ts"
6
+ }