@backstage/plugin-scaffolder-backend 1.15.0-next.2 → 1.15.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 +72 -0
- package/alpha/package.json +1 -1
- package/dist/alpha.cjs.js +2 -2
- package/dist/cjs/{ScaffolderEntitiesProcessor-70d9fced.cjs.js → ScaffolderEntitiesProcessor-d9bc7a90.cjs.js} +574 -54
- package/dist/cjs/ScaffolderEntitiesProcessor-d9bc7a90.cjs.js.map +1 -0
- package/dist/index.cjs.js +5 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +62 -1
- package/package.json +21 -21
- package/dist/cjs/ScaffolderEntitiesProcessor-70d9fced.cjs.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,77 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-backend
|
|
2
2
|
|
|
3
|
+
## 1.15.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 84b0e47373db: Add `TargetBranchName` variable and output for the `publish:gitlab:merge-request` and `publish:github:pull-request` s'cascaffolder actions.
|
|
8
|
+
- 6a694ce98e32: Add a scaffolder action that pull-requests for bitbucket server
|
|
9
|
+
- 1948845861b0: Added `github:deployKey:create` and `github:environment:create` scaffolder actions. You will need to add `read/write` permissions to your GITHUB_TOKEN and/or Github Backstage App for Repository `Administration` (for deploy key functionality) and `Environments` (for Environment functionality)
|
|
10
|
+
- df8411779da1: Add support for Repository Variables and Secrets to the `publish:github` and `github:repo:create` scaffolder actions. You will need to add `read/write` permissions to your GITHUB_TOKEN and/or Github Backstage App for Repository `Secrets` and `Variables`
|
|
11
|
+
|
|
12
|
+
Upgrade octokit introduces some breaking changes.
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- cc936b529676: Fix handling of `optional` property in `catalog:register` scaffolder action
|
|
17
|
+
- b269da39ac2d: Clearer error messages for action `publish:gitlab:merge-request`
|
|
18
|
+
- 11e0f625583f: Fix wrong gitlabUrl format in repoUrl input description
|
|
19
|
+
- a2c70cdda202: Switch out the sandbox, from `vm2` to `isolated-vm`.
|
|
20
|
+
|
|
21
|
+
This is a native dependency, which means that it will need to be compiled with the same version of node on the same OS. This could cause some issues when running in Docker for instance, as you will need to make sure that the dependency is installed and compiled inside the docker container that it will run on.
|
|
22
|
+
|
|
23
|
+
This could mean adding in some dependencies to the container like `build-essential` to make sure that this compiles correctly.
|
|
24
|
+
|
|
25
|
+
If you're having issues installing this dependency, there's some [install instructions](https://github.com/laverdet/isolated-vm#requirements) over on `isolated-vm`'s repo.
|
|
26
|
+
|
|
27
|
+
- Updated dependencies
|
|
28
|
+
- @backstage/backend-common@0.19.0
|
|
29
|
+
- @backstage/catalog-client@1.4.2
|
|
30
|
+
- @backstage/types@1.1.0
|
|
31
|
+
- @backstage/plugin-catalog-backend@1.10.0
|
|
32
|
+
- @backstage/integration@1.5.0
|
|
33
|
+
- @backstage/catalog-model@1.4.0
|
|
34
|
+
- @backstage/errors@1.2.0
|
|
35
|
+
- @backstage/backend-plugin-api@0.5.3
|
|
36
|
+
- @backstage/backend-tasks@0.5.3
|
|
37
|
+
- @backstage/plugin-auth-node@0.2.15
|
|
38
|
+
- @backstage/plugin-catalog-node@1.3.7
|
|
39
|
+
- @backstage/plugin-permission-node@0.7.9
|
|
40
|
+
- @backstage/config@1.0.8
|
|
41
|
+
- @backstage/plugin-catalog-common@1.0.14
|
|
42
|
+
- @backstage/plugin-permission-common@0.7.6
|
|
43
|
+
- @backstage/plugin-scaffolder-common@1.3.1
|
|
44
|
+
- @backstage/plugin-scaffolder-node@0.1.4
|
|
45
|
+
|
|
46
|
+
## 1.15.0-next.3
|
|
47
|
+
|
|
48
|
+
### Minor Changes
|
|
49
|
+
|
|
50
|
+
- 84b0e47373db: Add `TargetBranchName` variable and output for the `publish:gitlab:merge-request` and `publish:github:pull-request` s'cascaffolder actions.
|
|
51
|
+
- 6a694ce98e32: Add a scaffolder action that pull-requests for bitbucket server
|
|
52
|
+
- 1948845861b0: Added `github:deployKey:create` and `github:environment:create` scaffolder actions. You will need to add `read/write` permissions to your GITHUB_TOKEN and/or Github Backstage App for Repository `Administration` (for deploy key functionality) and `Environments` (for Environment functionality)
|
|
53
|
+
|
|
54
|
+
### Patch Changes
|
|
55
|
+
|
|
56
|
+
- Updated dependencies
|
|
57
|
+
- @backstage/backend-common@0.19.0-next.2
|
|
58
|
+
- @backstage/catalog-model@1.4.0-next.1
|
|
59
|
+
- @backstage/plugin-catalog-backend@1.10.0-next.2
|
|
60
|
+
- @backstage/backend-plugin-api@0.5.3-next.2
|
|
61
|
+
- @backstage/backend-tasks@0.5.3-next.2
|
|
62
|
+
- @backstage/catalog-client@1.4.2-next.2
|
|
63
|
+
- @backstage/config@1.0.7
|
|
64
|
+
- @backstage/errors@1.2.0-next.0
|
|
65
|
+
- @backstage/integration@1.5.0-next.0
|
|
66
|
+
- @backstage/types@1.0.2
|
|
67
|
+
- @backstage/plugin-auth-node@0.2.15-next.2
|
|
68
|
+
- @backstage/plugin-catalog-common@1.0.14-next.1
|
|
69
|
+
- @backstage/plugin-catalog-node@1.3.7-next.2
|
|
70
|
+
- @backstage/plugin-permission-common@0.7.6-next.0
|
|
71
|
+
- @backstage/plugin-permission-node@0.7.9-next.2
|
|
72
|
+
- @backstage/plugin-scaffolder-common@1.3.1-next.1
|
|
73
|
+
- @backstage/plugin-scaffolder-node@0.1.4-next.2
|
|
74
|
+
|
|
3
75
|
## 1.15.0-next.2
|
|
4
76
|
|
|
5
77
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/dist/alpha.cjs.js
CHANGED
|
@@ -4,7 +4,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
4
4
|
|
|
5
5
|
var backendPluginApi = require('@backstage/backend-plugin-api');
|
|
6
6
|
var alpha = require('@backstage/plugin-catalog-node/alpha');
|
|
7
|
-
var ScaffolderEntitiesProcessor = require('./cjs/ScaffolderEntitiesProcessor-
|
|
7
|
+
var ScaffolderEntitiesProcessor = require('./cjs/ScaffolderEntitiesProcessor-d9bc7a90.cjs.js');
|
|
8
8
|
var alpha$1 = require('@backstage/plugin-scaffolder-common/alpha');
|
|
9
9
|
var pluginPermissionNode = require('@backstage/plugin-permission-node');
|
|
10
10
|
var backendCommon = require('@backstage/backend-common');
|
|
@@ -15,7 +15,7 @@ require('fs-extra');
|
|
|
15
15
|
require('path');
|
|
16
16
|
require('globby');
|
|
17
17
|
require('isbinaryfile');
|
|
18
|
-
require('
|
|
18
|
+
require('isolated-vm');
|
|
19
19
|
require('@backstage/catalog-model');
|
|
20
20
|
require('lodash/get');
|
|
21
21
|
require('child_process');
|