@backstage/plugin-events-backend-module-azure 0.2.33-next.1 → 0.2.33
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 +9 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @backstage/plugin-events-backend-module-azure
|
|
2
2
|
|
|
3
|
+
## 0.2.33
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 9d23b9e: Added HTTP POST webhook ingress endpoint for Azure DevOps events, matching the pattern established by the GitHub events module. The ingress endpoint is only registered when `events.modules.azureDevOps.webhookSecret` is configured; without it, no route is exposed. Incoming requests are validated against the `x-ado-webhook-secret` custom header using timing-safe comparison.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/backend-plugin-api@1.9.3
|
|
10
|
+
- @backstage/plugin-events-node@0.4.24
|
|
11
|
+
|
|
3
12
|
## 0.2.33-next.1
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-events-backend-module-azure",
|
|
3
|
-
"version": "0.2.33
|
|
3
|
+
"version": "0.2.33",
|
|
4
4
|
"backstage": {
|
|
5
5
|
"role": "backend-plugin-module",
|
|
6
6
|
"pluginId": "events",
|
|
@@ -61,15 +61,15 @@
|
|
|
61
61
|
"test": "backstage-cli package test"
|
|
62
62
|
},
|
|
63
63
|
"dependencies": {
|
|
64
|
-
"@backstage/backend-plugin-api": "1.9.3
|
|
65
|
-
"@backstage/config": "1.3.8",
|
|
66
|
-
"@backstage/plugin-events-node": "0.4.24
|
|
64
|
+
"@backstage/backend-plugin-api": "^1.9.3",
|
|
65
|
+
"@backstage/config": "^1.3.8",
|
|
66
|
+
"@backstage/plugin-events-node": "^0.4.24"
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
69
|
-
"@backstage/backend-test-utils": "1.11.5
|
|
70
|
-
"@backstage/cli": "0.36.4
|
|
71
|
-
"@backstage/plugin-events-backend": "0.6.4
|
|
72
|
-
"@backstage/plugin-events-backend-test-utils": "0.1.57
|
|
69
|
+
"@backstage/backend-test-utils": "^1.11.5",
|
|
70
|
+
"@backstage/cli": "^0.36.4",
|
|
71
|
+
"@backstage/plugin-events-backend": "^0.6.4",
|
|
72
|
+
"@backstage/plugin-events-backend-test-utils": "^0.1.57",
|
|
73
73
|
"supertest": "^7.0.0"
|
|
74
74
|
},
|
|
75
75
|
"configSchema": "config.schema.json"
|