@backstage/plugin-catalog-backend-module-incremental-ingestion 0.7.7-next.0 → 0.7.7
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 +31 -0
- package/dist/index.d.ts +2 -1
- package/package.json +15 -16
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend-module-incremental-ingestion
|
|
2
2
|
|
|
3
|
+
## 0.7.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0
|
|
8
|
+
- fb029b6: Updated luxon types
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
- @backstage/backend-defaults@0.14.0
|
|
11
|
+
- @backstage/plugin-catalog-backend@3.3.0
|
|
12
|
+
- @backstage/plugin-events-node@0.4.18
|
|
13
|
+
- @backstage/backend-plugin-api@1.6.0
|
|
14
|
+
- @backstage/plugin-catalog-node@1.20.1
|
|
15
|
+
|
|
16
|
+
## 0.7.7-next.1
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0
|
|
21
|
+
- fb029b6: Updated luxon types
|
|
22
|
+
- Updated dependencies
|
|
23
|
+
- @backstage/backend-defaults@0.14.0-next.1
|
|
24
|
+
- @backstage/plugin-catalog-backend@3.2.1-next.1
|
|
25
|
+
- @backstage/plugin-events-node@0.4.18-next.1
|
|
26
|
+
- @backstage/backend-plugin-api@1.6.0-next.1
|
|
27
|
+
- @backstage/catalog-model@1.7.6
|
|
28
|
+
- @backstage/config@1.3.6
|
|
29
|
+
- @backstage/errors@1.2.7
|
|
30
|
+
- @backstage/types@1.2.2
|
|
31
|
+
- @backstage/plugin-catalog-node@1.20.1-next.1
|
|
32
|
+
- @backstage/plugin-permission-common@0.9.3
|
|
33
|
+
|
|
3
34
|
## 0.7.7-next.0
|
|
4
35
|
|
|
5
36
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -191,4 +191,5 @@ declare const incrementalIngestionProvidersExtensionPoint: _backstage_backend_pl
|
|
|
191
191
|
*/
|
|
192
192
|
declare const catalogModuleIncrementalIngestionEntityProvider: _backstage_backend_plugin_api.BackendFeature;
|
|
193
193
|
|
|
194
|
-
export {
|
|
194
|
+
export { catalogModuleIncrementalIngestionEntityProvider as default, incrementalIngestionProvidersExtensionPoint };
|
|
195
|
+
export type { EntityIteratorResult, IncrementalEntityEventResult, IncrementalEntityProvider, IncrementalEntityProviderOptions, IncrementalIngestionProviderExtensionPoint };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-backend-module-incremental-ingestion",
|
|
3
|
-
"version": "0.7.7
|
|
3
|
+
"version": "0.7.7",
|
|
4
4
|
"description": "An entity provider for streaming large asset sources into the catalog",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
@@ -55,27 +55,26 @@
|
|
|
55
55
|
"test": "backstage-cli package test"
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@backstage/backend-defaults": "0.14.0
|
|
59
|
-
"@backstage/backend-plugin-api": "1.
|
|
60
|
-
"@backstage/catalog-model": "1.7.6",
|
|
61
|
-
"@backstage/config": "1.3.6",
|
|
62
|
-
"@backstage/errors": "1.2.7",
|
|
63
|
-
"@backstage/plugin-catalog-backend": "3.
|
|
64
|
-
"@backstage/plugin-catalog-node": "1.20.1
|
|
65
|
-
"@backstage/plugin-events-node": "0.4.18
|
|
66
|
-
"@backstage/plugin-permission-common": "0.9.3",
|
|
67
|
-
"@backstage/types": "1.2.2",
|
|
58
|
+
"@backstage/backend-defaults": "^0.14.0",
|
|
59
|
+
"@backstage/backend-plugin-api": "^1.6.0",
|
|
60
|
+
"@backstage/catalog-model": "^1.7.6",
|
|
61
|
+
"@backstage/config": "^1.3.6",
|
|
62
|
+
"@backstage/errors": "^1.2.7",
|
|
63
|
+
"@backstage/plugin-catalog-backend": "^3.3.0",
|
|
64
|
+
"@backstage/plugin-catalog-node": "^1.20.1",
|
|
65
|
+
"@backstage/plugin-events-node": "^0.4.18",
|
|
66
|
+
"@backstage/plugin-permission-common": "^0.9.3",
|
|
67
|
+
"@backstage/types": "^1.2.2",
|
|
68
68
|
"@opentelemetry/api": "^1.9.0",
|
|
69
|
-
"express": "^4.
|
|
69
|
+
"express": "^4.22.0",
|
|
70
70
|
"express-promise-router": "^4.1.0",
|
|
71
71
|
"knex": "^3.0.0",
|
|
72
72
|
"luxon": "^3.0.0",
|
|
73
73
|
"uuid": "^11.0.0"
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
76
|
-
"@backstage/backend-test-utils": "1.10.
|
|
77
|
-
"@backstage/cli": "0.
|
|
78
|
-
"@types/express": "^4.17.6"
|
|
79
|
-
"@types/luxon": "^3.0.0"
|
|
76
|
+
"@backstage/backend-test-utils": "^1.10.2",
|
|
77
|
+
"@backstage/cli": "^0.35.0",
|
|
78
|
+
"@types/express": "^4.17.6"
|
|
80
79
|
}
|
|
81
80
|
}
|