@backstage/plugin-events-backend-module-github 0.2.14-next.3 → 0.2.14

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 +13 -0
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # @backstage/plugin-events-backend-module-github
2
2
 
3
+ ## 0.2.14
4
+
5
+ ### Patch Changes
6
+
7
+ - 9816f51: Fix the event request validation for incoming requests for GitHub webhook events
8
+ by using the raw body when verifying the signature.
9
+ - 9816f51: Add raw body information to `RequestDetails`
10
+ and use the raw body when validating incoming event requests.
11
+ - Updated dependencies
12
+ - @backstage/config@1.3.0
13
+ - @backstage/plugin-events-node@0.4.5
14
+ - @backstage/backend-plugin-api@1.0.2
15
+
3
16
  ## 0.2.14-next.3
4
17
 
5
18
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-events-backend-module-github",
3
- "version": "0.2.14-next.3",
3
+ "version": "0.2.14",
4
4
  "backstage": {
5
5
  "role": "backend-plugin-module",
6
6
  "pluginId": "events",
@@ -55,15 +55,15 @@
55
55
  "test": "backstage-cli package test"
56
56
  },
57
57
  "dependencies": {
58
- "@backstage/backend-plugin-api": "1.0.2-next.2",
59
- "@backstage/config": "1.2.0",
60
- "@backstage/plugin-events-node": "0.4.5-next.3",
58
+ "@backstage/backend-plugin-api": "^1.0.2",
59
+ "@backstage/config": "^1.3.0",
60
+ "@backstage/plugin-events-node": "^0.4.5",
61
61
  "@octokit/webhooks-methods": "^3.0.0"
62
62
  },
63
63
  "devDependencies": {
64
- "@backstage/backend-test-utils": "1.1.0-next.3",
65
- "@backstage/cli": "0.29.0-next.3",
66
- "@backstage/plugin-events-backend-test-utils": "0.1.38-next.3"
64
+ "@backstage/backend-test-utils": "^1.1.0",
65
+ "@backstage/cli": "^0.29.0",
66
+ "@backstage/plugin-events-backend-test-utils": "^0.1.38"
67
67
  },
68
68
  "configSchema": "config.d.ts"
69
69
  }