@backstage/create-app 0.0.0-nightly-20220613024651 → 0.0.0-nightly-20220614024926
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @backstage/create-app
|
|
2
2
|
|
|
3
|
-
## 0.0.0-nightly-
|
|
3
|
+
## 0.0.0-nightly-20220614024926
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
@@ -75,6 +75,7 @@
|
|
|
75
75
|
```
|
|
76
76
|
|
|
77
77
|
- 935d8515da: Updated the `--version` flag to output the version of the current backstage release instead of the version of create-app.
|
|
78
|
+
- 18d4c3e50a: Updated `app-config.production.yaml` to specify an empty list of catalog locations. This is done to prevent example locations stored in `app-config.yaml` from being loaded as these are examples.
|
|
78
79
|
- 1f70704580: Accessibility updates:
|
|
79
80
|
|
|
80
81
|
- Added `aria-label` to the sidebar Logo link. To enable this for an existing app, please make the following changes:
|
package/package.json
CHANGED
|
@@ -32,3 +32,9 @@ backend:
|
|
|
32
32
|
# ssl:
|
|
33
33
|
# ca: # if you have a CA file and want to verify it you can uncomment this section
|
|
34
34
|
# $file: <file-path>/ca/server.crt
|
|
35
|
+
|
|
36
|
+
catalog:
|
|
37
|
+
# Overrides the default list locations from app-config.yaml as these contain example data.
|
|
38
|
+
# See https://backstage.io/docs/features/software-catalog/software-catalog-overview#adding-components-to-the-catalog for more details
|
|
39
|
+
# on how to get entities into the catalog.
|
|
40
|
+
locations: []
|