github-webhook-handler 2.1.0 → 2.1.1
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 +7 -0
- package/package.json +7 -7
- package/tsconfig.json +1 -5
- package/types/tsconfig.tsbuildinfo +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [2.1.1](https://github.com/rvagg/github-webhook-handler/compare/v2.1.0...v2.1.1) (2026-04-02)
|
|
2
|
+
|
|
3
|
+
### Trivial Changes
|
|
4
|
+
|
|
5
|
+
* **deps-dev:** bump typescript from 5.9.3 to 6.0.2 ([864e973](https://github.com/rvagg/github-webhook-handler/commit/864e9739e3f9c7a45aabd806bf6475f267d32e0f))
|
|
6
|
+
* **deps:** update deps and upgrade to typescript 6 ([5a07637](https://github.com/rvagg/github-webhook-handler/commit/5a076370d0a47ee1b680e16228a7aae006297172))
|
|
7
|
+
|
|
1
8
|
## [2.1.0](https://github.com/rvagg/github-webhook-handler/compare/v2.0.0...v2.1.0) (2026-01-28)
|
|
2
9
|
|
|
3
10
|
### Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "github-webhook-handler",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.1",
|
|
4
4
|
"description": "Web handler / middleware for processing GitHub Webhooks",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "github-webhook-handler.js",
|
|
@@ -39,14 +39,14 @@
|
|
|
39
39
|
"@semantic-release/changelog": "^6.0.3",
|
|
40
40
|
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
41
41
|
"@semantic-release/git": "^10.0.1",
|
|
42
|
-
"@semantic-release/github": "^12.0.
|
|
43
|
-
"@semantic-release/npm": "^13.1.
|
|
42
|
+
"@semantic-release/github": "^12.0.6",
|
|
43
|
+
"@semantic-release/npm": "^13.1.5",
|
|
44
44
|
"@semantic-release/release-notes-generator": "^14.1.0",
|
|
45
|
-
"@types/node": "^25.0
|
|
46
|
-
"conventional-changelog-conventionalcommits": "^9.
|
|
47
|
-
"semantic-release": "^25.0.
|
|
45
|
+
"@types/node": "^25.5.0",
|
|
46
|
+
"conventional-changelog-conventionalcommits": "^9.3.0",
|
|
47
|
+
"semantic-release": "^25.0.3",
|
|
48
48
|
"standard": "^17.1.2",
|
|
49
|
-
"typescript": "^
|
|
49
|
+
"typescript": "^6.0.2"
|
|
50
50
|
},
|
|
51
51
|
"release": {
|
|
52
52
|
"branches": [
|
package/tsconfig.json
CHANGED
|
@@ -25,11 +25,7 @@
|
|
|
25
25
|
"skipLibCheck": true,
|
|
26
26
|
"stripInternal": true,
|
|
27
27
|
"resolveJsonModule": true,
|
|
28
|
-
"
|
|
29
|
-
"emitDeclarationOnly": true,
|
|
30
|
-
"paths": {
|
|
31
|
-
"github-webhook-handler": ["github-webhook-handler.js"]
|
|
32
|
-
}
|
|
28
|
+
"emitDeclarationOnly": true
|
|
33
29
|
},
|
|
34
30
|
"include": ["github-webhook-handler.js"],
|
|
35
31
|
"exclude": ["node_modules"],
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"root":["../github-webhook-handler.js"],"version":"5.9.3"}
|