chore: update changeset a little

Signed-off-by: blam <ben@blam.sh>

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2024-03-13 19:04:32 +01:00
parent 319d58e796
commit 04ab59d00f
+8 -1
View File
@@ -4,6 +4,13 @@
'@backstage/plugin-catalog-unprocessed-entities-common': patch
---
Breaking change - `@backstage/plugin-catalog-backend-module-unprocessed`
**BREAKING**- the `@backstage/plugin-catalog-backend-module-unprocessed` now requires the `permissionsApi`.
If you're using this module in the old backend system you'll need to pass the `permissions` object to the `registerRoutes` method in `packages/backend/src/plugins/catalog.ts`.
No changes should be required if you're using the new backend system.
```diff
- unprocessed.registerRoutes();
+ unprocessed.registerRoutes({ permissions: env.permissions });
```
Adds the ability to delete an unprocessed entity from the `refresh_state` table. This change requires enabling permissions for your Backstage instance.