tai42-webhook-verifier-github 0.2.0__tar.gz → 0.2.2__tar.gz
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.
- {tai42_webhook_verifier_github-0.2.0/src/tai42_webhook_verifier_github.egg-info → tai42_webhook_verifier_github-0.2.2}/PKG-INFO +9 -11
- {tai42_webhook_verifier_github-0.2.0 → tai42_webhook_verifier_github-0.2.2}/README.md +4 -6
- {tai42_webhook_verifier_github-0.2.0 → tai42_webhook_verifier_github-0.2.2}/pyproject.toml +12 -13
- tai42_webhook_verifier_github-0.2.2/src/tai42_webhook_verifier_github/tai-plugin.yml +35 -0
- {tai42_webhook_verifier_github-0.2.0 → tai42_webhook_verifier_github-0.2.2/src/tai42_webhook_verifier_github.egg-info}/PKG-INFO +9 -11
- tai42_webhook_verifier_github-0.2.2/src/tai42_webhook_verifier_github.egg-info/requires.txt +1 -0
- tai42_webhook_verifier_github-0.2.0/src/tai42_webhook_verifier_github/tai-plugin.yml +0 -22
- tai42_webhook_verifier_github-0.2.0/src/tai42_webhook_verifier_github.egg-info/requires.txt +0 -1
- {tai42_webhook_verifier_github-0.2.0 → tai42_webhook_verifier_github-0.2.2}/LICENSE +0 -0
- {tai42_webhook_verifier_github-0.2.0 → tai42_webhook_verifier_github-0.2.2}/MANIFEST.in +0 -0
- {tai42_webhook_verifier_github-0.2.0 → tai42_webhook_verifier_github-0.2.2}/NOTICE +0 -0
- {tai42_webhook_verifier_github-0.2.0 → tai42_webhook_verifier_github-0.2.2}/setup.cfg +0 -0
- {tai42_webhook_verifier_github-0.2.0 → tai42_webhook_verifier_github-0.2.2}/src/tai42_webhook_verifier_github/__init__.py +0 -0
- {tai42_webhook_verifier_github-0.2.0 → tai42_webhook_verifier_github-0.2.2}/src/tai42_webhook_verifier_github/py.typed +0 -0
- {tai42_webhook_verifier_github-0.2.0 → tai42_webhook_verifier_github-0.2.2}/src/tai42_webhook_verifier_github/verifier.py +0 -0
- {tai42_webhook_verifier_github-0.2.0 → tai42_webhook_verifier_github-0.2.2}/src/tai42_webhook_verifier_github.egg-info/SOURCES.txt +0 -0
- {tai42_webhook_verifier_github-0.2.0 → tai42_webhook_verifier_github-0.2.2}/src/tai42_webhook_verifier_github.egg-info/dependency_links.txt +0 -0
- {tai42_webhook_verifier_github-0.2.0 → tai42_webhook_verifier_github-0.2.2}/src/tai42_webhook_verifier_github.egg-info/top_level.txt +0 -0
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tai42-webhook-verifier-github
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: GitHub webhook-signature verifier plugin for the TAI ecosystem: a per-provider WebhookVerifier that checks each delivery's X-Hub-Signature-256 HMAC before the payload is dispatched.
|
|
5
5
|
Author-email: tai42 <oss@tai42.ai>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
7
7
|
Project-URL: Homepage, https://tai42.ai
|
|
8
|
-
Project-URL: Repository, https://github.com/tai42ai/
|
|
9
|
-
Project-URL: Issues, https://github.com/tai42ai/
|
|
10
|
-
Project-URL: Changelog, https://github.com/tai42ai/
|
|
8
|
+
Project-URL: Repository, https://github.com/tai42ai/tai42/tree/main/plugins/webhook-verifier-github
|
|
9
|
+
Project-URL: Issues, https://github.com/tai42ai/tai42/issues
|
|
10
|
+
Project-URL: Changelog, https://github.com/tai42ai/tai42/blob/main/plugins/webhook-verifier-github/CHANGELOG.md
|
|
11
11
|
Keywords: tai,webhook,verifier,github,hmac,signature,security
|
|
12
12
|
Classifier: Development Status :: 4 - Beta
|
|
13
13
|
Classifier: Intended Audience :: Developers
|
|
@@ -20,12 +20,11 @@ Requires-Python: >=3.13
|
|
|
20
20
|
Description-Content-Type: text/markdown
|
|
21
21
|
License-File: LICENSE
|
|
22
22
|
License-File: NOTICE
|
|
23
|
-
Requires-Dist: tai42-contract<0.
|
|
23
|
+
Requires-Dist: tai42-contract<0.5,>=0.4
|
|
24
24
|
Dynamic: license-file
|
|
25
25
|
|
|
26
26
|
# tai42-webhook-verifier-github
|
|
27
27
|
|
|
28
|
-
[](https://github.com/tai42ai/tai-webhook-verifier-github/actions/workflows/ci.yml)
|
|
29
28
|
[](LICENSE)
|
|
30
29
|
|
|
31
30
|
The GitHub webhook-signature verifier plugin for the TAI ecosystem — a
|
|
@@ -67,14 +66,13 @@ server:
|
|
|
67
66
|
uv add tai42-webhook-verifier-github
|
|
68
67
|
```
|
|
69
68
|
|
|
70
|
-
Or from source — clone this repo and add it as an editable dependency
|
|
71
|
-
`
|
|
72
|
-
the sibling path.
|
|
69
|
+
Or from source — clone this repo and add it as an editable dependency; the
|
|
70
|
+
`tai42-*` dependencies resolve in-tree from the workspace.
|
|
73
71
|
|
|
74
72
|
```bash
|
|
75
|
-
git clone https://github.com/tai42ai/
|
|
73
|
+
git clone https://github.com/tai42ai/tai42 # next to your app checkout
|
|
76
74
|
cd /path/to/your/app
|
|
77
|
-
uv add --editable ../
|
|
75
|
+
uv add --editable ../tai42/plugins/webhook-verifier-github
|
|
78
76
|
```
|
|
79
77
|
|
|
80
78
|
## How it loads — `lifecycle_modules`
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
# tai42-webhook-verifier-github
|
|
2
2
|
|
|
3
|
-
[](https://github.com/tai42ai/tai-webhook-verifier-github/actions/workflows/ci.yml)
|
|
4
3
|
[](LICENSE)
|
|
5
4
|
|
|
6
5
|
The GitHub webhook-signature verifier plugin for the TAI ecosystem — a
|
|
@@ -42,14 +41,13 @@ server:
|
|
|
42
41
|
uv add tai42-webhook-verifier-github
|
|
43
42
|
```
|
|
44
43
|
|
|
45
|
-
Or from source — clone this repo and add it as an editable dependency
|
|
46
|
-
`
|
|
47
|
-
the sibling path.
|
|
44
|
+
Or from source — clone this repo and add it as an editable dependency; the
|
|
45
|
+
`tai42-*` dependencies resolve in-tree from the workspace.
|
|
48
46
|
|
|
49
47
|
```bash
|
|
50
|
-
git clone https://github.com/tai42ai/
|
|
48
|
+
git clone https://github.com/tai42ai/tai42 # next to your app checkout
|
|
51
49
|
cd /path/to/your/app
|
|
52
|
-
uv add --editable ../
|
|
50
|
+
uv add --editable ../tai42/plugins/webhook-verifier-github
|
|
53
51
|
```
|
|
54
52
|
|
|
55
53
|
## How it loads — `lifecycle_modules`
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "tai42-webhook-verifier-github"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.2"
|
|
8
8
|
description = "GitHub webhook-signature verifier plugin for the TAI ecosystem: a per-provider WebhookVerifier that checks each delivery's X-Hub-Signature-256 HMAC before the payload is dispatched."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.13"
|
|
@@ -24,18 +24,17 @@ classifiers = [
|
|
|
24
24
|
"Typing :: Typed",
|
|
25
25
|
]
|
|
26
26
|
dependencies = [
|
|
27
|
-
# The pure interface contract this verifier registers through
|
|
28
|
-
#
|
|
29
|
-
#
|
|
30
|
-
|
|
31
|
-
"tai42-contract>=0.2,<0.3",
|
|
27
|
+
# The pure interface contract this verifier registers through — the tai42_app
|
|
28
|
+
# handle and the WebhookVerifier / WebhookVerificationError types. The HMAC
|
|
29
|
+
# work is pure standard library (hmac / hashlib); no other tai-* dependency.
|
|
30
|
+
"tai42-contract>=0.4,<0.5",
|
|
32
31
|
]
|
|
33
32
|
|
|
34
33
|
[project.urls]
|
|
35
34
|
Homepage = "https://tai42.ai"
|
|
36
|
-
Repository = "https://github.com/tai42ai/
|
|
37
|
-
Issues = "https://github.com/tai42ai/
|
|
38
|
-
Changelog = "https://github.com/tai42ai/
|
|
35
|
+
Repository = "https://github.com/tai42ai/tai42/tree/main/plugins/webhook-verifier-github"
|
|
36
|
+
Issues = "https://github.com/tai42ai/tai42/issues"
|
|
37
|
+
Changelog = "https://github.com/tai42ai/tai42/blob/main/plugins/webhook-verifier-github/CHANGELOG.md"
|
|
39
38
|
|
|
40
39
|
[dependency-groups]
|
|
41
40
|
# Public dev/test tooling (installed by default with `uv sync`).
|
|
@@ -62,11 +61,11 @@ tai42_webhook_verifier_github = ["py.typed", "tai-plugin.yml"]
|
|
|
62
61
|
cache-keys = [{ file = "pyproject.toml" }]
|
|
63
62
|
|
|
64
63
|
|
|
65
|
-
# The version floors in [project] are the compatibility contract; these
|
|
66
|
-
#
|
|
67
|
-
# published packages. They are not part of wheel metadata.
|
|
64
|
+
# The version floors in [project] are the compatibility contract; these sources
|
|
65
|
+
# resolve the tai42-* requirements to the in-tree workspace members instead of
|
|
66
|
+
# the published packages. They are not part of wheel metadata.
|
|
68
67
|
[tool.uv.sources]
|
|
69
|
-
tai42-contract = {
|
|
68
|
+
tai42-contract = { workspace = true }
|
|
70
69
|
[tool.ruff]
|
|
71
70
|
src = ["src"]
|
|
72
71
|
target-version = "py313"
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
spec_version: 1
|
|
2
|
+
namespace: tai42
|
|
3
|
+
name: webhook-verifier-github
|
|
4
|
+
package: tai42-webhook-verifier-github
|
|
5
|
+
version: 0.2.2
|
|
6
|
+
description: >-
|
|
7
|
+
GitHub webhook-signature verifier plugin for the TAI ecosystem: a per-provider
|
|
8
|
+
WebhookVerifier that checks each delivery's X-Hub-Signature-256 HMAC before
|
|
9
|
+
the payload is dispatched.
|
|
10
|
+
license: Apache-2.0
|
|
11
|
+
homepage: https://tai42.ai
|
|
12
|
+
repository: https://github.com/tai42ai/tai42/tree/main/plugins/webhook-verifier-github
|
|
13
|
+
contract: '>=0.4,<0.5'
|
|
14
|
+
categories:
|
|
15
|
+
- webhooks
|
|
16
|
+
- security
|
|
17
|
+
tags:
|
|
18
|
+
- webhooks
|
|
19
|
+
- github
|
|
20
|
+
- hmac
|
|
21
|
+
- security
|
|
22
|
+
permissions:
|
|
23
|
+
network: false
|
|
24
|
+
subprocess: false
|
|
25
|
+
filesystem: false
|
|
26
|
+
provides:
|
|
27
|
+
- kind: webhook-verifier
|
|
28
|
+
name: github
|
|
29
|
+
module: tai42_webhook_verifier_github
|
|
30
|
+
description: >-
|
|
31
|
+
Verify a GitHub webhook delivery's X-Hub-Signature-256 HMAC before
|
|
32
|
+
dispatch.
|
|
33
|
+
tags:
|
|
34
|
+
- github
|
|
35
|
+
- hmac
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tai42-webhook-verifier-github
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: GitHub webhook-signature verifier plugin for the TAI ecosystem: a per-provider WebhookVerifier that checks each delivery's X-Hub-Signature-256 HMAC before the payload is dispatched.
|
|
5
5
|
Author-email: tai42 <oss@tai42.ai>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
7
7
|
Project-URL: Homepage, https://tai42.ai
|
|
8
|
-
Project-URL: Repository, https://github.com/tai42ai/
|
|
9
|
-
Project-URL: Issues, https://github.com/tai42ai/
|
|
10
|
-
Project-URL: Changelog, https://github.com/tai42ai/
|
|
8
|
+
Project-URL: Repository, https://github.com/tai42ai/tai42/tree/main/plugins/webhook-verifier-github
|
|
9
|
+
Project-URL: Issues, https://github.com/tai42ai/tai42/issues
|
|
10
|
+
Project-URL: Changelog, https://github.com/tai42ai/tai42/blob/main/plugins/webhook-verifier-github/CHANGELOG.md
|
|
11
11
|
Keywords: tai,webhook,verifier,github,hmac,signature,security
|
|
12
12
|
Classifier: Development Status :: 4 - Beta
|
|
13
13
|
Classifier: Intended Audience :: Developers
|
|
@@ -20,12 +20,11 @@ Requires-Python: >=3.13
|
|
|
20
20
|
Description-Content-Type: text/markdown
|
|
21
21
|
License-File: LICENSE
|
|
22
22
|
License-File: NOTICE
|
|
23
|
-
Requires-Dist: tai42-contract<0.
|
|
23
|
+
Requires-Dist: tai42-contract<0.5,>=0.4
|
|
24
24
|
Dynamic: license-file
|
|
25
25
|
|
|
26
26
|
# tai42-webhook-verifier-github
|
|
27
27
|
|
|
28
|
-
[](https://github.com/tai42ai/tai-webhook-verifier-github/actions/workflows/ci.yml)
|
|
29
28
|
[](LICENSE)
|
|
30
29
|
|
|
31
30
|
The GitHub webhook-signature verifier plugin for the TAI ecosystem — a
|
|
@@ -67,14 +66,13 @@ server:
|
|
|
67
66
|
uv add tai42-webhook-verifier-github
|
|
68
67
|
```
|
|
69
68
|
|
|
70
|
-
Or from source — clone this repo and add it as an editable dependency
|
|
71
|
-
`
|
|
72
|
-
the sibling path.
|
|
69
|
+
Or from source — clone this repo and add it as an editable dependency; the
|
|
70
|
+
`tai42-*` dependencies resolve in-tree from the workspace.
|
|
73
71
|
|
|
74
72
|
```bash
|
|
75
|
-
git clone https://github.com/tai42ai/
|
|
73
|
+
git clone https://github.com/tai42ai/tai42 # next to your app checkout
|
|
76
74
|
cd /path/to/your/app
|
|
77
|
-
uv add --editable ../
|
|
75
|
+
uv add --editable ../tai42/plugins/webhook-verifier-github
|
|
78
76
|
```
|
|
79
77
|
|
|
80
78
|
## How it loads — `lifecycle_modules`
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tai42-contract<0.5,>=0.4
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
spec_version: 1
|
|
2
|
-
namespace: tai42
|
|
3
|
-
name: webhook-verifier-github
|
|
4
|
-
package: tai42-webhook-verifier-github
|
|
5
|
-
version: 0.2.0
|
|
6
|
-
description: "GitHub webhook-signature verifier plugin for the TAI ecosystem: a per-provider WebhookVerifier that checks each delivery's X-Hub-Signature-256 HMAC before the payload is dispatched."
|
|
7
|
-
license: Apache-2.0
|
|
8
|
-
homepage: https://tai42.ai
|
|
9
|
-
repository: https://github.com/tai42ai/tai-webhook-verifier-github
|
|
10
|
-
contract: ">=0.1,<0.2"
|
|
11
|
-
categories: [webhooks, security]
|
|
12
|
-
tags: [webhooks, github, hmac, security]
|
|
13
|
-
permissions:
|
|
14
|
-
network: false
|
|
15
|
-
subprocess: false
|
|
16
|
-
filesystem: false
|
|
17
|
-
provides:
|
|
18
|
-
- kind: webhook-verifier
|
|
19
|
-
name: github
|
|
20
|
-
module: tai42_webhook_verifier_github
|
|
21
|
-
description: "Verify a GitHub webhook delivery's X-Hub-Signature-256 HMAC before dispatch."
|
|
22
|
-
tags: [github, hmac]
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tai42-contract<0.3,>=0.2
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|