@backstage/plugin-scaffolder-backend 0.15.12 → 0.15.16
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 +47 -0
- package/assets/nunjucks.js.txt +10385 -0
- package/config.d.ts +12 -12
- package/dist/index.cjs.js +283 -191
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +67 -47
- package/package.json +20 -16
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,52 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-backend
|
|
2
2
|
|
|
3
|
+
## 0.15.16
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 2a3fb13718: Bump esbuild to ^0.14.1
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/backend-common@0.9.13
|
|
10
|
+
- @backstage/plugin-catalog-backend@0.19.1
|
|
11
|
+
|
|
12
|
+
## 0.15.15
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- 0398ea25d3: Removed unused scaffolder visibility configuration; this has been moved to publish actions. Deprecated scaffolder provider configuration keys; these should use the integrations configuration instead.
|
|
17
|
+
- b055a6addc: Align on usage of `cross-fetch` vs `node-fetch` in frontend vs backend packages, and remove some unnecessary imports of either one of them
|
|
18
|
+
- c6b44d80ad: Add options to spawn in runCommand helper
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
- @backstage/integration@0.6.10
|
|
21
|
+
- @backstage/plugin-catalog-backend@0.19.0
|
|
22
|
+
- @backstage/plugin-scaffolder-backend-module-cookiecutter@0.1.5
|
|
23
|
+
- @backstage/backend-common@0.9.12
|
|
24
|
+
|
|
25
|
+
## 0.15.14
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- a096e4c4d7: Switched to executing scaffolder templating in a secure context for any template based on nunjucks, as it is [not secure by default](https://mozilla.github.io/nunjucks/api.html#user-defined-templates-warning).
|
|
30
|
+
- f9352ab606: Removed all usages of `path.resolve` in order to ensure that template paths are resolved in a safe way.
|
|
31
|
+
- e634a47ce5: Fix bug where there was error log lines written when failing to `JSON.parse` things that were not `JSON` values.
|
|
32
|
+
- 42ebbc18c0: Bump gitbeaker to the latest version
|
|
33
|
+
- Updated dependencies
|
|
34
|
+
- @backstage/errors@0.1.5
|
|
35
|
+
- @backstage/plugin-catalog-backend@0.18.0
|
|
36
|
+
- @backstage/backend-common@0.9.11
|
|
37
|
+
|
|
38
|
+
## 0.15.13
|
|
39
|
+
|
|
40
|
+
### Patch Changes
|
|
41
|
+
|
|
42
|
+
- 26eb174ce8: Skip empty file names when scaffolding with nunjucks
|
|
43
|
+
- ecdcbd08ee: Expose template metadata to custom action handler in Scaffolder.
|
|
44
|
+
- Updated dependencies
|
|
45
|
+
- @backstage/catalog-client@0.5.2
|
|
46
|
+
- @backstage/catalog-model@0.9.7
|
|
47
|
+
- @backstage/backend-common@0.9.10
|
|
48
|
+
- @backstage/plugin-catalog-backend@0.17.4
|
|
49
|
+
|
|
3
50
|
## 0.15.12
|
|
4
51
|
|
|
5
52
|
### Patch Changes
|