@backstage/plugin-events-node 0.3.8-next.1 → 0.3.8
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 +8 -0
- package/alpha/package.json +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @backstage/plugin-events-node
|
|
2
2
|
|
|
3
|
+
## 0.3.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- b05e1e1: Service factories exported by this package have been updated to use the new service factory format that doesn't use a callback.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/backend-plugin-api@0.7.0
|
|
10
|
+
|
|
3
11
|
## 0.3.8-next.1
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -258,6 +258,6 @@ interface EventPublisher {
|
|
|
258
258
|
*/
|
|
259
259
|
declare const eventsServiceRef: _backstage_backend_plugin_api.ServiceRef<EventsService, "plugin">;
|
|
260
260
|
/** @public */
|
|
261
|
-
declare const eventsServiceFactory:
|
|
261
|
+
declare const eventsServiceFactory: _backstage_backend_plugin_api.ServiceFactoryCompat<EventsService, "plugin", undefined>;
|
|
262
262
|
|
|
263
263
|
export { DefaultEventsService, type EventBroker, type EventParams, type EventPublisher, EventRouter, type EventSubscriber, type EventsService, type EventsServiceEventHandler, type EventsServiceSubscribeOptions, type HttpPostIngressOptions, type RequestDetails, type RequestRejectionDetails, type RequestValidationContext, type RequestValidator, SubTopicEventRouter, eventsServiceFactory, eventsServiceRef };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-events-node",
|
|
3
|
-
"version": "0.3.8
|
|
3
|
+
"version": "0.3.8",
|
|
4
4
|
"description": "The plugin-events-node module for @backstage/plugin-events-backend",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "node-library",
|
|
@@ -50,11 +50,11 @@
|
|
|
50
50
|
"test": "backstage-cli package test"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@backstage/backend-plugin-api": "^0.
|
|
53
|
+
"@backstage/backend-plugin-api": "^0.7.0"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@backstage/backend-common": "^0.23.3
|
|
57
|
-
"@backstage/backend-test-utils": "^0.4.4
|
|
58
|
-
"@backstage/cli": "^0.26.11
|
|
56
|
+
"@backstage/backend-common": "^0.23.3",
|
|
57
|
+
"@backstage/backend-test-utils": "^0.4.4",
|
|
58
|
+
"@backstage/cli": "^0.26.11"
|
|
59
59
|
}
|
|
60
60
|
}
|