@backstage/plugin-events-node 0.3.8-next.1 → 0.3.9-next.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,20 @@
1
1
  # @backstage/plugin-events-node
2
2
 
3
+ ## 0.3.9-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/backend-plugin-api@0.7.1-next.0
9
+
10
+ ## 0.3.8
11
+
12
+ ### Patch Changes
13
+
14
+ - b05e1e1: Service factories exported by this package have been updated to use the new service factory format that doesn't use a callback.
15
+ - Updated dependencies
16
+ - @backstage/backend-plugin-api@0.7.0
17
+
3
18
  ## 0.3.8-next.1
4
19
 
5
20
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-events-node__alpha",
3
- "version": "0.3.8-next.1",
3
+ "version": "0.3.9-next.0",
4
4
  "main": "../dist/alpha.cjs.js",
5
5
  "types": "../dist/alpha.d.ts"
6
6
  }
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: () => _backstage_backend_plugin_api.ServiceFactory<EventsService, "plugin">;
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-next.1",
3
+ "version": "0.3.9-next.0",
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.6.22-next.1"
53
+ "@backstage/backend-plugin-api": "^0.7.1-next.0"
54
54
  },
55
55
  "devDependencies": {
56
- "@backstage/backend-common": "^0.23.3-next.1",
57
- "@backstage/backend-test-utils": "^0.4.4-next.1",
58
- "@backstage/cli": "^0.26.11-next.1"
56
+ "@backstage/backend-common": "^0.23.4-next.0",
57
+ "@backstage/backend-test-utils": "^0.4.5-next.0",
58
+ "@backstage/cli": "^0.27.0-next.0"
59
59
  }
60
60
  }