@backstage/plugin-catalog-backend-module-unprocessed 0.4.5-next.1 → 0.4.5-next.2
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 +9 -0
- package/README.md +7 -11
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend-module-unprocessed
|
|
2
2
|
|
|
3
|
+
## 0.4.5-next.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- b192752: Updated `README.md` to point to `packages/backend` instead of `packages/backend-next`.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/plugin-catalog-node@1.12.0-next.2
|
|
10
|
+
- @backstage/backend-common@0.22.0-next.2
|
|
11
|
+
|
|
3
12
|
## 0.4.5-next.1
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -14,7 +14,13 @@ A `pending` entity has not been processed yet.
|
|
|
14
14
|
yarn --cwd packages/backend add @backstage/plugin-catalog-backend-module-unprocessed
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
In `packages/backend/src/index.ts` add the module:
|
|
18
|
+
|
|
19
|
+
```ts title="packages/backend/src/index.ts"
|
|
20
|
+
backend.add(catalogModuleUnprocessedEntities());
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
### Legacy Backend
|
|
18
24
|
|
|
19
25
|
In `packages/backend/src/plugins/catalog.ts` import the module and initialize it after invoking `CatalogBuilder.build()`:
|
|
20
26
|
|
|
@@ -29,13 +35,3 @@ const unprocessed = new UnprocessedEntitiesModule(
|
|
|
29
35
|
);
|
|
30
36
|
unprocessed.registerRoutes();
|
|
31
37
|
```
|
|
32
|
-
|
|
33
|
-
### backend-next
|
|
34
|
-
|
|
35
|
-
In `packages/backend-next/src/index.ts` add the module:
|
|
36
|
-
|
|
37
|
-
```ts title="packages/backend-next/src/index.ts"
|
|
38
|
-
backend.add(catalogModuleUnprocessedEntities());
|
|
39
|
-
```
|
|
40
|
-
|
|
41
|
-
_This plugin was created through the Backstage CLI_
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-backend-module-unprocessed",
|
|
3
|
-
"version": "0.4.5-next.
|
|
3
|
+
"version": "0.4.5-next.2",
|
|
4
4
|
"description": "Backstage Catalog module to view unprocessed entities",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module"
|
|
@@ -31,19 +31,19 @@
|
|
|
31
31
|
"test": "backstage-cli package test"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@backstage/backend-common": "^0.22.0-next.
|
|
34
|
+
"@backstage/backend-common": "^0.22.0-next.2",
|
|
35
35
|
"@backstage/backend-plugin-api": "^0.6.18-next.1",
|
|
36
36
|
"@backstage/catalog-model": "^1.5.0-next.0",
|
|
37
37
|
"@backstage/errors": "^1.2.4",
|
|
38
38
|
"@backstage/plugin-auth-node": "^0.4.13-next.1",
|
|
39
|
-
"@backstage/plugin-catalog-node": "^1.
|
|
39
|
+
"@backstage/plugin-catalog-node": "^1.12.0-next.2",
|
|
40
40
|
"@backstage/plugin-catalog-unprocessed-entities-common": "^0.0.1",
|
|
41
41
|
"@backstage/plugin-permission-common": "^0.7.13",
|
|
42
42
|
"express-promise-router": "^4.1.1",
|
|
43
43
|
"knex": "^3.0.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@backstage/cli": "^0.26.5-next.
|
|
46
|
+
"@backstage/cli": "^0.26.5-next.1",
|
|
47
47
|
"@types/express": "^4.17.6"
|
|
48
48
|
}
|
|
49
49
|
}
|