@backstage/plugin-events-backend 0.3.16-next.3 → 0.3.16
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 +16 -0
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @backstage/plugin-events-backend
|
|
2
2
|
|
|
3
|
+
## 0.3.16
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- e02a02b: Fix `events.useEventBus` by propagating config to `DefaultEventsService`
|
|
8
|
+
- 9816f51: Add raw body information to `RequestDetails`
|
|
9
|
+
and use the raw body when validating incoming event requests.
|
|
10
|
+
- b7d0334: Cleaning up event subscriptions after the max age window
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @backstage/config@1.3.0
|
|
13
|
+
- @backstage/plugin-events-node@0.4.5
|
|
14
|
+
- @backstage/types@1.2.0
|
|
15
|
+
- @backstage/backend-plugin-api@1.0.2
|
|
16
|
+
- @backstage/backend-openapi-utils@0.3.0
|
|
17
|
+
- @backstage/errors@1.2.5
|
|
18
|
+
|
|
3
19
|
## 0.3.16-next.3
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-events-backend",
|
|
3
|
-
"version": "0.3.16
|
|
3
|
+
"version": "0.3.16",
|
|
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.3.0
|
|
68
|
-
"@backstage/backend-plugin-api": "1.0.2
|
|
69
|
-
"@backstage/config": "1.
|
|
70
|
-
"@backstage/errors": "1.2.
|
|
71
|
-
"@backstage/plugin-events-node": "0.4.5
|
|
72
|
-
"@backstage/types": "1.
|
|
67
|
+
"@backstage/backend-openapi-utils": "^0.3.0",
|
|
68
|
+
"@backstage/backend-plugin-api": "^1.0.2",
|
|
69
|
+
"@backstage/config": "^1.3.0",
|
|
70
|
+
"@backstage/errors": "^1.2.5",
|
|
71
|
+
"@backstage/plugin-events-node": "^0.4.5",
|
|
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.0.2
|
|
82
|
-
"@backstage/backend-defaults": "0.5.3
|
|
83
|
-
"@backstage/backend-test-utils": "1.1.0
|
|
84
|
-
"@backstage/cli": "0.29.0
|
|
85
|
-
"@backstage/plugin-events-backend-test-utils": "0.1.38
|
|
86
|
-
"@backstage/repo-tools": "0.11.0
|
|
81
|
+
"@backstage/backend-app-api": "^1.0.2",
|
|
82
|
+
"@backstage/backend-defaults": "^0.5.3",
|
|
83
|
+
"@backstage/backend-test-utils": "^1.1.0",
|
|
84
|
+
"@backstage/cli": "^0.29.0",
|
|
85
|
+
"@backstage/plugin-events-backend-test-utils": "^0.1.38",
|
|
86
|
+
"@backstage/repo-tools": "^0.11.0",
|
|
87
87
|
"@types/content-type": "^1.1.8",
|
|
88
88
|
"supertest": "^7.0.0"
|
|
89
89
|
},
|