@backstage/plugin-catalog-backend-module-incremental-ingestion 0.6.1-next.2 → 0.6.1
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 +23 -0
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend-module-incremental-ingestion
|
|
2
2
|
|
|
3
|
+
## 0.6.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- dfc8b41: Updated dependency `@opentelemetry/api` to `^1.9.0`.
|
|
8
|
+
- cce9cae: Deprecate old-backend-system `IncrementalCatalogBuilder`
|
|
9
|
+
- fe87fbf: Add task metrics as two gauges that track the last start and end timestamps as epoch seconds.
|
|
10
|
+
- 5aa44d2: Wire up the events together in the new backend system
|
|
11
|
+
- d42ecb0: Remove backend-common package from incremental-ingestion plugin and update related code
|
|
12
|
+
- cbfc69e: Create a `dev/index.ts` entrypoint for `yarn start`
|
|
13
|
+
- 3ca5f70: Ensure that the scheduled worker task doesn't run at an unreasonably high frequency
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
- @backstage/backend-defaults@0.6.0
|
|
16
|
+
- @backstage/plugin-catalog-backend@1.29.0
|
|
17
|
+
- @backstage/backend-plugin-api@1.1.0
|
|
18
|
+
- @backstage/plugin-catalog-node@1.15.0
|
|
19
|
+
- @backstage/plugin-events-node@0.4.6
|
|
20
|
+
- @backstage/errors@1.2.6
|
|
21
|
+
- @backstage/catalog-model@1.7.2
|
|
22
|
+
- @backstage/config@1.3.1
|
|
23
|
+
- @backstage/types@1.2.0
|
|
24
|
+
- @backstage/plugin-permission-common@0.8.3
|
|
25
|
+
|
|
3
26
|
## 0.6.1-next.2
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-backend-module-incremental-ingestion",
|
|
3
|
-
"version": "0.6.1
|
|
3
|
+
"version": "0.6.1",
|
|
4
4
|
"description": "An entity provider for streaming large asset sources into the catalog",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
@@ -61,16 +61,16 @@
|
|
|
61
61
|
"test": "backstage-cli package test"
|
|
62
62
|
},
|
|
63
63
|
"dependencies": {
|
|
64
|
-
"@backstage/backend-defaults": "0.6.0
|
|
65
|
-
"@backstage/backend-plugin-api": "1.1.0
|
|
66
|
-
"@backstage/catalog-model": "1.7.2
|
|
67
|
-
"@backstage/config": "1.3.1
|
|
68
|
-
"@backstage/errors": "1.2.6
|
|
69
|
-
"@backstage/plugin-catalog-backend": "1.29.0
|
|
70
|
-
"@backstage/plugin-catalog-node": "1.15.0
|
|
71
|
-
"@backstage/plugin-events-node": "0.4.6
|
|
72
|
-
"@backstage/plugin-permission-common": "0.8.3
|
|
73
|
-
"@backstage/types": "1.2.0",
|
|
64
|
+
"@backstage/backend-defaults": "^0.6.0",
|
|
65
|
+
"@backstage/backend-plugin-api": "^1.1.0",
|
|
66
|
+
"@backstage/catalog-model": "^1.7.2",
|
|
67
|
+
"@backstage/config": "^1.3.1",
|
|
68
|
+
"@backstage/errors": "^1.2.6",
|
|
69
|
+
"@backstage/plugin-catalog-backend": "^1.29.0",
|
|
70
|
+
"@backstage/plugin-catalog-node": "^1.15.0",
|
|
71
|
+
"@backstage/plugin-events-node": "^0.4.6",
|
|
72
|
+
"@backstage/plugin-permission-common": "^0.8.3",
|
|
73
|
+
"@backstage/types": "^1.2.0",
|
|
74
74
|
"@opentelemetry/api": "^1.9.0",
|
|
75
75
|
"@types/express": "^4.17.6",
|
|
76
76
|
"express": "^4.17.1",
|
|
@@ -80,8 +80,8 @@
|
|
|
80
80
|
"uuid": "^11.0.0"
|
|
81
81
|
},
|
|
82
82
|
"devDependencies": {
|
|
83
|
-
"@backstage/backend-test-utils": "1.2.0
|
|
84
|
-
"@backstage/cli": "0.29.
|
|
83
|
+
"@backstage/backend-test-utils": "^1.2.0",
|
|
84
|
+
"@backstage/cli": "^0.29.4",
|
|
85
85
|
"@types/luxon": "^3.0.0"
|
|
86
86
|
}
|
|
87
87
|
}
|