@backstage/plugin-catalog-backend 0.19.2 → 0.21.0-next.0
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 +136 -0
- package/dist/index.cjs.js +904 -1873
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +149 -571
- package/migrations/20220116144621_remove_legacy.js +28 -0
- package/package.json +15 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,141 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend
|
|
2
2
|
|
|
3
|
+
## 0.21.0-next.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 9f2a8dc423: **BREAKING**: Removed all remnants of the old catalog engine implementation.
|
|
8
|
+
|
|
9
|
+
The old implementation has been deprecated for over half a year. To ensure that
|
|
10
|
+
you are not using the old implementation, check that your
|
|
11
|
+
`packages/backend/src/plugins/catalog.ts` creates the catalog builder using
|
|
12
|
+
`CatalogBuilder.create`. If you instead call `new CatalogBuilder`, you are on
|
|
13
|
+
the old implementation and will experience breakage if you upgrade to this
|
|
14
|
+
version. If you are still on the old version, see [the relevant change log
|
|
15
|
+
entry](https://github.com/backstage/backstage/blob/master/plugins/catalog-backend/CHANGELOG.md#patch-changes-27)
|
|
16
|
+
for migration instructions.
|
|
17
|
+
|
|
18
|
+
The minimal `packages/backend/src/plugins/catalog.ts` file is now:
|
|
19
|
+
|
|
20
|
+
```ts
|
|
21
|
+
export default async function createPlugin(
|
|
22
|
+
env: PluginEnvironment,
|
|
23
|
+
): Promise<Router> {
|
|
24
|
+
const builder = await CatalogBuilder.create(env);
|
|
25
|
+
builder.addProcessor(new ScaffolderEntitiesProcessor());
|
|
26
|
+
const { processingEngine, router } = await builder.build();
|
|
27
|
+
await processingEngine.start();
|
|
28
|
+
return router;
|
|
29
|
+
}
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
The following classes and interfaces have been removed:
|
|
33
|
+
|
|
34
|
+
- The `CatalogBuilder` constructor (see above; use `CatalogBuilder.create`
|
|
35
|
+
instead)
|
|
36
|
+
- `AddLocationResult`
|
|
37
|
+
- `CommonDatabase`
|
|
38
|
+
- `CreateDatabaseOptions`
|
|
39
|
+
- `createNextRouter` (use `createRouter` instead - or preferably, use the
|
|
40
|
+
`router` field returned for you by `catalogBuilder.build()`)
|
|
41
|
+
- `Database`
|
|
42
|
+
- `DatabaseEntitiesCatalog` (use `EntitiesCatalog` instead)
|
|
43
|
+
- `DatabaseLocationsCatalog` (use `LocationService` instead)
|
|
44
|
+
- `DatabaseLocationUpdateLogEvent`
|
|
45
|
+
- `DatabaseLocationUpdateLogStatus`
|
|
46
|
+
- `DatabaseManager`
|
|
47
|
+
- `DbEntitiesRequest`
|
|
48
|
+
- `DbEntitiesResponse`
|
|
49
|
+
- `DbEntityRequest`
|
|
50
|
+
- `DbEntityResponse`
|
|
51
|
+
- `DbLocationsRow`
|
|
52
|
+
- `DbLocationsRowWithStatus`
|
|
53
|
+
- `DbPageInfo`
|
|
54
|
+
- `EntitiesCatalog.batchAddOrUpdateEntities` (was only used by the legacy
|
|
55
|
+
engine)
|
|
56
|
+
- `EntityUpsertRequest`
|
|
57
|
+
- `EntityUpsertResponse`
|
|
58
|
+
- `HigherOrderOperation`
|
|
59
|
+
- `HigherOrderOperations`
|
|
60
|
+
- `LocationReader`
|
|
61
|
+
- `LocationReaders`
|
|
62
|
+
- `LocationResponse`
|
|
63
|
+
- `LocationsCatalog`
|
|
64
|
+
- `LocationUpdateLogEvent`
|
|
65
|
+
- `LocationUpdateStatus`
|
|
66
|
+
- `NextCatalogBuilder` (use `CatalogBuilder.create` instead)
|
|
67
|
+
- `NextRouterOptions` (use `RouterOptions` instead)
|
|
68
|
+
- `ReadLocationEntity`
|
|
69
|
+
- `ReadLocationError`
|
|
70
|
+
- `ReadLocationResult`
|
|
71
|
+
- `Transaction`
|
|
72
|
+
|
|
73
|
+
The `RouterOptions` interface has been un-deprecated, and has instead found use
|
|
74
|
+
for passing into `createRouter`. Its shape has been significantly changed to
|
|
75
|
+
accommodate the new router.
|
|
76
|
+
|
|
77
|
+
### Patch Changes
|
|
78
|
+
|
|
79
|
+
- e15ce5c16e: Integrate authorization into the delete entities endpoint
|
|
80
|
+
- dce98a92f7: Now when entities are deleted, the parent entity state is updated such that it will "heal" accidental deletes on the next refresh round.
|
|
81
|
+
- 02687954ca: Fixed a typo and made a little clarification to a warning message
|
|
82
|
+
- 48248e2db5: Integrate permissions into entity ancestry endpoint in catalog-backend
|
|
83
|
+
- 68edbbeafd: Fix bug with resource loading in permission integration
|
|
84
|
+
- 2b27e49eb1: Internal update to match status field changes in `@backstage/catalog-model`.
|
|
85
|
+
- Updated dependencies
|
|
86
|
+
- @backstage/plugin-permission-common@0.4.0-next.0
|
|
87
|
+
- @backstage/backend-common@0.10.4-next.0
|
|
88
|
+
- @backstage/config@0.1.13-next.0
|
|
89
|
+
- @backstage/plugin-permission-node@0.4.0-next.0
|
|
90
|
+
- @backstage/catalog-model@0.9.10-next.0
|
|
91
|
+
- @backstage/plugin-catalog-common@0.1.1-next.0
|
|
92
|
+
- @backstage/catalog-client@0.5.5-next.0
|
|
93
|
+
- @backstage/integration@0.7.2-next.0
|
|
94
|
+
|
|
95
|
+
## 0.20.0
|
|
96
|
+
|
|
97
|
+
### Minor Changes
|
|
98
|
+
|
|
99
|
+
- cd529c4094: In order to integrate the permissions system with the refresh endpoint in catalog-backend, a new AuthorizedRefreshService was created as a thin wrapper around the existing refresh service which performs authorization and handles the case when authorization is denied. In order to instantiate AuthorizedRefreshService, a permission client is required, which was added as a new field to `CatalogEnvironment`.
|
|
100
|
+
|
|
101
|
+
The new `permissions` field in `CatalogEnvironment` should already receive the permission client from the `PluginEnvrionment`, so there should be no changes required to the catalog backend setup. See [the create-app changelog](https://github.com/backstage/backstage/blob/master/packages/create-app/CHANGELOG.md) for more details.
|
|
102
|
+
|
|
103
|
+
### Patch Changes
|
|
104
|
+
|
|
105
|
+
- 0ae759dad4: Add catalog permission rules.
|
|
106
|
+
- 3b4d8caff6: Allow a custom GithubCredentialsProvider to be passed to the GitHub processors.
|
|
107
|
+
- 6fd70f8bc8: Provide support for Bitbucket servers with custom BaseURLs.
|
|
108
|
+
- 5333451def: Cleaned up API exports
|
|
109
|
+
- 730d01ab1a: Add apply-conditions endpoint for evaluating conditional permissions in catalog backend.
|
|
110
|
+
- 0a6c68582a: Add authorization to catalog-backend entities GET endpoints
|
|
111
|
+
- Updated dependencies
|
|
112
|
+
- @backstage/config@0.1.12
|
|
113
|
+
- @backstage/integration@0.7.1
|
|
114
|
+
- @backstage/backend-common@0.10.3
|
|
115
|
+
- @backstage/plugin-permission-node@0.3.0
|
|
116
|
+
- @backstage/errors@0.2.0
|
|
117
|
+
- @backstage/catalog-client@0.5.4
|
|
118
|
+
- @backstage/catalog-model@0.9.9
|
|
119
|
+
- @backstage/plugin-permission-common@0.3.1
|
|
120
|
+
|
|
121
|
+
## 0.19.4
|
|
122
|
+
|
|
123
|
+
### Patch Changes
|
|
124
|
+
|
|
125
|
+
- 7d4b4e937c: Uptake changes to the GitHub Credentials Provider interface.
|
|
126
|
+
- 3a63491c5f: Filter out projects with missing `default_branch` from GitLab Discovery.
|
|
127
|
+
- Updated dependencies
|
|
128
|
+
- @backstage/backend-common@0.10.1
|
|
129
|
+
- @backstage/integration@0.7.0
|
|
130
|
+
|
|
131
|
+
## 0.19.3
|
|
132
|
+
|
|
133
|
+
### Patch Changes
|
|
134
|
+
|
|
135
|
+
- Updated dependencies
|
|
136
|
+
- @backstage/backend-common@0.10.0
|
|
137
|
+
- @backstage/catalog-client@0.5.3
|
|
138
|
+
|
|
3
139
|
## 0.19.2
|
|
4
140
|
|
|
5
141
|
### Patch Changes
|