Version Packages

This commit is contained in:
github-actions[bot]
2024-11-19 11:21:20 +00:00
parent 48e63ab901
commit 1552f03186
511 changed files with 5501 additions and 1734 deletions
+18
View File
@@ -1,5 +1,23 @@
# @backstage/plugin-events-node
## 0.4.5
### Patch Changes
- 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.
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.
- e02a02b: Fix `events.useEventBus` by propagating config to `DefaultEventsService`
- 9816f51: Add raw body information to `RequestDetails`
and use the raw body when validating incoming event requests.
- 5d74716: Remove unused backend-common dependency
- 0b57aa1: Fixed an issue where the event bus polling would duplicate and increase exponentially over time.
- Updated dependencies
- @backstage/types@1.2.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/errors@1.2.5
## 0.4.5-next.3
### Patch Changes