@backstage/plugin-scaffolder-common 2.0.0-next.2 → 2.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 +18 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-common
|
|
2
2
|
|
|
3
|
+
## 2.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- 527cf88: **BREAKING** Removed deprecated `bitbucket` integration from being registered in the `ScaffolderClient`. Use the `bitbucketCloud` or `bitbucketServer` integrations instead.
|
|
8
|
+
|
|
9
|
+
### Minor Changes
|
|
10
|
+
|
|
11
|
+
- f598909: **BREAKING PRODUCERS**: Made `retry`, `listTasks`, `listTemplatingExtensions`, `dryRun`, and `autocomplete` required methods on the `ScaffolderApi` interface. Implementations of `ScaffolderApi` must now provide these methods.
|
|
12
|
+
- e8736ea: Added an optional `secrets` field to `TemplateEntityV1beta3` for configuring secrets validation. The schema for validating secrets is defined under `secrets.schema` as a JSON Schema object.
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
- @backstage/integration@2.0.0
|
|
18
|
+
- @backstage/plugin-permission-common@0.9.7
|
|
19
|
+
- @backstage/catalog-model@1.7.7
|
|
20
|
+
|
|
3
21
|
## 2.0.0-next.2
|
|
4
22
|
|
|
5
23
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder-common",
|
|
3
|
-
"version": "2.0.0
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "Common functionalities for the scaffolder, to be shared between scaffolder and scaffolder-backend plugin",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "common-library",
|
|
@@ -70,11 +70,11 @@
|
|
|
70
70
|
"test": "backstage-cli package test"
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
|
-
"@backstage/catalog-model": "1.7.
|
|
74
|
-
"@backstage/errors": "1.2.7",
|
|
75
|
-
"@backstage/integration": "2.0.0
|
|
76
|
-
"@backstage/plugin-permission-common": "0.9.
|
|
77
|
-
"@backstage/types": "1.2.2",
|
|
73
|
+
"@backstage/catalog-model": "^1.7.7",
|
|
74
|
+
"@backstage/errors": "^1.2.7",
|
|
75
|
+
"@backstage/integration": "^2.0.0",
|
|
76
|
+
"@backstage/plugin-permission-common": "^0.9.7",
|
|
77
|
+
"@backstage/types": "^1.2.2",
|
|
78
78
|
"@microsoft/fetch-event-source": "^2.0.1",
|
|
79
79
|
"@types/json-schema": "^7.0.9",
|
|
80
80
|
"cross-fetch": "^4.0.0",
|
|
@@ -83,8 +83,8 @@
|
|
|
83
83
|
"zen-observable": "^0.10.0"
|
|
84
84
|
},
|
|
85
85
|
"devDependencies": {
|
|
86
|
-
"@backstage/cli": "0.36.0
|
|
87
|
-
"@backstage/test-utils": "1.7.16
|
|
86
|
+
"@backstage/cli": "^0.36.0",
|
|
87
|
+
"@backstage/test-utils": "^1.7.16",
|
|
88
88
|
"msw": "^1.0.0"
|
|
89
89
|
},
|
|
90
90
|
"module": "./dist/index.esm.js"
|