@backstage/plugin-events-node 0.4.3 → 0.4.4-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,27 @@
1
1
  # @backstage/plugin-events-node
2
2
 
3
- ## 0.4.3
3
+ ## 0.4.4-next.1
4
4
 
5
5
  ### Patch Changes
6
6
 
7
- - 7bd2fe9: Fix `events.useEventBus` by propagating config to `DefaultEventsService`
7
+ - Updated dependencies
8
+ - @backstage/backend-plugin-api@1.0.2-next.1
9
+ - @backstage/errors@1.2.4
10
+ - @backstage/types@1.1.1
8
11
 
9
- ## 0.4.2
12
+ ## 0.4.3-next.0
10
13
 
11
14
  ### Patch Changes
12
15
 
13
- - 52a5d21: Fixed an issue where subscribing to events threw an error and gave up too easily. Calling the subscribe method will cause the background polling loop to keep trying to connect to the events backend, even if the initial request fails.
16
+ - 4501631: Fixed an issue where subscribing to events threw an error and gave up too easily. Calling the subscribe method will cause the background polling loop to keep trying to connect to the events backend, even if the initial request fails.
14
17
 
15
18
  By default the events service will attempt to publish and subscribe to events from the events bus API in the events backend, but if it fails due to the events backend not being installed, it will bail and never try calling the API again. There is now a new `events.useEventBus` configuration and option for the `DefaultEventsService` that lets you control this behavior. You can set it to `'never'` to disabled API calls to the events backend completely, or `'always'` to never allow it to be disabled.
16
19
 
20
+ - e02a02b: Fix `events.useEventBus` by propagating config to `DefaultEventsService`
17
21
  - Updated dependencies
18
- - @backstage/backend-plugin-api@1.0.1
22
+ - @backstage/backend-plugin-api@1.0.2-next.0
23
+ - @backstage/errors@1.2.4
24
+ - @backstage/types@1.1.1
19
25
 
20
26
  ## 0.4.1
21
27
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-events-node__alpha",
3
- "version": "0.4.3",
3
+ "version": "0.4.4-next.1",
4
4
  "main": "../dist/alpha.cjs.js",
5
5
  "types": "../dist/alpha.d.ts"
6
6
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-events-node",
3
- "version": "0.4.3",
3
+ "version": "0.4.4-next.1",
4
4
  "description": "The plugin-events-node module for @backstage/plugin-events-backend",
5
5
  "backstage": {
6
6
  "role": "node-library",
@@ -51,16 +51,16 @@
51
51
  "test": "backstage-cli package test"
52
52
  },
53
53
  "dependencies": {
54
- "@backstage/backend-plugin-api": "^1.0.1",
55
- "@backstage/errors": "^1.2.4",
56
- "@backstage/types": "^1.1.1",
54
+ "@backstage/backend-plugin-api": "1.0.2-next.1",
55
+ "@backstage/errors": "1.2.4",
56
+ "@backstage/types": "1.1.1",
57
57
  "cross-fetch": "^4.0.0",
58
58
  "uri-template": "^2.0.0"
59
59
  },
60
60
  "devDependencies": {
61
61
  "@backstage/backend-common": "^0.25.0",
62
- "@backstage/backend-test-utils": "^1.0.2",
63
- "@backstage/cli": "^0.28.1",
62
+ "@backstage/backend-test-utils": "1.0.3-next.1",
63
+ "@backstage/cli": "0.29.0-next.1",
64
64
  "msw": "^1.0.0"
65
65
  },
66
66
  "configSchema": "config.d.ts"