@backstage/plugin-scaffolder-backend 0.17.3 → 1.0.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 CHANGED
@@ -1,5 +1,110 @@
1
1
  # @backstage/plugin-scaffolder-backend
2
2
 
3
+ ## 1.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - b58c70c223: This package has been promoted to v1.0! To understand how this change affects the package, please check out our [versioning policy](https://backstage.io/docs/overview/versioning-policy).
8
+
9
+ ### Patch Changes
10
+
11
+ - 765639f98c: Added new `github:issues:label` action to apply labels to issues, and also output `pullRequestNumber` from `publish:github:pull-request`.
12
+ - efc73db10c: Use `better-sqlite3` instead of `@vscode/sqlite3`
13
+ - c8475ab3bb: Adding some documentation for exported things
14
+ - f24ef7864e: Minor typo fixes
15
+ - Updated dependencies
16
+ - @backstage/plugin-catalog-backend@1.0.0
17
+ - @backstage/backend-common@0.13.1
18
+ - @backstage/catalog-model@1.0.0
19
+ - @backstage/plugin-scaffolder-common@1.0.0
20
+ - @backstage/integration@1.0.0
21
+ - @backstage/catalog-client@1.0.0
22
+ - @backstage/config@1.0.0
23
+ - @backstage/errors@1.0.0
24
+ - @backstage/types@1.0.0
25
+
26
+ ## 0.18.0
27
+
28
+ ### Minor Changes
29
+
30
+ - 310e905998: The following deprecations are now breaking and have been removed:
31
+
32
+ - **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)
33
+
34
+ - **BREAKING**: Removed the deprecated `TemplateMetadata`. Please use `TemplateInfo` instead.
35
+
36
+ - **BREAKING**: Removed the deprecated `context.baseUrl`. It's now available on `context.templateInfo.baseUrl`.
37
+
38
+ - **BREAKING**: Removed the deprecated `DispatchResult`, use `TaskBrokerDispatchResult` instead.
39
+
40
+ - **BREAKING**: Removed the deprecated `runCommand`, use `executeShellCommond` instead.
41
+
42
+ - **BREAKING**: Removed the deprecated `Status` in favour of `TaskStatus` instead.
43
+
44
+ - **BREAKING**: Removed the deprecated `TaskState` in favour of `CurrentClaimedTask` instead.
45
+
46
+ - f9c7bdd899: **BREAKING**:
47
+
48
+ - 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).
49
+ - Removed the `containerRunner` argument from the types `RouterOptions` (as used by `createRouter`) and `CreateBuiltInActionsOptions` (as used by `createBuiltinActions`).
50
+
51
+ - 5afbd16d43: **BREAKING**: Removed the previously deprecated `OctokitProvider` class.
52
+
53
+ ### Patch Changes
54
+
55
+ - ab7cd7d70e: Do some groundwork for supporting the `better-sqlite3` driver, to maybe eventually replace `@vscode/sqlite3` (#9912)
56
+ - 8122e27717: Updating documentation for supporting `apiVersion: scaffolder.backstage.io/v1beta3`
57
+ - e0a69ba49f: build(deps): bump `fs-extra` from 9.1.0 to 10.0.1
58
+ - 3c2bc73901: Use `setupRequestMockHandlers` from `@backstage/backend-test-utils`
59
+ - 458d16869c: Allow passing more repo configuration for `publish:github` action
60
+ - Updated dependencies
61
+ - @backstage/backend-common@0.13.0
62
+ - @backstage/plugin-catalog-backend@0.24.0
63
+ - @backstage/plugin-scaffolder-common@0.3.0
64
+ - @backstage/catalog-model@0.13.0
65
+ - @backstage/catalog-client@0.9.0
66
+
67
+ ## 0.18.0-next.0
68
+
69
+ ### Minor Changes
70
+
71
+ - 310e905998: The following deprecations are now breaking and have been removed:
72
+
73
+ - **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)
74
+
75
+ - **BREAKING**: Removed the deprecated `TemplateMetadata`. Please use `TemplateInfo` instead.
76
+
77
+ - **BREAKING**: Removed the deprecated `context.baseUrl`. It's now available on `context.templateInfo.baseUrl`.
78
+
79
+ - **BREAKING**: Removed the deprecated `DispatchResult`, use `TaskBrokerDispatchResult` instead.
80
+
81
+ - **BREAKING**: Removed the deprecated `runCommand`, use `executeShellCommond` instead.
82
+
83
+ - **BREAKING**: Removed the deprecated `Status` in favour of `TaskStatus` instead.
84
+
85
+ - **BREAKING**: Removed the deprecated `TaskState` in favour of `CurrentClaimedTask` instead.
86
+
87
+ - f9c7bdd899: **BREAKING**:
88
+
89
+ - 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).
90
+ - Removed the `containerRunner` argument from the types `RouterOptions` (as used by `createRouter`) and `CreateBuiltInActionsOptions` (as used by `createBuiltinActions`).
91
+
92
+ - 5afbd16d43: **BREAKING**: Removed the previously deprecated `OctokitProvider` class.
93
+
94
+ ### Patch Changes
95
+
96
+ - ab7cd7d70e: Do some groundwork for supporting the `better-sqlite3` driver, to maybe eventually replace `@vscode/sqlite3` (#9912)
97
+ - 8122e27717: Updating documentation for supporting `apiVersion: scaffolder.backstage.io/v1beta3`
98
+ - e0a69ba49f: build(deps): bump `fs-extra` from 9.1.0 to 10.0.1
99
+ - 3c2bc73901: Use `setupRequestMockHandlers` from `@backstage/backend-test-utils`
100
+ - 458d16869c: Allow passing more repo configuration for `publish:github` action
101
+ - Updated dependencies
102
+ - @backstage/backend-common@0.13.0-next.0
103
+ - @backstage/plugin-catalog-backend@0.24.0-next.0
104
+ - @backstage/plugin-scaffolder-common@0.3.0-next.0
105
+ - @backstage/catalog-model@0.13.0-next.0
106
+ - @backstage/catalog-client@0.9.0-next.0
107
+
3
108
  ## 0.17.3
4
109
 
5
110
  ### Patch Changes