@backstage/plugin-scaffolder-backend 0.0.0-nightly-20220707025354 → 0.0.0-nightly-20220710025142
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 +16 -13
- package/alpha/package.json +6 -0
- package/dist/index.alpha.d.ts +959 -0
- package/dist/index.beta.d.ts +955 -0
- package/dist/index.cjs.js +21 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +647 -605
- package/package.json +20 -16
package/CHANGELOG.md
CHANGED
|
@@ -1,22 +1,26 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-backend
|
|
2
2
|
|
|
3
|
-
## 0.0.0-nightly-
|
|
3
|
+
## 0.0.0-nightly-20220710025142
|
|
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
|
|
14
15
|
- af02f54483: new setUserAsOwner flag for publish:gitlab action
|
|
15
16
|
|
|
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.
|
|
17
18
|
|
|
18
19
|
- a70869e775: Updated dependency `msw` to `^0.43.0`.
|
|
20
|
+
- 72622d9143: Updated dependency `yaml` to `^2.0.0`.
|
|
19
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`.
|
|
20
24
|
- e2d7b76f43: Upgrade git-url-parse to 12.0.0.
|
|
21
25
|
|
|
22
26
|
Motivation for upgrade is transitively upgrading parse-url which is vulnerable
|
|
@@ -27,13 +31,15 @@
|
|
|
27
31
|
- SNYK-JS-PARSEURL-2936249
|
|
28
32
|
|
|
29
33
|
- Updated dependencies
|
|
30
|
-
- @backstage/backend-
|
|
31
|
-
- @backstage/
|
|
32
|
-
- @backstage/catalog-
|
|
33
|
-
- @backstage/
|
|
34
|
-
- @backstage/plugin-catalog-
|
|
35
|
-
- @backstage/
|
|
36
|
-
- @backstage/
|
|
34
|
+
- @backstage/backend-plugin-api@0.0.0-nightly-20220710025142
|
|
35
|
+
- @backstage/backend-common@0.0.0-nightly-20220710025142
|
|
36
|
+
- @backstage/plugin-catalog-backend@0.0.0-nightly-20220710025142
|
|
37
|
+
- @backstage/catalog-model@0.0.0-nightly-20220710025142
|
|
38
|
+
- @backstage/plugin-catalog-node@0.0.0-nightly-20220710025142
|
|
39
|
+
- @backstage/catalog-client@0.0.0-nightly-20220710025142
|
|
40
|
+
- @backstage/integration@0.0.0-nightly-20220710025142
|
|
41
|
+
- @backstage/errors@0.0.0-nightly-20220710025142
|
|
42
|
+
- @backstage/plugin-scaffolder-common@0.0.0-nightly-20220710025142
|
|
37
43
|
|
|
38
44
|
## 1.4.0-next.2
|
|
39
45
|
|
|
@@ -75,10 +81,6 @@
|
|
|
75
81
|
|
|
76
82
|
## 1.4.0-next.0
|
|
77
83
|
|
|
78
|
-
### Minor Changes
|
|
79
|
-
|
|
80
|
-
- 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.
|
|
81
|
-
|
|
82
84
|
### Patch Changes
|
|
83
85
|
|
|
84
86
|
- Updated dependencies
|
|
@@ -121,6 +123,7 @@
|
|
|
121
123
|
- Added a route under `/v2/tasks` to list tasks by a `userEntityRef` using the `createdBy` query parameter
|
|
122
124
|
- c042c5eaff: Add an option to not protect the default branch.
|
|
123
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.
|
|
124
127
|
|
|
125
128
|
### Patch Changes
|
|
126
129
|
|