@backstage/plugin-scaffolder-backend 1.3.0 → 1.4.0-next.2
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 +54 -0
- package/dist/index.cjs.js +1597 -1425
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +75 -14
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,59 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-backend
|
|
2
2
|
|
|
3
|
+
## 1.4.0-next.2
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 4baf8a4ece: Update GitLab Merge Request Action to allow source branch to be deleted
|
|
8
|
+
- 2db07887cb: Added two new scaffolder actions: `github:repo:create` and `github:repo:push`
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- 679b32172e: Updated dependency `knex` to `^2.0.0`.
|
|
13
|
+
- e2d7b76f43: Upgrade git-url-parse to 12.0.0.
|
|
14
|
+
|
|
15
|
+
Motivation for upgrade is transitively upgrading parse-url which is vulnerable
|
|
16
|
+
to several CVEs detected by Snyk.
|
|
17
|
+
|
|
18
|
+
- SNYK-JS-PARSEURL-2935944
|
|
19
|
+
- SNYK-JS-PARSEURL-2935947
|
|
20
|
+
- SNYK-JS-PARSEURL-2936249
|
|
21
|
+
|
|
22
|
+
- Updated dependencies
|
|
23
|
+
- @backstage/catalog-model@1.1.0-next.2
|
|
24
|
+
- @backstage/backend-common@0.14.1-next.2
|
|
25
|
+
- @backstage/plugin-catalog-backend@1.2.1-next.2
|
|
26
|
+
- @backstage/integration@1.2.2-next.2
|
|
27
|
+
|
|
28
|
+
## 1.4.0-next.1
|
|
29
|
+
|
|
30
|
+
### Patch Changes
|
|
31
|
+
|
|
32
|
+
- 801d606909: Improve error messaging when passing in malformed auth
|
|
33
|
+
- Updated dependencies
|
|
34
|
+
- @backstage/catalog-model@1.1.0-next.1
|
|
35
|
+
- @backstage/backend-common@0.14.1-next.1
|
|
36
|
+
- @backstage/errors@1.1.0-next.0
|
|
37
|
+
- @backstage/plugin-catalog-backend@1.2.1-next.1
|
|
38
|
+
- @backstage/catalog-client@1.0.4-next.1
|
|
39
|
+
- @backstage/integration@1.2.2-next.1
|
|
40
|
+
|
|
41
|
+
## 1.4.0-next.0
|
|
42
|
+
|
|
43
|
+
### Minor Changes
|
|
44
|
+
|
|
45
|
+
- 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.
|
|
46
|
+
|
|
47
|
+
### Patch Changes
|
|
48
|
+
|
|
49
|
+
- Updated dependencies
|
|
50
|
+
- @backstage/backend-common@0.14.1-next.0
|
|
51
|
+
- @backstage/catalog-model@1.1.0-next.0
|
|
52
|
+
- @backstage/integration@1.2.2-next.0
|
|
53
|
+
- @backstage/plugin-catalog-backend@1.2.1-next.0
|
|
54
|
+
- @backstage/catalog-client@1.0.4-next.0
|
|
55
|
+
- @backstage/plugin-scaffolder-common@1.1.2-next.0
|
|
56
|
+
|
|
3
57
|
## 1.3.0
|
|
4
58
|
|
|
5
59
|
### Minor Changes
|