df61ca71dd
Signed-off-by: Johan Haals <johan.haals@gmail.com>
657 B
657 B
@backstage/plugin-catalog-backend
| @backstage/plugin-catalog-backend |
|---|
| minor |
Updated all processors to implement getProcessorName.
BREAKING: The CatalogProcessor interface now require that the CatalogProcessor class implements getProcessorName().
The processor name has previously defaulted processor class name. It's therefore recommended to keep your return the same name as the class name if you did not implement this method previously.
For example:
class CustomProcessor implements CatalogProcessor {
getProcessorName() {
// Use the same name as the class name if this method was not previously implemented.
return 'CustomProcessor';
}
}