@backstage/plugin-scaffolder-backend 0.0.0-nightly-20220309022441 → 0.0.0-nightly-20220312021830

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +59 -6
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -1,6 +1,59 @@
1
1
  # @backstage/plugin-scaffolder-backend
2
2
 
3
- ## 0.0.0-nightly-20220309022441
3
+ ## 0.0.0-nightly-20220312021830
4
+
5
+ ### Patch Changes
6
+
7
+ - efc73db10c: Use `better-sqlite3` instead of `@vscode/sqlite3`
8
+ - Updated dependencies
9
+ - @backstage/backend-common@0.0.0-nightly-20220312021830
10
+ - @backstage/plugin-catalog-backend@0.0.0-nightly-20220312021830
11
+ - @backstage/catalog-model@0.0.0-nightly-20220312021830
12
+ - @backstage/catalog-client@0.0.0-nightly-20220312021830
13
+ - @backstage/plugin-scaffolder-common@0.0.0-nightly-20220312021830
14
+
15
+ ## 0.18.0
16
+
17
+ ### Minor Changes
18
+
19
+ - 310e905998: The following deprecations are now breaking and have been removed:
20
+
21
+ - **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)
22
+
23
+ - **BREAKING**: Removed the deprecated `TemplateMetadata`. Please use `TemplateInfo` instead.
24
+
25
+ - **BREAKING**: Removed the deprecated `context.baseUrl`. It's now available on `context.templateInfo.baseUrl`.
26
+
27
+ - **BREAKING**: Removed the deprecated `DispatchResult`, use `TaskBrokerDispatchResult` instead.
28
+
29
+ - **BREAKING**: Removed the deprecated `runCommand`, use `executeShellCommond` instead.
30
+
31
+ - **BREAKING**: Removed the deprecated `Status` in favour of `TaskStatus` instead.
32
+
33
+ - **BREAKING**: Removed the deprecated `TaskState` in favour of `CurrentClaimedTask` instead.
34
+
35
+ - f9c7bdd899: **BREAKING**:
36
+
37
+ - 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).
38
+ - Removed the `containerRunner` argument from the types `RouterOptions` (as used by `createRouter`) and `CreateBuiltInActionsOptions` (as used by `createBuiltinActions`).
39
+
40
+ - 5afbd16d43: **BREAKING**: Removed the previously deprecated `OctokitProvider` class.
41
+
42
+ ### Patch Changes
43
+
44
+ - ab7cd7d70e: Do some groundwork for supporting the `better-sqlite3` driver, to maybe eventually replace `@vscode/sqlite3` (#9912)
45
+ - 8122e27717: Updating documentation for supporting `apiVersion: scaffolder.backstage.io/v1beta3`
46
+ - e0a69ba49f: build(deps): bump `fs-extra` from 9.1.0 to 10.0.1
47
+ - 3c2bc73901: Use `setupRequestMockHandlers` from `@backstage/backend-test-utils`
48
+ - 458d16869c: Allow passing more repo configuration for `publish:github` action
49
+ - Updated dependencies
50
+ - @backstage/backend-common@0.13.0
51
+ - @backstage/plugin-catalog-backend@0.24.0
52
+ - @backstage/plugin-scaffolder-common@0.3.0
53
+ - @backstage/catalog-model@0.13.0
54
+ - @backstage/catalog-client@0.9.0
55
+
56
+ ## 0.18.0-next.0
4
57
 
5
58
  ### Minor Changes
6
59
 
@@ -35,11 +88,11 @@
35
88
  - 3c2bc73901: Use `setupRequestMockHandlers` from `@backstage/backend-test-utils`
36
89
  - 458d16869c: Allow passing more repo configuration for `publish:github` action
37
90
  - Updated dependencies
38
- - @backstage/backend-common@0.0.0-nightly-20220309022441
39
- - @backstage/plugin-catalog-backend@0.0.0-nightly-20220309022441
40
- - @backstage/plugin-scaffolder-common@0.0.0-nightly-20220309022441
41
- - @backstage/catalog-model@0.0.0-nightly-20220309022441
42
- - @backstage/catalog-client@0.0.0-nightly-20220309022441
91
+ - @backstage/backend-common@0.13.0-next.0
92
+ - @backstage/plugin-catalog-backend@0.24.0-next.0
93
+ - @backstage/plugin-scaffolder-common@0.3.0-next.0
94
+ - @backstage/catalog-model@0.13.0-next.0
95
+ - @backstage/catalog-client@0.9.0-next.0
43
96
 
44
97
  ## 0.17.3
45
98
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-scaffolder-backend",
3
3
  "description": "The Backstage backend plugin that helps you create new things",
4
- "version": "0.0.0-nightly-20220309022441",
4
+ "version": "0.0.0-nightly-20220312021830",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -34,14 +34,14 @@
34
34
  "build:assets": "node scripts/build-nunjucks.js"
35
35
  },
36
36
  "dependencies": {
37
- "@backstage/backend-common": "^0.0.0-nightly-20220309022441",
38
- "@backstage/catalog-client": "^0.0.0-nightly-20220309022441",
39
- "@backstage/catalog-model": "^0.0.0-nightly-20220309022441",
37
+ "@backstage/backend-common": "^0.0.0-nightly-20220312021830",
38
+ "@backstage/catalog-client": "^0.0.0-nightly-20220312021830",
39
+ "@backstage/catalog-model": "^0.0.0-nightly-20220312021830",
40
40
  "@backstage/config": "^0.1.15",
41
41
  "@backstage/errors": "^0.2.2",
42
42
  "@backstage/integration": "^0.8.0",
43
- "@backstage/plugin-catalog-backend": "^0.0.0-nightly-20220309022441",
44
- "@backstage/plugin-scaffolder-common": "^0.0.0-nightly-20220309022441",
43
+ "@backstage/plugin-catalog-backend": "^0.0.0-nightly-20220312021830",
44
+ "@backstage/plugin-scaffolder-common": "^0.0.0-nightly-20220312021830",
45
45
  "@backstage/types": "^0.1.3",
46
46
  "@gitbeaker/core": "^34.6.0",
47
47
  "@gitbeaker/node": "^35.1.0",
@@ -74,8 +74,8 @@
74
74
  "zen-observable": "^0.8.15"
75
75
  },
76
76
  "devDependencies": {
77
- "@backstage/backend-test-utils": "^0.0.0-nightly-20220309022441",
78
- "@backstage/cli": "^0.0.0-nightly-20220309022441",
77
+ "@backstage/backend-test-utils": "^0.0.0-nightly-20220312021830",
78
+ "@backstage/cli": "^0.0.0-nightly-20220312021830",
79
79
  "@types/command-exists": "^1.2.0",
80
80
  "@types/fs-extra": "^9.0.1",
81
81
  "@types/git-url-parse": "^9.0.0",