@backstage/plugin-scaffolder-backend 1.4.0 → 1.5.0-next.0
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 +20 -0
- package/alpha/package.json +1 -1
- package/dist/index.alpha.d.ts +17 -0
- package/dist/index.beta.d.ts +17 -0
- package/dist/index.cjs.js +875 -294
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +17 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-backend
|
|
2
2
|
|
|
3
|
+
## 1.5.0-next.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 593dea6710: Add support for Basic Auth for Bitbucket Server.
|
|
8
|
+
- 3b7930b3e5: Add support for Bearer Authorization header / token-based auth at Git commands.
|
|
9
|
+
- 3f1316f1c5: User Bearer Authorization header at Git commands with token-based auth at Bitbucket Server.
|
|
10
|
+
- eeff5046ae: Updated `publish:gitlab:merge-request` action to allow commit updates and deletes
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- fc8a5f797b: Add a `publish:gerrit:review` scaffolder action
|
|
15
|
+
- 014b3b7776: Add missing `res.end()` in scaffolder backend `EventStream` usage
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
- @backstage/backend-common@0.15.0-next.0
|
|
18
|
+
- @backstage/integration@1.3.0-next.0
|
|
19
|
+
- @backstage/backend-plugin-api@0.1.1-next.0
|
|
20
|
+
- @backstage/plugin-catalog-backend@1.3.1-next.0
|
|
21
|
+
- @backstage/plugin-catalog-node@1.0.1-next.0
|
|
22
|
+
|
|
3
23
|
## 1.4.0
|
|
4
24
|
|
|
5
25
|
### Minor Changes
|
package/alpha/package.json
CHANGED
package/dist/index.alpha.d.ts
CHANGED
|
@@ -441,6 +441,22 @@ gitAuthorEmail?: string | undefined;
|
|
|
441
441
|
sourcePath?: string | undefined;
|
|
442
442
|
}>;
|
|
443
443
|
|
|
444
|
+
/**
|
|
445
|
+
* Creates a new action that creates a Gerrit review
|
|
446
|
+
* @public
|
|
447
|
+
*/
|
|
448
|
+
export declare function createPublishGerritReviewAction(options: {
|
|
449
|
+
integrations: ScmIntegrationRegistry;
|
|
450
|
+
config: Config;
|
|
451
|
+
}): TemplateAction< {
|
|
452
|
+
repoUrl: string;
|
|
453
|
+
branch?: string | undefined;
|
|
454
|
+
sourcePath?: string | undefined;
|
|
455
|
+
gitCommitMessage?: string | undefined;
|
|
456
|
+
gitAuthorName?: string | undefined;
|
|
457
|
+
gitAuthorEmail?: string | undefined;
|
|
458
|
+
}>;
|
|
459
|
+
|
|
444
460
|
/**
|
|
445
461
|
* Creates a new action that initializes a git repository of the content in the workspace
|
|
446
462
|
* and publishes it to GitHub.
|
|
@@ -534,6 +550,7 @@ description: string;
|
|
|
534
550
|
branchName: string;
|
|
535
551
|
targetPath: string;
|
|
536
552
|
token?: string | undefined;
|
|
553
|
+
commitAction?: "update" | "create" | "delete" | undefined;
|
|
537
554
|
/** @deprecated Use projectPath instead */
|
|
538
555
|
projectid?: string | undefined;
|
|
539
556
|
removeSourceBranch?: boolean | undefined;
|
package/dist/index.beta.d.ts
CHANGED
|
@@ -441,6 +441,22 @@ gitAuthorEmail?: string | undefined;
|
|
|
441
441
|
sourcePath?: string | undefined;
|
|
442
442
|
}>;
|
|
443
443
|
|
|
444
|
+
/**
|
|
445
|
+
* Creates a new action that creates a Gerrit review
|
|
446
|
+
* @public
|
|
447
|
+
*/
|
|
448
|
+
export declare function createPublishGerritReviewAction(options: {
|
|
449
|
+
integrations: ScmIntegrationRegistry;
|
|
450
|
+
config: Config;
|
|
451
|
+
}): TemplateAction< {
|
|
452
|
+
repoUrl: string;
|
|
453
|
+
branch?: string | undefined;
|
|
454
|
+
sourcePath?: string | undefined;
|
|
455
|
+
gitCommitMessage?: string | undefined;
|
|
456
|
+
gitAuthorName?: string | undefined;
|
|
457
|
+
gitAuthorEmail?: string | undefined;
|
|
458
|
+
}>;
|
|
459
|
+
|
|
444
460
|
/**
|
|
445
461
|
* Creates a new action that initializes a git repository of the content in the workspace
|
|
446
462
|
* and publishes it to GitHub.
|
|
@@ -534,6 +550,7 @@ description: string;
|
|
|
534
550
|
branchName: string;
|
|
535
551
|
targetPath: string;
|
|
536
552
|
token?: string | undefined;
|
|
553
|
+
commitAction?: "update" | "create" | "delete" | undefined;
|
|
537
554
|
/** @deprecated Use projectPath instead */
|
|
538
555
|
projectid?: string | undefined;
|
|
539
556
|
removeSourceBranch?: boolean | undefined;
|