@backstage/plugin-scaffolder-backend 0.15.7 → 0.15.11
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 +46 -0
- package/dist/index.cjs.js +360 -75
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +14 -5
- package/package.json +15 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,51 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-backend
|
|
2
2
|
|
|
3
|
+
## 0.15.11
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 10615525f3: Switch to use the json and observable types from `@backstage/types`
|
|
8
|
+
- 41c49884d2: Start using the new `@backstage/types` package. Initially, this means using the `Observable` and `Json*` types from there. The types also remain in their old places but deprecated, and will be removed in a future release.
|
|
9
|
+
- e55a5dea09: Fixed bug where the mode of an executable file was ignored
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
- @backstage/plugin-catalog-backend@0.17.2
|
|
12
|
+
- @backstage/config@0.1.11
|
|
13
|
+
- @backstage/errors@0.1.4
|
|
14
|
+
- @backstage/integration@0.6.9
|
|
15
|
+
- @backstage/backend-common@0.9.8
|
|
16
|
+
- @backstage/catalog-model@0.9.6
|
|
17
|
+
- @backstage/plugin-scaffolder-backend-module-cookiecutter@0.1.3
|
|
18
|
+
- @backstage/plugin-scaffolder-common@0.1.1
|
|
19
|
+
|
|
20
|
+
## 0.15.10
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- b149e94290: Allow `catalog:register` action to register optional locations
|
|
25
|
+
- 36e67d2f24: Internal updates to apply more strict checks to throw errors.
|
|
26
|
+
- Updated dependencies
|
|
27
|
+
- @backstage/plugin-catalog-backend@0.17.1
|
|
28
|
+
- @backstage/backend-common@0.9.7
|
|
29
|
+
- @backstage/errors@0.1.3
|
|
30
|
+
- @backstage/catalog-model@0.9.5
|
|
31
|
+
|
|
32
|
+
## 0.15.9
|
|
33
|
+
|
|
34
|
+
### Patch Changes
|
|
35
|
+
|
|
36
|
+
- 0f99f1170e: Make sure `sourcePath` of `publish:github:pull-request` can only be used to
|
|
37
|
+
retrieve files from the workspace.
|
|
38
|
+
|
|
39
|
+
## 0.15.8
|
|
40
|
+
|
|
41
|
+
### Patch Changes
|
|
42
|
+
|
|
43
|
+
- 42c618abf6: Use `resolveSafeChildPath` in the `fetchContents` function to forbid reading files outside the base directory when a template is registered from a `file:` location.
|
|
44
|
+
- 18083d1821: Introduce the new `scaffolder.backstage.io/v1beta3` template kind with nunjucks support 🥋
|
|
45
|
+
- Updated dependencies
|
|
46
|
+
- @backstage/integration@0.6.8
|
|
47
|
+
- @backstage/plugin-catalog-backend@0.17.0
|
|
48
|
+
|
|
3
49
|
## 0.15.7
|
|
4
50
|
|
|
5
51
|
### Patch Changes
|