tai42-webhook-verifier-github 0.2.2__tar.gz → 0.2.3__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.2/src/tai42_webhook_verifier_github.egg-info → tai42_webhook_verifier_github-0.2.3}/PKG-INFO +2 -2
- {tai42_webhook_verifier_github-0.2.2 → tai42_webhook_verifier_github-0.2.3}/pyproject.toml +2 -2
- {tai42_webhook_verifier_github-0.2.2 → tai42_webhook_verifier_github-0.2.3}/src/tai42_webhook_verifier_github/tai-plugin.yml +2 -2
- {tai42_webhook_verifier_github-0.2.2 → tai42_webhook_verifier_github-0.2.3/src/tai42_webhook_verifier_github.egg-info}/PKG-INFO +2 -2
- tai42_webhook_verifier_github-0.2.3/src/tai42_webhook_verifier_github.egg-info/requires.txt +1 -0
- tai42_webhook_verifier_github-0.2.2/src/tai42_webhook_verifier_github.egg-info/requires.txt +0 -1
- {tai42_webhook_verifier_github-0.2.2 → tai42_webhook_verifier_github-0.2.3}/LICENSE +0 -0
- {tai42_webhook_verifier_github-0.2.2 → tai42_webhook_verifier_github-0.2.3}/MANIFEST.in +0 -0
- {tai42_webhook_verifier_github-0.2.2 → tai42_webhook_verifier_github-0.2.3}/NOTICE +0 -0
- {tai42_webhook_verifier_github-0.2.2 → tai42_webhook_verifier_github-0.2.3}/README.md +0 -0
- {tai42_webhook_verifier_github-0.2.2 → tai42_webhook_verifier_github-0.2.3}/setup.cfg +0 -0
- {tai42_webhook_verifier_github-0.2.2 → tai42_webhook_verifier_github-0.2.3}/src/tai42_webhook_verifier_github/__init__.py +0 -0
- {tai42_webhook_verifier_github-0.2.2 → tai42_webhook_verifier_github-0.2.3}/src/tai42_webhook_verifier_github/py.typed +0 -0
- {tai42_webhook_verifier_github-0.2.2 → tai42_webhook_verifier_github-0.2.3}/src/tai42_webhook_verifier_github/verifier.py +0 -0
- {tai42_webhook_verifier_github-0.2.2 → tai42_webhook_verifier_github-0.2.3}/src/tai42_webhook_verifier_github.egg-info/SOURCES.txt +0 -0
- {tai42_webhook_verifier_github-0.2.2 → tai42_webhook_verifier_github-0.2.3}/src/tai42_webhook_verifier_github.egg-info/dependency_links.txt +0 -0
- {tai42_webhook_verifier_github-0.2.2 → tai42_webhook_verifier_github-0.2.3}/src/tai42_webhook_verifier_github.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tai42-webhook-verifier-github
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.3
|
|
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
|
|
@@ -20,7 +20,7 @@ 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<
|
|
23
|
+
Requires-Dist: tai42-contract<2,>=1.0
|
|
24
24
|
Dynamic: license-file
|
|
25
25
|
|
|
26
26
|
# tai42-webhook-verifier-github
|
|
@@ -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.3"
|
|
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"
|
|
@@ -27,7 +27,7 @@ dependencies = [
|
|
|
27
27
|
# The pure interface contract this verifier registers through — the tai42_app
|
|
28
28
|
# handle and the WebhookVerifier / WebhookVerificationError types. The HMAC
|
|
29
29
|
# work is pure standard library (hmac / hashlib); no other tai-* dependency.
|
|
30
|
-
"tai42-contract>=0
|
|
30
|
+
"tai42-contract>=1.0,<2",
|
|
31
31
|
]
|
|
32
32
|
|
|
33
33
|
[project.urls]
|
|
@@ -2,7 +2,7 @@ spec_version: 1
|
|
|
2
2
|
namespace: tai42
|
|
3
3
|
name: webhook-verifier-github
|
|
4
4
|
package: tai42-webhook-verifier-github
|
|
5
|
-
version: 0.2.
|
|
5
|
+
version: 0.2.3
|
|
6
6
|
description: >-
|
|
7
7
|
GitHub webhook-signature verifier plugin for the TAI ecosystem: a per-provider
|
|
8
8
|
WebhookVerifier that checks each delivery's X-Hub-Signature-256 HMAC before
|
|
@@ -10,7 +10,7 @@ description: >-
|
|
|
10
10
|
license: Apache-2.0
|
|
11
11
|
homepage: https://tai42.ai
|
|
12
12
|
repository: https://github.com/tai42ai/tai42/tree/main/plugins/webhook-verifier-github
|
|
13
|
-
contract: '>=0
|
|
13
|
+
contract: '>=1.0,<2'
|
|
14
14
|
categories:
|
|
15
15
|
- webhooks
|
|
16
16
|
- security
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tai42-webhook-verifier-github
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.3
|
|
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
|
|
@@ -20,7 +20,7 @@ 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<
|
|
23
|
+
Requires-Dist: tai42-contract<2,>=1.0
|
|
24
24
|
Dynamic: license-file
|
|
25
25
|
|
|
26
26
|
# tai42-webhook-verifier-github
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tai42-contract<2,>=1.0
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tai42-contract<0.5,>=0.4
|
|
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
|
|
File without changes
|