@backstage/plugin-scaffolder 1.34.2-next.3 → 1.34.2
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 +21 -0
- package/dist/plugins/scaffolder/package.json.esm.js +1 -1
- package/package.json +25 -25
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder
|
|
2
2
|
|
|
3
|
+
## 1.34.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- e0ffe84: Add missing `templatingExtensions` option to RouterProps.contextMenu to allow global control across scaffolder pages
|
|
8
|
+
- d9aed74: Forward `ui:disabled` in `OwnedEntityPicker` to allow disabling it
|
|
9
|
+
- 075e064: Added missing form fields for the new frontend system.
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
- @backstage/plugin-scaffolder-react@1.19.2
|
|
12
|
+
- @backstage/plugin-catalog-react@1.21.2
|
|
13
|
+
- @backstage/core-components@0.18.2
|
|
14
|
+
- @backstage/integration@1.18.1
|
|
15
|
+
- @backstage/frontend-plugin-api@0.12.1
|
|
16
|
+
- @backstage/core-compat-api@0.5.3
|
|
17
|
+
- @backstage/plugin-techdocs-react@1.3.4
|
|
18
|
+
- @backstage/core-plugin-api@1.11.1
|
|
19
|
+
- @backstage/integration-react@1.2.11
|
|
20
|
+
- @backstage/plugin-catalog-common@1.1.6
|
|
21
|
+
- @backstage/plugin-permission-react@0.4.37
|
|
22
|
+
- @backstage/plugin-scaffolder-common@1.7.2
|
|
23
|
+
|
|
3
24
|
## 1.34.2-next.3
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder",
|
|
3
|
-
"version": "1.34.2
|
|
3
|
+
"version": "1.34.2",
|
|
4
4
|
"description": "The Backstage plugin that helps you create new things",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -70,23 +70,23 @@
|
|
|
70
70
|
"test": "backstage-cli package test"
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
|
-
"@backstage/catalog-client": "1.12.0",
|
|
74
|
-
"@backstage/catalog-model": "1.7.5",
|
|
75
|
-
"@backstage/core-compat-api": "0.5.3
|
|
76
|
-
"@backstage/core-components": "0.18.2
|
|
77
|
-
"@backstage/core-plugin-api": "1.11.1
|
|
78
|
-
"@backstage/errors": "1.2.7",
|
|
79
|
-
"@backstage/frontend-plugin-api": "0.12.1
|
|
80
|
-
"@backstage/integration": "1.18.1
|
|
81
|
-
"@backstage/integration-react": "1.2.11
|
|
82
|
-
"@backstage/plugin-catalog-common": "1.1.6
|
|
83
|
-
"@backstage/plugin-catalog-react": "1.21.2
|
|
84
|
-
"@backstage/plugin-permission-react": "0.4.37
|
|
85
|
-
"@backstage/plugin-scaffolder-common": "1.7.2
|
|
86
|
-
"@backstage/plugin-scaffolder-react": "1.19.2
|
|
87
|
-
"@backstage/plugin-techdocs-common": "0.1.1",
|
|
88
|
-
"@backstage/plugin-techdocs-react": "1.3.4
|
|
89
|
-
"@backstage/types": "1.2.2",
|
|
73
|
+
"@backstage/catalog-client": "^1.12.0",
|
|
74
|
+
"@backstage/catalog-model": "^1.7.5",
|
|
75
|
+
"@backstage/core-compat-api": "^0.5.3",
|
|
76
|
+
"@backstage/core-components": "^0.18.2",
|
|
77
|
+
"@backstage/core-plugin-api": "^1.11.1",
|
|
78
|
+
"@backstage/errors": "^1.2.7",
|
|
79
|
+
"@backstage/frontend-plugin-api": "^0.12.1",
|
|
80
|
+
"@backstage/integration": "^1.18.1",
|
|
81
|
+
"@backstage/integration-react": "^1.2.11",
|
|
82
|
+
"@backstage/plugin-catalog-common": "^1.1.6",
|
|
83
|
+
"@backstage/plugin-catalog-react": "^1.21.2",
|
|
84
|
+
"@backstage/plugin-permission-react": "^0.4.37",
|
|
85
|
+
"@backstage/plugin-scaffolder-common": "^1.7.2",
|
|
86
|
+
"@backstage/plugin-scaffolder-react": "^1.19.2",
|
|
87
|
+
"@backstage/plugin-techdocs-common": "^0.1.1",
|
|
88
|
+
"@backstage/plugin-techdocs-react": "^1.3.4",
|
|
89
|
+
"@backstage/types": "^1.2.2",
|
|
90
90
|
"@codemirror/language": "^6.0.0",
|
|
91
91
|
"@codemirror/legacy-modes": "^6.1.0",
|
|
92
92
|
"@codemirror/view": "^6.0.0",
|
|
@@ -118,13 +118,13 @@
|
|
|
118
118
|
"zod-to-json-schema": "^3.20.4"
|
|
119
119
|
},
|
|
120
120
|
"devDependencies": {
|
|
121
|
-
"@backstage/cli": "0.34.4
|
|
122
|
-
"@backstage/core-app-api": "1.19.1
|
|
123
|
-
"@backstage/dev-utils": "1.1.15
|
|
124
|
-
"@backstage/plugin-catalog": "1.31.4
|
|
125
|
-
"@backstage/plugin-permission-common": "0.9.2
|
|
126
|
-
"@backstage/plugin-techdocs": "1.15.1
|
|
127
|
-
"@backstage/test-utils": "1.7.12
|
|
121
|
+
"@backstage/cli": "^0.34.4",
|
|
122
|
+
"@backstage/core-app-api": "^1.19.1",
|
|
123
|
+
"@backstage/dev-utils": "^1.1.15",
|
|
124
|
+
"@backstage/plugin-catalog": "^1.31.4",
|
|
125
|
+
"@backstage/plugin-permission-common": "^0.9.2",
|
|
126
|
+
"@backstage/plugin-techdocs": "^1.15.1",
|
|
127
|
+
"@backstage/test-utils": "^1.7.12",
|
|
128
128
|
"@testing-library/dom": "^10.0.0",
|
|
129
129
|
"@testing-library/jest-dom": "^6.0.0",
|
|
130
130
|
"@testing-library/react": "^16.0.0",
|