@backstage/plugin-catalog-backend-module-incremental-ingestion 0.2.1 → 0.3.0-next.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 CHANGED
@@ -1,21 +1,43 @@
1
1
  # @backstage/plugin-catalog-backend-module-incremental-ingestion
2
2
 
3
- ## 0.2.1
3
+ ## 0.3.0-next.1
4
+
5
+ ### Minor Changes
6
+
7
+ - a811bd246c4: Added endpoint to get a list of known incremental entity providers
4
8
 
5
9
  ### Patch Changes
6
10
 
7
- - cbd09db1c0: Fix missing `dependencies` in `package.json`
11
+ - 6e612b58577: Move `@backstage/backend-defaults` to `devDependencies`
8
12
  - Updated dependencies
9
- - @backstage/backend-common@0.18.2
10
- - @backstage/backend-defaults@0.1.7
11
- - @backstage/backend-plugin-api@0.4.0
12
- - @backstage/backend-tasks@0.4.3
13
- - @backstage/catalog-model@1.2.0
13
+ - @backstage/errors@1.1.5-next.0
14
+ - @backstage/backend-common@0.18.3-next.1
15
+ - @backstage/plugin-catalog-backend@1.8.0-next.1
16
+ - @backstage/plugin-permission-common@0.7.4-next.0
17
+ - @backstage/backend-plugin-api@0.4.1-next.1
18
+ - @backstage/backend-tasks@0.4.4-next.1
19
+ - @backstage/config@1.0.7-next.0
20
+ - @backstage/catalog-model@1.2.1-next.1
21
+ - @backstage/plugin-catalog-node@1.3.4-next.1
22
+ - @backstage/plugin-events-node@0.2.4-next.1
23
+
24
+ ## 0.2.2-next.0
25
+
26
+ ### Patch Changes
27
+
28
+ - 928a12a9b3: Internal refactor of `/alpha` exports.
29
+ - bf611cf019: Fix missing `dependencies` in `package.json`
30
+ - Updated dependencies
31
+ - @backstage/plugin-catalog-backend@1.8.0-next.0
32
+ - @backstage/backend-tasks@0.4.4-next.0
33
+ - @backstage/backend-plugin-api@0.4.1-next.0
34
+ - @backstage/backend-defaults@0.1.8-next.0
35
+ - @backstage/backend-common@0.18.3-next.0
36
+ - @backstage/catalog-model@1.2.1-next.0
37
+ - @backstage/plugin-catalog-node@1.3.4-next.0
38
+ - @backstage/plugin-events-node@0.2.4-next.0
14
39
  - @backstage/config@1.0.6
15
40
  - @backstage/errors@1.1.4
16
- - @backstage/plugin-catalog-backend@1.7.2
17
- - @backstage/plugin-catalog-node@1.3.3
18
- - @backstage/plugin-events-node@0.2.3
19
41
  - @backstage/plugin-permission-common@0.7.3
20
42
 
21
43
  ## 0.2.0
package/README.md CHANGED
@@ -102,6 +102,7 @@ If you want to manage your incremental entity providers via REST endpoints, the
102
102
  | Method | Path | Description |
103
103
  | ------ | ------------------------------------------ | --------------------------------------------------------------------------------------------------------------------------- |
104
104
  | GET | `/incremental/health` | Checks the health of all incremental providers. Returns array of any unhealthy ones. |
105
+ | GET | `/incremental/providers` | Get a list of all known incremental entity providers |
105
106
  | GET | `/incremental/providers/:provider` | Checks the status of an incremental provider (resting, interstitial, etc). |
106
107
  | POST | `/incremental/providers/:provider/trigger` | Triggers a provider's next action immediately. E.g., if it's currently interstitial, it will trigger the next burst. |
107
108
  | POST | `/incremental/providers/:provider/start` | Stop the current ingestion cycle and start a new one immediately. |
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-backend-module-incremental-ingestion",
3
- "version": "0.2.1",
4
- "main": "../dist/index.cjs.js",
5
- "types": "../dist/index.alpha.d.ts"
3
+ "version": "0.3.0-next.1",
4
+ "main": "../dist/alpha.cjs.js",
5
+ "types": "../dist/alpha.d.ts"
6
6
  }