@backstage/plugin-scaffolder-backend 0.18.0-next.0 → 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +41 -0
  2. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,46 @@
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
+
3
44
  ## 0.18.0-next.0
4
45
 
5
46
  ### Minor Changes
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.18.0-next.0",
4
+ "version": "0.18.0",
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.13.0-next.0",
38
- "@backstage/catalog-client": "^0.9.0-next.0",
39
- "@backstage/catalog-model": "^0.13.0-next.0",
37
+ "@backstage/backend-common": "^0.13.0",
38
+ "@backstage/catalog-client": "^0.9.0",
39
+ "@backstage/catalog-model": "^0.13.0",
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.24.0-next.0",
44
- "@backstage/plugin-scaffolder-common": "^0.3.0-next.0",
43
+ "@backstage/plugin-catalog-backend": "^0.24.0",
44
+ "@backstage/plugin-scaffolder-common": "^0.3.0",
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.1.21-next.0",
78
- "@backstage/cli": "^0.15.2-next.0",
77
+ "@backstage/backend-test-utils": "^0.1.21",
78
+ "@backstage/cli": "^0.15.2",
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",
@@ -97,5 +97,5 @@
97
97
  "assets"
98
98
  ],
99
99
  "configSchema": "config.d.ts",
100
- "gitHead": "e90d3ed129ebfce978f1adfa40c1dc2cef3f7e65"
100
+ "gitHead": "60c4e39d1fcaeb10d6488ada1d907f34dc2a105a"
101
101
  }