@backstage/plugin-catalog-backend-module-incremental-ingestion 0.4.6-next.1 → 0.4.6-next.3
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 +48 -0
- package/README.md +1 -1
- package/alpha/package.json +1 -1
- package/dist/alpha.cjs.js +1 -1
- package/dist/alpha.d.ts +1 -1
- package/package.json +15 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,53 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend-module-incremental-ingestion
|
|
2
2
|
|
|
3
|
+
## 0.4.6-next.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 71114ac50e02: The export for the new backend system has been moved to be the `default` export.
|
|
8
|
+
|
|
9
|
+
For example, if you are currently importing the plugin using the following pattern:
|
|
10
|
+
|
|
11
|
+
```ts
|
|
12
|
+
import { examplePlugin } from '@backstage/plugin-example-backend';
|
|
13
|
+
|
|
14
|
+
backend.add(examplePlugin);
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
It should be migrated to this:
|
|
18
|
+
|
|
19
|
+
```ts
|
|
20
|
+
backend.add(import('@backstage/plugin-example-backend'));
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
- Updated dependencies
|
|
24
|
+
- @backstage/plugin-catalog-backend@1.13.0-next.3
|
|
25
|
+
- @backstage/catalog-model@1.4.2-next.2
|
|
26
|
+
- @backstage/config@1.1.0-next.2
|
|
27
|
+
- @backstage/errors@1.2.2-next.0
|
|
28
|
+
- @backstage/plugin-permission-common@0.7.8-next.2
|
|
29
|
+
- @backstage/backend-plugin-api@0.6.3-next.3
|
|
30
|
+
- @backstage/backend-common@0.19.5-next.3
|
|
31
|
+
- @backstage/backend-tasks@0.5.8-next.3
|
|
32
|
+
- @backstage/plugin-catalog-node@1.4.4-next.3
|
|
33
|
+
- @backstage/plugin-events-node@0.2.12-next.3
|
|
34
|
+
|
|
35
|
+
## 0.4.6-next.2
|
|
36
|
+
|
|
37
|
+
### Patch Changes
|
|
38
|
+
|
|
39
|
+
- Updated dependencies
|
|
40
|
+
- @backstage/plugin-catalog-backend@1.13.0-next.2
|
|
41
|
+
- @backstage/config@1.1.0-next.1
|
|
42
|
+
- @backstage/backend-tasks@0.5.8-next.2
|
|
43
|
+
- @backstage/backend-common@0.19.5-next.2
|
|
44
|
+
- @backstage/plugin-catalog-node@1.4.4-next.2
|
|
45
|
+
- @backstage/backend-plugin-api@0.6.3-next.2
|
|
46
|
+
- @backstage/catalog-model@1.4.2-next.1
|
|
47
|
+
- @backstage/plugin-permission-common@0.7.8-next.1
|
|
48
|
+
- @backstage/errors@1.2.1
|
|
49
|
+
- @backstage/plugin-events-node@0.2.12-next.2
|
|
50
|
+
|
|
3
51
|
## 0.4.6-next.1
|
|
4
52
|
|
|
5
53
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ We created the Incremental Entity Provider to address all of the above issues. T
|
|
|
20
20
|
|
|
21
21
|
Incremental Entity Providers will wait a configurable interval before proceeding to the next burst.
|
|
22
22
|
|
|
23
|
-
Once the source has no more results, Incremental Entity Provider compares all entities annotated with `@backstage/incremental-entity-provider: <entity-provider-id>` against all marked entities to determine which entities committed by same entity provider were not marked during the last ingestion cycle. All unmarked entities are deleted at the end of the cycle. The Incremental Entity Provider rests for a fixed
|
|
23
|
+
Once the source has no more results, Incremental Entity Provider compares all entities annotated with `@backstage/incremental-entity-provider: <entity-provider-id>` against all marked entities to determine which entities committed by same entity provider were not marked during the last ingestion cycle. All unmarked entities are deleted at the end of the cycle. The Incremental Entity Provider rests for a fixed interval before restarting the ingestion process.
|
|
24
24
|
|
|
25
25
|

|
|
26
26
|
|
package/alpha/package.json
CHANGED
package/dist/alpha.cjs.js
CHANGED
|
@@ -141,6 +141,6 @@ const catalogModuleIncrementalIngestionEntityProvider = backendPluginApi.createB
|
|
|
141
141
|
}
|
|
142
142
|
});
|
|
143
143
|
|
|
144
|
-
exports
|
|
144
|
+
exports["default"] = catalogModuleIncrementalIngestionEntityProvider;
|
|
145
145
|
exports.incrementalIngestionProvidersExtensionPoint = incrementalIngestionProvidersExtensionPoint;
|
|
146
146
|
//# sourceMappingURL=alpha.cjs.js.map
|
package/dist/alpha.d.ts
CHANGED
|
@@ -54,4 +54,4 @@ declare const incrementalIngestionProvidersExtensionPoint: _backstage_backend_pl
|
|
|
54
54
|
*/
|
|
55
55
|
declare const catalogModuleIncrementalIngestionEntityProvider: () => _backstage_backend_plugin_api.BackendFeature;
|
|
56
56
|
|
|
57
|
-
export { IncrementalIngestionProviderExtensionPoint, catalogModuleIncrementalIngestionEntityProvider, incrementalIngestionProvidersExtensionPoint };
|
|
57
|
+
export { IncrementalIngestionProviderExtensionPoint, catalogModuleIncrementalIngestionEntityProvider as default, incrementalIngestionProvidersExtensionPoint };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-backend-module-incremental-ingestion",
|
|
3
3
|
"description": "An entity provider for streaming large asset sources into the catalog",
|
|
4
|
-
"version": "0.4.6-next.
|
|
4
|
+
"version": "0.4.6-next.3",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -43,16 +43,16 @@
|
|
|
43
43
|
"postpack": "backstage-cli package postpack"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@backstage/backend-common": "^0.19.5-next.
|
|
47
|
-
"@backstage/backend-plugin-api": "^0.6.3-next.
|
|
48
|
-
"@backstage/backend-tasks": "^0.5.8-next.
|
|
49
|
-
"@backstage/catalog-model": "^1.4.2-next.
|
|
50
|
-
"@backstage/config": "^1.1.0-next.
|
|
51
|
-
"@backstage/errors": "^1.2.
|
|
52
|
-
"@backstage/plugin-catalog-backend": "^1.13.0-next.
|
|
53
|
-
"@backstage/plugin-catalog-node": "^1.4.4-next.
|
|
54
|
-
"@backstage/plugin-events-node": "^0.2.12-next.
|
|
55
|
-
"@backstage/plugin-permission-common": "^0.7.8-next.
|
|
46
|
+
"@backstage/backend-common": "^0.19.5-next.3",
|
|
47
|
+
"@backstage/backend-plugin-api": "^0.6.3-next.3",
|
|
48
|
+
"@backstage/backend-tasks": "^0.5.8-next.3",
|
|
49
|
+
"@backstage/catalog-model": "^1.4.2-next.2",
|
|
50
|
+
"@backstage/config": "^1.1.0-next.2",
|
|
51
|
+
"@backstage/errors": "^1.2.2-next.0",
|
|
52
|
+
"@backstage/plugin-catalog-backend": "^1.13.0-next.3",
|
|
53
|
+
"@backstage/plugin-catalog-node": "^1.4.4-next.3",
|
|
54
|
+
"@backstage/plugin-events-node": "^0.2.12-next.3",
|
|
55
|
+
"@backstage/plugin-permission-common": "^0.7.8-next.2",
|
|
56
56
|
"@types/express": "^4.17.6",
|
|
57
57
|
"@types/luxon": "^3.0.0",
|
|
58
58
|
"express": "^4.17.1",
|
|
@@ -64,10 +64,10 @@
|
|
|
64
64
|
"winston": "^3.2.1"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
|
-
"@backstage/backend-app-api": "^0.5.3-next.
|
|
68
|
-
"@backstage/backend-defaults": "^0.2.3-next.
|
|
69
|
-
"@backstage/backend-test-utils": "^0.2.3-next.
|
|
70
|
-
"@backstage/cli": "^0.22.13-next.
|
|
67
|
+
"@backstage/backend-app-api": "^0.5.3-next.3",
|
|
68
|
+
"@backstage/backend-defaults": "^0.2.3-next.3",
|
|
69
|
+
"@backstage/backend-test-utils": "^0.2.3-next.3",
|
|
70
|
+
"@backstage/cli": "^0.22.13-next.3"
|
|
71
71
|
},
|
|
72
72
|
"files": [
|
|
73
73
|
"dist",
|