@backstage/plugin-scaffolder-backend 0.0.0-nightly-20220708025041 → 0.0.0-nightly-20220711024820

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,22 +1,25 @@
1
1
  # @backstage/plugin-scaffolder-backend
2
2
 
3
- ## 0.0.0-nightly-20220708025041
3
+ ## 0.0.0-nightly-20220711024820
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`.
20
23
  - 735853353b: Updated dependency `@octokit/webhooks` to `^10.0.0`.
21
24
  - e2d7b76f43: Upgrade git-url-parse to 12.0.0.
22
25
 
@@ -28,13 +31,15 @@
28
31
  - SNYK-JS-PARSEURL-2936249
29
32
 
30
33
  - Updated dependencies
31
- - @backstage/backend-common@0.0.0-nightly-20220708025041
32
- - @backstage/plugin-catalog-backend@0.0.0-nightly-20220708025041
33
- - @backstage/catalog-model@0.0.0-nightly-20220708025041
34
- - @backstage/catalog-client@0.0.0-nightly-20220708025041
35
- - @backstage/integration@0.0.0-nightly-20220708025041
36
- - @backstage/errors@0.0.0-nightly-20220708025041
37
- - @backstage/plugin-scaffolder-common@0.0.0-nightly-20220708025041
34
+ - @backstage/backend-plugin-api@0.0.0-nightly-20220711024820
35
+ - @backstage/backend-common@0.0.0-nightly-20220711024820
36
+ - @backstage/plugin-catalog-backend@0.0.0-nightly-20220711024820
37
+ - @backstage/catalog-model@0.0.0-nightly-20220711024820
38
+ - @backstage/plugin-catalog-node@0.0.0-nightly-20220711024820
39
+ - @backstage/catalog-client@0.0.0-nightly-20220711024820
40
+ - @backstage/integration@0.0.0-nightly-20220711024820
41
+ - @backstage/errors@0.0.0-nightly-20220711024820
42
+ - @backstage/plugin-scaffolder-common@0.0.0-nightly-20220711024820
38
43
 
39
44
  ## 1.4.0-next.2
40
45
 
@@ -76,10 +81,6 @@
76
81
 
77
82
  ## 1.4.0-next.0
78
83
 
79
- ### Minor Changes
80
-
81
- - 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.
82
-
83
84
  ### Patch Changes
84
85
 
85
86
  - Updated dependencies
@@ -122,6 +123,7 @@
122
123
  - Added a route under `/v2/tasks` to list tasks by a `userEntityRef` using the `createdBy` query parameter
123
124
  - c042c5eaff: Add an option to not protect the default branch.
124
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.
125
127
 
126
128
  ### Patch Changes
127
129
 
@@ -0,0 +1,6 @@
1
+ {
2
+ "name": "@backstage/plugin-scaffolder-backend",
3
+ "version": "0.0.0-nightly-20220711024820",
4
+ "main": "../dist/index.cjs.js",
5
+ "types": "../dist/index.alpha.d.ts"
6
+ }