@backstage/plugin-scaffolder 1.34.4-next.0 → 1.35.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 +51 -0
- package/dist/alpha/extensions.esm.js +7 -1
- package/dist/alpha/extensions.esm.js.map +1 -1
- package/dist/alpha/fields/RepoOwnerPicker.esm.js +12 -0
- package/dist/alpha/fields/RepoOwnerPicker.esm.js.map +1 -0
- package/dist/alpha/plugin.esm.js +3 -2
- package/dist/alpha/plugin.esm.js.map +1 -1
- package/dist/alpha.d.ts +16 -3
- package/dist/components/fields/RepoOwnerPicker/DefaultRepoOwnerPicker.esm.js +42 -0
- package/dist/components/fields/RepoOwnerPicker/DefaultRepoOwnerPicker.esm.js.map +1 -0
- package/dist/components/fields/RepoOwnerPicker/GitHubRepoOwnerPicker.esm.js +81 -0
- package/dist/components/fields/RepoOwnerPicker/GitHubRepoOwnerPicker.esm.js.map +1 -0
- package/dist/components/fields/RepoOwnerPicker/RepoOwnerPicker.esm.js +94 -0
- package/dist/components/fields/RepoOwnerPicker/RepoOwnerPicker.esm.js.map +1 -0
- package/dist/components/fields/RepoOwnerPicker/schema.esm.js +28 -0
- package/dist/components/fields/RepoOwnerPicker/schema.esm.js.map +1 -0
- package/dist/extensions/default.esm.js +7 -0
- package/dist/extensions/default.esm.js.map +1 -1
- package/dist/index.d.ts +172 -151
- package/dist/index.esm.js +1 -1
- package/dist/plugin.esm.js +10 -1
- package/dist/plugin.esm.js.map +1 -1
- package/dist/plugins/scaffolder/package.json.esm.js +8 -8
- package/dist/translation.esm.js +4 -0
- package/dist/translation.esm.js.map +1 -1
- package/package.json +28 -28
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.35.0",
|
|
4
4
|
"description": "The Backstage plugin that helps you create new things",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -70,22 +70,22 @@
|
|
|
70
70
|
"test": "backstage-cli package test"
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
|
-
"@backstage/catalog-client": "1.12.1",
|
|
74
|
-
"@backstage/catalog-model": "1.7.6",
|
|
75
|
-
"@backstage/core-components": "0.18.4
|
|
76
|
-
"@backstage/core-plugin-api": "1.12.1
|
|
77
|
-
"@backstage/errors": "1.2.7",
|
|
78
|
-
"@backstage/frontend-plugin-api": "0.13.2
|
|
79
|
-
"@backstage/integration": "1.
|
|
80
|
-
"@backstage/integration-react": "1.2.13
|
|
81
|
-
"@backstage/plugin-catalog-common": "1.1.7",
|
|
82
|
-
"@backstage/plugin-catalog-react": "1.21.4
|
|
83
|
-
"@backstage/plugin-permission-react": "0.4.39
|
|
84
|
-
"@backstage/plugin-scaffolder-common": "1.7.4
|
|
85
|
-
"@backstage/plugin-scaffolder-react": "1.19.4
|
|
86
|
-
"@backstage/plugin-techdocs-common": "0.1.1",
|
|
87
|
-
"@backstage/plugin-techdocs-react": "1.3.6
|
|
88
|
-
"@backstage/types": "1.2.2",
|
|
73
|
+
"@backstage/catalog-client": "^1.12.1",
|
|
74
|
+
"@backstage/catalog-model": "^1.7.6",
|
|
75
|
+
"@backstage/core-components": "^0.18.4",
|
|
76
|
+
"@backstage/core-plugin-api": "^1.12.1",
|
|
77
|
+
"@backstage/errors": "^1.2.7",
|
|
78
|
+
"@backstage/frontend-plugin-api": "^0.13.2",
|
|
79
|
+
"@backstage/integration": "^1.19.0",
|
|
80
|
+
"@backstage/integration-react": "^1.2.13",
|
|
81
|
+
"@backstage/plugin-catalog-common": "^1.1.7",
|
|
82
|
+
"@backstage/plugin-catalog-react": "^1.21.4",
|
|
83
|
+
"@backstage/plugin-permission-react": "^0.4.39",
|
|
84
|
+
"@backstage/plugin-scaffolder-common": "^1.7.4",
|
|
85
|
+
"@backstage/plugin-scaffolder-react": "^1.19.4",
|
|
86
|
+
"@backstage/plugin-techdocs-common": "^0.1.1",
|
|
87
|
+
"@backstage/plugin-techdocs-react": "^1.3.6",
|
|
88
|
+
"@backstage/types": "^1.2.2",
|
|
89
89
|
"@codemirror/language": "^6.0.0",
|
|
90
90
|
"@codemirror/legacy-modes": "^6.1.0",
|
|
91
91
|
"@codemirror/view": "^6.0.0",
|
|
@@ -93,10 +93,10 @@
|
|
|
93
93
|
"@material-ui/icons": "^4.9.1",
|
|
94
94
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
95
95
|
"@react-hookz/web": "^24.0.0",
|
|
96
|
-
"@rjsf/core": "5.
|
|
97
|
-
"@rjsf/material-ui": "5.
|
|
98
|
-
"@rjsf/utils": "5.
|
|
99
|
-
"@rjsf/validator-ajv8": "5.
|
|
96
|
+
"@rjsf/core": "5.24.13",
|
|
97
|
+
"@rjsf/material-ui": "5.24.13",
|
|
98
|
+
"@rjsf/utils": "5.24.13",
|
|
99
|
+
"@rjsf/validator-ajv8": "5.24.13",
|
|
100
100
|
"@uiw/react-codemirror": "^4.9.3",
|
|
101
101
|
"classnames": "^2.2.6",
|
|
102
102
|
"git-url-parse": "^15.0.0",
|
|
@@ -117,13 +117,13 @@
|
|
|
117
117
|
"zod-to-json-schema": "^3.20.4"
|
|
118
118
|
},
|
|
119
119
|
"devDependencies": {
|
|
120
|
-
"@backstage/cli": "0.
|
|
121
|
-
"@backstage/core-app-api": "1.19.3
|
|
122
|
-
"@backstage/dev-utils": "1.1.18
|
|
123
|
-
"@backstage/plugin-catalog": "1.32.1
|
|
124
|
-
"@backstage/plugin-permission-common": "0.9.3",
|
|
125
|
-
"@backstage/plugin-techdocs": "1.16.1
|
|
126
|
-
"@backstage/test-utils": "1.7.14
|
|
120
|
+
"@backstage/cli": "^0.35.0",
|
|
121
|
+
"@backstage/core-app-api": "^1.19.3",
|
|
122
|
+
"@backstage/dev-utils": "^1.1.18",
|
|
123
|
+
"@backstage/plugin-catalog": "^1.32.1",
|
|
124
|
+
"@backstage/plugin-permission-common": "^0.9.3",
|
|
125
|
+
"@backstage/plugin-techdocs": "^1.16.1",
|
|
126
|
+
"@backstage/test-utils": "^1.7.14",
|
|
127
127
|
"@testing-library/dom": "^10.0.0",
|
|
128
128
|
"@testing-library/jest-dom": "^6.0.0",
|
|
129
129
|
"@testing-library/react": "^16.0.0",
|