@backstage/plugin-scaffolder-backend 0.17.2 → 0.18.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 +106 -2
- package/dist/index.cjs.js +96 -311
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +111 -89
- package/migrations/20210120143715_init.js +1 -1
- package/package.json +11 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,16 +1,120 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-backend
|
|
2
2
|
|
|
3
|
+
## 0.18.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 310e905998: The following deprecations are now breaking and have been removed:
|
|
8
|
+
|
|
9
|
+
- **BREAKING**: Support for `backstage.io/v1beta2` Software Templates has been removed. Please migrate your legacy templates to the new `scaffolder.backstage.io/v1beta3` `apiVersion` by following the [migration guide](https://backstage.io/docs/features/software-templates/migrating-from-v1beta2-to-v1beta3)
|
|
10
|
+
|
|
11
|
+
- **BREAKING**: Removed the deprecated `TemplateMetadata`. Please use `TemplateInfo` instead.
|
|
12
|
+
|
|
13
|
+
- **BREAKING**: Removed the deprecated `context.baseUrl`. It's now available on `context.templateInfo.baseUrl`.
|
|
14
|
+
|
|
15
|
+
- **BREAKING**: Removed the deprecated `DispatchResult`, use `TaskBrokerDispatchResult` instead.
|
|
16
|
+
|
|
17
|
+
- **BREAKING**: Removed the deprecated `runCommand`, use `executeShellCommond` instead.
|
|
18
|
+
|
|
19
|
+
- **BREAKING**: Removed the deprecated `Status` in favour of `TaskStatus` instead.
|
|
20
|
+
|
|
21
|
+
- **BREAKING**: Removed the deprecated `TaskState` in favour of `CurrentClaimedTask` instead.
|
|
22
|
+
|
|
23
|
+
- f9c7bdd899: **BREAKING**:
|
|
24
|
+
|
|
25
|
+
- Removed the `createFetchCookiecutterAction` export, please use the `@backstage/plugin-scaffolder-backend-module-cookiecutter` package explicitly (see [its README](https://github.com/backstage/backstage/tree/master/plugins/scaffolder-backend-module-cookiecutter) for installation instructions).
|
|
26
|
+
- Removed the `containerRunner` argument from the types `RouterOptions` (as used by `createRouter`) and `CreateBuiltInActionsOptions` (as used by `createBuiltinActions`).
|
|
27
|
+
|
|
28
|
+
- 5afbd16d43: **BREAKING**: Removed the previously deprecated `OctokitProvider` class.
|
|
29
|
+
|
|
30
|
+
### Patch Changes
|
|
31
|
+
|
|
32
|
+
- ab7cd7d70e: Do some groundwork for supporting the `better-sqlite3` driver, to maybe eventually replace `@vscode/sqlite3` (#9912)
|
|
33
|
+
- 8122e27717: Updating documentation for supporting `apiVersion: scaffolder.backstage.io/v1beta3`
|
|
34
|
+
- e0a69ba49f: build(deps): bump `fs-extra` from 9.1.0 to 10.0.1
|
|
35
|
+
- 3c2bc73901: Use `setupRequestMockHandlers` from `@backstage/backend-test-utils`
|
|
36
|
+
- 458d16869c: Allow passing more repo configuration for `publish:github` action
|
|
37
|
+
- Updated dependencies
|
|
38
|
+
- @backstage/backend-common@0.13.0
|
|
39
|
+
- @backstage/plugin-catalog-backend@0.24.0
|
|
40
|
+
- @backstage/plugin-scaffolder-common@0.3.0
|
|
41
|
+
- @backstage/catalog-model@0.13.0
|
|
42
|
+
- @backstage/catalog-client@0.9.0
|
|
43
|
+
|
|
44
|
+
## 0.18.0-next.0
|
|
45
|
+
|
|
46
|
+
### Minor Changes
|
|
47
|
+
|
|
48
|
+
- 310e905998: The following deprecations are now breaking and have been removed:
|
|
49
|
+
|
|
50
|
+
- **BREAKING**: Support for `backstage.io/v1beta2` Software Templates has been removed. Please migrate your legacy templates to the new `scaffolder.backstage.io/v1beta3` `apiVersion` by following the [migration guide](https://backstage.io/docs/features/software-templates/migrating-from-v1beta2-to-v1beta3)
|
|
51
|
+
|
|
52
|
+
- **BREAKING**: Removed the deprecated `TemplateMetadata`. Please use `TemplateInfo` instead.
|
|
53
|
+
|
|
54
|
+
- **BREAKING**: Removed the deprecated `context.baseUrl`. It's now available on `context.templateInfo.baseUrl`.
|
|
55
|
+
|
|
56
|
+
- **BREAKING**: Removed the deprecated `DispatchResult`, use `TaskBrokerDispatchResult` instead.
|
|
57
|
+
|
|
58
|
+
- **BREAKING**: Removed the deprecated `runCommand`, use `executeShellCommond` instead.
|
|
59
|
+
|
|
60
|
+
- **BREAKING**: Removed the deprecated `Status` in favour of `TaskStatus` instead.
|
|
61
|
+
|
|
62
|
+
- **BREAKING**: Removed the deprecated `TaskState` in favour of `CurrentClaimedTask` instead.
|
|
63
|
+
|
|
64
|
+
- f9c7bdd899: **BREAKING**:
|
|
65
|
+
|
|
66
|
+
- Removed the `createFetchCookiecutterAction` export, please use the `@backstage/plugin-scaffolder-backend-module-cookiecutter` package explicitly (see [its README](https://github.com/backstage/backstage/tree/master/plugins/scaffolder-backend-module-cookiecutter) for installation instructions).
|
|
67
|
+
- Removed the `containerRunner` argument from the types `RouterOptions` (as used by `createRouter`) and `CreateBuiltInActionsOptions` (as used by `createBuiltinActions`).
|
|
68
|
+
|
|
69
|
+
- 5afbd16d43: **BREAKING**: Removed the previously deprecated `OctokitProvider` class.
|
|
70
|
+
|
|
71
|
+
### Patch Changes
|
|
72
|
+
|
|
73
|
+
- ab7cd7d70e: Do some groundwork for supporting the `better-sqlite3` driver, to maybe eventually replace `@vscode/sqlite3` (#9912)
|
|
74
|
+
- 8122e27717: Updating documentation for supporting `apiVersion: scaffolder.backstage.io/v1beta3`
|
|
75
|
+
- e0a69ba49f: build(deps): bump `fs-extra` from 9.1.0 to 10.0.1
|
|
76
|
+
- 3c2bc73901: Use `setupRequestMockHandlers` from `@backstage/backend-test-utils`
|
|
77
|
+
- 458d16869c: Allow passing more repo configuration for `publish:github` action
|
|
78
|
+
- Updated dependencies
|
|
79
|
+
- @backstage/backend-common@0.13.0-next.0
|
|
80
|
+
- @backstage/plugin-catalog-backend@0.24.0-next.0
|
|
81
|
+
- @backstage/plugin-scaffolder-common@0.3.0-next.0
|
|
82
|
+
- @backstage/catalog-model@0.13.0-next.0
|
|
83
|
+
- @backstage/catalog-client@0.9.0-next.0
|
|
84
|
+
|
|
85
|
+
## 0.17.3
|
|
86
|
+
|
|
87
|
+
### Patch Changes
|
|
88
|
+
|
|
89
|
+
- 5c7f2343ea: Applied fix from version 0.17.2 of this package, which is part of the v0.69.2 release of Backstage.
|
|
90
|
+
- 899f196af5: Use `getEntityByRef` instead of `getEntityByName` in the catalog client
|
|
91
|
+
- 34af86517c: ensure `apiBaseUrl` being set for Bitbucket integrations, replace hardcoded defaults
|
|
92
|
+
- d6deb5e440: Set timeout for scaffolder octokit client
|
|
93
|
+
- 83a83381b0: Use the new `processingResult` export from the catalog backend
|
|
94
|
+
- 7372f29473: Cleanup API report
|
|
95
|
+
- c7f6424a26: Applied fix from `v0.17.1` of this package which is part of the `v0.69.1` release of Backstage.
|
|
96
|
+
- 36aa63022b: Use `CompoundEntityRef` instead of `EntityName`, and `getCompoundEntityRef` instead of `getEntityName`, from `@backstage/catalog-model`.
|
|
97
|
+
- 8119a9e011: Fix the support for custom defaultBranch values for Bitbucket Cloud at the `publish:bitbucket` scaffolder action.
|
|
98
|
+
- Updated dependencies
|
|
99
|
+
- @backstage/catalog-model@0.12.0
|
|
100
|
+
- @backstage/catalog-client@0.8.0
|
|
101
|
+
- @backstage/plugin-catalog-backend@0.23.0
|
|
102
|
+
- @backstage/backend-common@0.12.0
|
|
103
|
+
- @backstage/integration@0.8.0
|
|
104
|
+
- @backstage/plugin-scaffolder-backend-module-cookiecutter@0.2.3
|
|
105
|
+
- @backstage/plugin-scaffolder-common@0.2.3
|
|
106
|
+
|
|
3
107
|
## 0.17.2
|
|
4
108
|
|
|
5
109
|
### Patch Changes
|
|
6
110
|
|
|
7
|
-
- `repoUrl` does not have a protocol in `publish:github:pull-request`
|
|
111
|
+
- bug: `repoUrl` does not have a protocol in `publish:github:pull-request`
|
|
8
112
|
|
|
9
113
|
## 0.17.1
|
|
10
114
|
|
|
11
115
|
### Patch Changes
|
|
12
116
|
|
|
13
|
-
- bug: fixing `repoUrl` resolution for `github:
|
|
117
|
+
- bug: fixing `repoUrl` resolution for `publish:github:pull-request` action
|
|
14
118
|
|
|
15
119
|
## 0.17.0
|
|
16
120
|
|