@backstage/plugin-scaffolder 1.30.0-next.2 → 1.30.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 +53 -0
- package/dist/alpha.d.ts +1 -1
- package/package.json +22 -22
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,58 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder
|
|
2
2
|
|
|
3
|
+
## 1.30.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 76681a5: **BREAKING ALPHA**: Extract out schema rendering components into their own Component. This means that the translation keys have changed for `actionsPage.content.tableCell.*`. They have moved to their own root key `renderSchema.*` instead.
|
|
8
|
+
|
|
9
|
+
```diff
|
|
10
|
+
...
|
|
11
|
+
- tableCell: {
|
|
12
|
+
- name: 'Name',
|
|
13
|
+
- title: 'Title',
|
|
14
|
+
- description: 'Description',
|
|
15
|
+
- type: 'Type',
|
|
16
|
+
- },
|
|
17
|
+
- noRowsDescription: 'No schema defined',
|
|
18
|
+
...
|
|
19
|
+
+ renderSchema: {
|
|
20
|
+
+ tableCell: {
|
|
21
|
+
+ name: 'Name',
|
|
22
|
+
+ title: 'Title',
|
|
23
|
+
+ description: 'Description',
|
|
24
|
+
+ type: 'Type',
|
|
25
|
+
+ },
|
|
26
|
+
+ undefined: 'No schema defined',
|
|
27
|
+
+ },
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
- 5890016: add api to retrieve template extensions info from scaffolder-backend
|
|
31
|
+
|
|
32
|
+
### Patch Changes
|
|
33
|
+
|
|
34
|
+
- a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
|
|
35
|
+
|
|
36
|
+
<https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html>
|
|
37
|
+
|
|
38
|
+
- 407eba1: Tweaked template editor tooltip to mention HTTPS requirement.
|
|
39
|
+
- Updated dependencies
|
|
40
|
+
- @backstage/plugin-catalog-react@1.17.0
|
|
41
|
+
- @backstage/frontend-plugin-api@0.10.1
|
|
42
|
+
- @backstage/integration-react@1.2.6
|
|
43
|
+
- @backstage/core-compat-api@0.4.1
|
|
44
|
+
- @backstage/core-components@0.17.1
|
|
45
|
+
- @backstage/core-plugin-api@1.10.6
|
|
46
|
+
- @backstage/plugin-permission-react@0.4.33
|
|
47
|
+
- @backstage/plugin-scaffolder-react@1.15.0
|
|
48
|
+
- @backstage/integration@1.16.3
|
|
49
|
+
- @backstage/catalog-client@1.9.1
|
|
50
|
+
- @backstage/catalog-model@1.7.3
|
|
51
|
+
- @backstage/errors@1.2.7
|
|
52
|
+
- @backstage/types@1.2.1
|
|
53
|
+
- @backstage/plugin-catalog-common@1.1.3
|
|
54
|
+
- @backstage/plugin-scaffolder-common@1.5.10
|
|
55
|
+
|
|
3
56
|
## 1.30.0-next.2
|
|
4
57
|
|
|
5
58
|
### Minor Changes
|
package/dist/alpha.d.ts
CHANGED
|
@@ -204,8 +204,8 @@ declare const scaffolderTranslationRef: _backstage_core_plugin_api_alpha.Transla
|
|
|
204
204
|
readonly "templateListPage.pageTitle": "Create a new component";
|
|
205
205
|
readonly "templateListPage.templateGroups.defaultTitle": "Templates";
|
|
206
206
|
readonly "templateListPage.templateGroups.otherTitle": "Other Templates";
|
|
207
|
-
readonly "templateListPage.contentHeader.registerExistingButtonTitle": "Register Existing Component";
|
|
208
207
|
readonly "templateListPage.contentHeader.supportButtonTitle": "Create new software components using standard templates. Different templates create different kinds of components (services, websites, documentation, ...).";
|
|
208
|
+
readonly "templateListPage.contentHeader.registerExistingButtonTitle": "Register Existing Component";
|
|
209
209
|
readonly "templateListPage.additionalLinksForEntity.viewTechDocsTitle": "View TechDocs";
|
|
210
210
|
readonly "templateWizardPage.title": "Create a new component";
|
|
211
211
|
readonly "templateWizardPage.subtitle": "Create new software components using standard templates in your organization";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder",
|
|
3
|
-
"version": "1.30.0
|
|
3
|
+
"version": "1.30.0",
|
|
4
4
|
"description": "The Backstage plugin that helps you create new things",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -70,21 +70,21 @@
|
|
|
70
70
|
"test": "backstage-cli package test"
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
|
-
"@backstage/catalog-client": "1.9.1",
|
|
74
|
-
"@backstage/catalog-model": "1.7.3",
|
|
75
|
-
"@backstage/core-compat-api": "0.4.1
|
|
76
|
-
"@backstage/core-components": "0.17.1
|
|
77
|
-
"@backstage/core-plugin-api": "1.10.6
|
|
78
|
-
"@backstage/errors": "1.2.7",
|
|
79
|
-
"@backstage/frontend-plugin-api": "0.10.1
|
|
80
|
-
"@backstage/integration": "1.16.3
|
|
81
|
-
"@backstage/integration-react": "1.2.6
|
|
82
|
-
"@backstage/plugin-catalog-common": "1.1.3",
|
|
83
|
-
"@backstage/plugin-catalog-react": "1.17.0
|
|
84
|
-
"@backstage/plugin-permission-react": "0.4.33
|
|
85
|
-
"@backstage/plugin-scaffolder-common": "1.5.10",
|
|
86
|
-
"@backstage/plugin-scaffolder-react": "1.15.0
|
|
87
|
-
"@backstage/types": "1.2.1",
|
|
73
|
+
"@backstage/catalog-client": "^1.9.1",
|
|
74
|
+
"@backstage/catalog-model": "^1.7.3",
|
|
75
|
+
"@backstage/core-compat-api": "^0.4.1",
|
|
76
|
+
"@backstage/core-components": "^0.17.1",
|
|
77
|
+
"@backstage/core-plugin-api": "^1.10.6",
|
|
78
|
+
"@backstage/errors": "^1.2.7",
|
|
79
|
+
"@backstage/frontend-plugin-api": "^0.10.1",
|
|
80
|
+
"@backstage/integration": "^1.16.3",
|
|
81
|
+
"@backstage/integration-react": "^1.2.6",
|
|
82
|
+
"@backstage/plugin-catalog-common": "^1.1.3",
|
|
83
|
+
"@backstage/plugin-catalog-react": "^1.17.0",
|
|
84
|
+
"@backstage/plugin-permission-react": "^0.4.33",
|
|
85
|
+
"@backstage/plugin-scaffolder-common": "^1.5.10",
|
|
86
|
+
"@backstage/plugin-scaffolder-react": "^1.15.0",
|
|
87
|
+
"@backstage/types": "^1.2.1",
|
|
88
88
|
"@codemirror/language": "^6.0.0",
|
|
89
89
|
"@codemirror/legacy-modes": "^6.1.0",
|
|
90
90
|
"@codemirror/view": "^6.0.0",
|
|
@@ -117,12 +117,12 @@
|
|
|
117
117
|
"zod-to-json-schema": "^3.20.4"
|
|
118
118
|
},
|
|
119
119
|
"devDependencies": {
|
|
120
|
-
"@backstage/cli": "0.32.0
|
|
121
|
-
"@backstage/core-app-api": "1.16.1
|
|
122
|
-
"@backstage/dev-utils": "1.1.9
|
|
123
|
-
"@backstage/plugin-catalog": "1.29.0
|
|
124
|
-
"@backstage/plugin-permission-common": "0.8.4",
|
|
125
|
-
"@backstage/test-utils": "1.7.7
|
|
120
|
+
"@backstage/cli": "^0.32.0",
|
|
121
|
+
"@backstage/core-app-api": "^1.16.1",
|
|
122
|
+
"@backstage/dev-utils": "^1.1.9",
|
|
123
|
+
"@backstage/plugin-catalog": "^1.29.0",
|
|
124
|
+
"@backstage/plugin-permission-common": "^0.8.4",
|
|
125
|
+
"@backstage/test-utils": "^1.7.7",
|
|
126
126
|
"@testing-library/dom": "^10.0.0",
|
|
127
127
|
"@testing-library/jest-dom": "^6.0.0",
|
|
128
128
|
"@testing-library/react": "^16.0.0",
|