@backstage/plugin-catalog-backend-module-incremental-ingestion 0.4.28-next.3 → 0.5.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 CHANGED
@@ -1,5 +1,25 @@
1
1
  # @backstage/plugin-catalog-backend-module-incremental-ingestion
2
2
 
3
+ ## 0.5.0
4
+
5
+ ### Minor Changes
6
+
7
+ - fc24d9e: Stop using `@backstage/backend-tasks` as it will be deleted in near future.
8
+
9
+ ### Patch Changes
10
+
11
+ - 389f5a4: Update deprecated url-reader-related imports.
12
+ - Updated dependencies
13
+ - @backstage/backend-plugin-api@0.8.0
14
+ - @backstage/backend-common@0.24.0
15
+ - @backstage/plugin-catalog-backend@1.25.0
16
+ - @backstage/plugin-permission-common@0.8.1
17
+ - @backstage/plugin-catalog-node@1.12.5
18
+ - @backstage/catalog-model@1.6.0
19
+ - @backstage/config@1.2.0
20
+ - @backstage/errors@1.2.4
21
+ - @backstage/plugin-events-node@0.3.9
22
+
3
23
  ## 0.4.28-next.3
4
24
 
5
25
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-backend-module-incremental-ingestion__alpha",
3
- "version": "0.4.28-next.3",
3
+ "version": "0.5.0",
4
4
  "main": "../dist/alpha.cjs.js",
5
5
  "types": "../dist/alpha.d.ts"
6
6
  }
package/dist/index.d.ts CHANGED
@@ -1,13 +1,13 @@
1
1
  /// <reference types="express" />
2
2
  import * as express from 'express';
3
- import { PluginDatabaseManager, UrlReader } from '@backstage/backend-common';
4
- import { PluginTaskScheduler } from '@backstage/backend-tasks';
3
+ import { PluginDatabaseManager } from '@backstage/backend-common';
5
4
  import { Config } from '@backstage/config';
6
5
  import { DeferredEntity } from '@backstage/plugin-catalog-node';
7
6
  import { EventParams, EventSubscriber } from '@backstage/plugin-events-node';
8
7
  import { PermissionEvaluator } from '@backstage/plugin-permission-common';
9
8
  import { DurationObjectUnits } from 'luxon';
10
9
  import { Logger } from 'winston';
10
+ import { SchedulerService, UrlReaderService } from '@backstage/backend-plugin-api';
11
11
  import { CatalogBuilder } from '@backstage/plugin-catalog-backend';
12
12
 
13
13
  /**
@@ -148,9 +148,9 @@ interface IncrementalEntityProviderOptions {
148
148
  type PluginEnvironment = {
149
149
  logger: Logger;
150
150
  database: PluginDatabaseManager;
151
- scheduler: PluginTaskScheduler;
151
+ scheduler: SchedulerService;
152
152
  config: Config;
153
- reader: UrlReader;
153
+ reader: UrlReaderService;
154
154
  permissions: PermissionEvaluator;
155
155
  };
156
156
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-backend-module-incremental-ingestion",
3
- "version": "0.4.28-next.3",
3
+ "version": "0.5.0",
4
4
  "description": "An entity provider for streaming large asset sources into the catalog",
5
5
  "backstage": {
6
6
  "role": "backend-plugin-module",
@@ -50,16 +50,15 @@
50
50
  "test": "backstage-cli package test"
51
51
  },
52
52
  "dependencies": {
53
- "@backstage/backend-common": "^0.23.4-next.3",
54
- "@backstage/backend-plugin-api": "^0.8.0-next.3",
55
- "@backstage/backend-tasks": "^0.5.28-next.3",
56
- "@backstage/catalog-model": "^1.6.0-next.0",
53
+ "@backstage/backend-common": "^0.24.0",
54
+ "@backstage/backend-plugin-api": "^0.8.0",
55
+ "@backstage/catalog-model": "^1.6.0",
57
56
  "@backstage/config": "^1.2.0",
58
57
  "@backstage/errors": "^1.2.4",
59
- "@backstage/plugin-catalog-backend": "^1.24.1-next.3",
60
- "@backstage/plugin-catalog-node": "^1.12.5-next.3",
61
- "@backstage/plugin-events-node": "^0.3.9-next.3",
62
- "@backstage/plugin-permission-common": "^0.8.1-next.1",
58
+ "@backstage/plugin-catalog-backend": "^1.25.0",
59
+ "@backstage/plugin-catalog-node": "^1.12.5",
60
+ "@backstage/plugin-events-node": "^0.3.9",
61
+ "@backstage/plugin-permission-common": "^0.8.1",
63
62
  "@types/express": "^4.17.6",
64
63
  "@types/luxon": "^3.0.0",
65
64
  "express": "^4.17.1",
@@ -69,8 +68,8 @@
69
68
  "uuid": "^9.0.0"
70
69
  },
71
70
  "devDependencies": {
72
- "@backstage/backend-defaults": "^0.4.2-next.3",
73
- "@backstage/backend-test-utils": "^0.4.5-next.3",
74
- "@backstage/cli": "^0.27.0-next.4"
71
+ "@backstage/backend-defaults": "^0.4.2",
72
+ "@backstage/backend-test-utils": "^0.5.0",
73
+ "@backstage/cli": "^0.27.0"
75
74
  }
76
75
  }