Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/user/reference/cli/azldev_component.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

89 changes: 89 additions & 0 deletions docs/user/reference/cli/azldev_component_metadata.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions docs/user/reference/config/overlays.md
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,10 @@ section = "%changelog"
lines = ["- Fix CVE-2024-1234"]
```

### Inspecting overlay metadata

Use `azldev component metadata` to list documentation metadata for one or more components. By default it lists metadata from both sources — component overlays and the component groups each component belongs to — tagging each row with its `source`, and shows only entries that carry a `[metadata]` block. Pass `--overlays` or `--groups` to restrict to one source. The command is read-only and supports `--category` and `--upstream-status` filters; output is available as a table (default) or JSON (`-O json`).

## Examples

### Adding a Build Dependency
Expand Down
1 change: 1 addition & 0 deletions internal/app/azldev/cmds/component/component.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,5 @@ components defined in the project configuration.`,
queryOnAppInit(app, cmd)
renderOnAppInit(app, cmd)
updateOnAppInit(app, cmd)
metadataOnAppInit(app, cmd)
}
Loading
Loading