@backstage/plugin-events-node 0.4.6-next.1 → 0.4.6

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,31 @@
1
1
  # @backstage/plugin-events-node
2
2
 
3
+ ## 0.4.6
4
+
5
+ ### Patch Changes
6
+
7
+ - 79a06f6: Clarified purpose of subscriber ID in TSDoc for `EventsServiceSubscribeOptions`.
8
+ - 1577511: Allow configuring a timeout for event bus polling requests. This can be set like so in your app-config:
9
+
10
+ ```yaml
11
+ events:
12
+ notifyTimeoutMs: 30000
13
+ ```
14
+
15
+ - Updated dependencies
16
+ - @backstage/backend-plugin-api@1.1.0
17
+ - @backstage/errors@1.2.6
18
+ - @backstage/types@1.2.0
19
+
20
+ ## 0.4.6-next.2
21
+
22
+ ### Patch Changes
23
+
24
+ - Updated dependencies
25
+ - @backstage/backend-plugin-api@1.1.0-next.2
26
+ - @backstage/errors@1.2.6-next.0
27
+ - @backstage/types@1.2.0
28
+
3
29
  ## 0.4.6-next.1
4
30
 
5
31
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-events-node",
3
- "version": "0.4.6-next.1",
3
+ "version": "0.4.6",
4
4
  "description": "The plugin-events-node module for @backstage/plugin-events-backend",
5
5
  "backstage": {
6
6
  "role": "node-library",
@@ -60,15 +60,15 @@
60
60
  "test": "backstage-cli package test"
61
61
  },
62
62
  "dependencies": {
63
- "@backstage/backend-plugin-api": "1.1.0-next.1",
64
- "@backstage/errors": "1.2.5",
65
- "@backstage/types": "1.2.0",
63
+ "@backstage/backend-plugin-api": "^1.1.0",
64
+ "@backstage/errors": "^1.2.6",
65
+ "@backstage/types": "^1.2.0",
66
66
  "cross-fetch": "^4.0.0",
67
67
  "uri-template": "^2.0.0"
68
68
  },
69
69
  "devDependencies": {
70
- "@backstage/backend-test-utils": "1.2.0-next.1",
71
- "@backstage/cli": "0.29.3-next.1",
70
+ "@backstage/backend-test-utils": "^1.2.0",
71
+ "@backstage/cli": "^0.29.4",
72
72
  "msw": "^1.0.0"
73
73
  },
74
74
  "configSchema": "config.d.ts"