Version Packages (next)

This commit is contained in:
github-actions[bot]
2023-08-22 11:37:48 +00:00
parent 20def974d5
commit f8c8e8de37
407 changed files with 6036 additions and 258 deletions
+34
View File
@@ -1,5 +1,39 @@
# @backstage/config-loader
## 1.5.0-next.0
### Minor Changes
- 9606ba0939e6: Deep visibility now also applies to values that are not covered by the configuration schema.
For example, given the following configuration schema:
```ts
// plugins/a/config.schema.ts
export interface Config {
/** @deepVisibility frontend */
a?: unknown;
}
// plugins/a/config.schema.ts
export interface Config {
a?: {
b?: string;
};
}
```
All values under `a` are now visible to the frontend, while previously only `a` and `a/b` would've been visible.
### Patch Changes
- f9657b891b00: Do not unnecessarily notify subscribers when no-op updates to config happen
- Updated dependencies
- @backstage/cli-common@0.1.12
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
## 1.4.0
### Minor Changes
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/config-loader",
"description": "Config loading functionality used by Backstage backend, and CLI",
"version": "1.4.0",
"version": "1.5.0-next.0",
"publishConfig": {
"access": "public",
"main": "dist/index.cjs.js",