github-webhook-handler 2.1.0 → 2.1.2
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.
|
@@ -13,7 +13,7 @@ jobs:
|
|
|
13
13
|
- name: Checkout Repository
|
|
14
14
|
uses: actions/checkout@v6
|
|
15
15
|
- name: Use Node.js ${{ matrix.node }}
|
|
16
|
-
uses: actions/setup-node@v6
|
|
16
|
+
uses: actions/setup-node@v6.3.0
|
|
17
17
|
with:
|
|
18
18
|
node-version: ${{ matrix.node }}
|
|
19
19
|
- name: Install Dependencies
|
|
@@ -41,7 +41,7 @@ jobs:
|
|
|
41
41
|
with:
|
|
42
42
|
fetch-depth: 0
|
|
43
43
|
- name: Setup Node.js
|
|
44
|
-
uses: actions/setup-node@v6
|
|
44
|
+
uses: actions/setup-node@v6.3.0
|
|
45
45
|
with:
|
|
46
46
|
node-version: lts/*
|
|
47
47
|
registry-url: 'https://registry.npmjs.org'
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
## [2.1.2](https://github.com/rvagg/github-webhook-handler/compare/v2.1.1...v2.1.2) (2026-04-28)
|
|
2
|
+
|
|
3
|
+
### Trivial Changes
|
|
4
|
+
|
|
5
|
+
* **deps:** bump actions/setup-node from 6 to 6.3.0 ([#61](https://github.com/rvagg/github-webhook-handler/issues/61)) ([0a3abd5](https://github.com/rvagg/github-webhook-handler/commit/0a3abd581315883478437b0c567dd2a73c939dc4))
|
|
6
|
+
|
|
7
|
+
## [2.1.1](https://github.com/rvagg/github-webhook-handler/compare/v2.1.0...v2.1.1) (2026-04-02)
|
|
8
|
+
|
|
9
|
+
### Trivial Changes
|
|
10
|
+
|
|
11
|
+
* **deps-dev:** bump typescript from 5.9.3 to 6.0.2 ([864e973](https://github.com/rvagg/github-webhook-handler/commit/864e9739e3f9c7a45aabd806bf6475f267d32e0f))
|
|
12
|
+
* **deps:** update deps and upgrade to typescript 6 ([5a07637](https://github.com/rvagg/github-webhook-handler/commit/5a076370d0a47ee1b680e16228a7aae006297172))
|
|
13
|
+
|
|
1
14
|
## [2.1.0](https://github.com/rvagg/github-webhook-handler/compare/v2.0.0...v2.1.0) (2026-01-28)
|
|
2
15
|
|
|
3
16
|
### 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.2",
|
|
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"}
|