@backstage/plugin-events-backend 0.4.0-next.1 → 0.4.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 +35 -0
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,40 @@
|
|
|
1
1
|
# @backstage/plugin-events-backend
|
|
2
2
|
|
|
3
|
+
## 0.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 384e494: Internal updates to generated code.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 1577511: Allow configuring a timeout for event bus polling requests. This can be set like so in your app-config:
|
|
12
|
+
|
|
13
|
+
```yaml
|
|
14
|
+
events:
|
|
15
|
+
notifyTimeoutMs: 30000
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
- @backstage/backend-plugin-api@1.1.0
|
|
20
|
+
- @backstage/plugin-events-node@0.4.6
|
|
21
|
+
- @backstage/backend-openapi-utils@0.4.0
|
|
22
|
+
- @backstage/errors@1.2.6
|
|
23
|
+
- @backstage/config@1.3.1
|
|
24
|
+
- @backstage/types@1.2.0
|
|
25
|
+
|
|
26
|
+
## 0.4.0-next.2
|
|
27
|
+
|
|
28
|
+
### Patch Changes
|
|
29
|
+
|
|
30
|
+
- Updated dependencies
|
|
31
|
+
- @backstage/backend-plugin-api@1.1.0-next.2
|
|
32
|
+
- @backstage/backend-openapi-utils@0.4.0-next.2
|
|
33
|
+
- @backstage/errors@1.2.6-next.0
|
|
34
|
+
- @backstage/plugin-events-node@0.4.6-next.2
|
|
35
|
+
- @backstage/config@1.3.1-next.0
|
|
36
|
+
- @backstage/types@1.2.0
|
|
37
|
+
|
|
3
38
|
## 0.4.0-next.1
|
|
4
39
|
|
|
5
40
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-events-backend",
|
|
3
|
-
"version": "0.4.0
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"backstage": {
|
|
5
5
|
"role": "backend-plugin",
|
|
6
6
|
"pluginId": "events",
|
|
@@ -64,12 +64,12 @@
|
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
66
|
"@backstage/backend-common": "^0.25.0",
|
|
67
|
-
"@backstage/backend-openapi-utils": "0.
|
|
68
|
-
"@backstage/backend-plugin-api": "1.1.0
|
|
69
|
-
"@backstage/config": "1.3.
|
|
70
|
-
"@backstage/errors": "1.2.
|
|
71
|
-
"@backstage/plugin-events-node": "0.4.6
|
|
72
|
-
"@backstage/types": "1.2.0",
|
|
67
|
+
"@backstage/backend-openapi-utils": "^0.4.0",
|
|
68
|
+
"@backstage/backend-plugin-api": "^1.1.0",
|
|
69
|
+
"@backstage/config": "^1.3.1",
|
|
70
|
+
"@backstage/errors": "^1.2.6",
|
|
71
|
+
"@backstage/plugin-events-node": "^0.4.6",
|
|
72
|
+
"@backstage/types": "^1.2.0",
|
|
73
73
|
"@types/express": "^4.17.6",
|
|
74
74
|
"content-type": "^1.0.5",
|
|
75
75
|
"express": "^4.17.1",
|
|
@@ -78,12 +78,12 @@
|
|
|
78
78
|
"winston": "^3.2.1"
|
|
79
79
|
},
|
|
80
80
|
"devDependencies": {
|
|
81
|
-
"@backstage/backend-app-api": "1.1.0
|
|
82
|
-
"@backstage/backend-defaults": "0.6.0
|
|
83
|
-
"@backstage/backend-test-utils": "1.2.0
|
|
84
|
-
"@backstage/cli": "0.29.
|
|
85
|
-
"@backstage/plugin-events-backend-test-utils": "0.1.39
|
|
86
|
-
"@backstage/repo-tools": "0.12.0
|
|
81
|
+
"@backstage/backend-app-api": "^1.1.0",
|
|
82
|
+
"@backstage/backend-defaults": "^0.6.0",
|
|
83
|
+
"@backstage/backend-test-utils": "^1.2.0",
|
|
84
|
+
"@backstage/cli": "^0.29.4",
|
|
85
|
+
"@backstage/plugin-events-backend-test-utils": "^0.1.39",
|
|
86
|
+
"@backstage/repo-tools": "^0.12.0",
|
|
87
87
|
"@types/content-type": "^1.1.8",
|
|
88
88
|
"supertest": "^7.0.0"
|
|
89
89
|
},
|