validibot-shared 0.6.0__tar.gz → 0.7.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.
- {validibot_shared-0.6.0 → validibot_shared-0.7.2}/PKG-INFO +2 -1
- {validibot_shared-0.6.0 → validibot_shared-0.7.2}/README.md +1 -0
- {validibot_shared-0.6.0 → validibot_shared-0.7.2}/pyproject.toml +1 -1
- {validibot_shared-0.6.0 → validibot_shared-0.7.2}/validibot_shared/evidence/manifest.py +19 -0
- {validibot_shared-0.6.0 → validibot_shared-0.7.2}/.gitignore +0 -0
- {validibot_shared-0.6.0 → validibot_shared-0.7.2}/LICENSE +0 -0
- {validibot_shared-0.6.0 → validibot_shared-0.7.2}/NOTICE +0 -0
- {validibot_shared-0.6.0 → validibot_shared-0.7.2}/tests/__init__.py +0 -0
- {validibot_shared-0.6.0 → validibot_shared-0.7.2}/tests/test_energyplus_envelopes.py +0 -0
- {validibot_shared-0.6.0 → validibot_shared-0.7.2}/tests/test_energyplus_models.py +0 -0
- {validibot_shared-0.6.0 → validibot_shared-0.7.2}/tests/test_evidence_manifest.py +0 -0
- {validibot_shared-0.6.0 → validibot_shared-0.7.2}/tests/test_fmu_envelopes.py +0 -0
- {validibot_shared-0.6.0 → validibot_shared-0.7.2}/tests/test_fmu_models.py +0 -0
- {validibot_shared-0.6.0 → validibot_shared-0.7.2}/tests/test_package_init.py +0 -0
- {validibot_shared-0.6.0 → validibot_shared-0.7.2}/tests/test_validations_envelopes.py +0 -0
- {validibot_shared-0.6.0 → validibot_shared-0.7.2}/validibot_shared/__init__.py +0 -0
- {validibot_shared-0.6.0 → validibot_shared-0.7.2}/validibot_shared/energyplus/__init__.py +0 -0
- {validibot_shared-0.6.0 → validibot_shared-0.7.2}/validibot_shared/energyplus/envelopes.py +0 -0
- {validibot_shared-0.6.0 → validibot_shared-0.7.2}/validibot_shared/energyplus/models.py +0 -0
- {validibot_shared-0.6.0 → validibot_shared-0.7.2}/validibot_shared/evidence/__init__.py +0 -0
- {validibot_shared-0.6.0 → validibot_shared-0.7.2}/validibot_shared/fmu/__init__.py +0 -0
- {validibot_shared-0.6.0 → validibot_shared-0.7.2}/validibot_shared/fmu/envelopes.py +0 -0
- {validibot_shared-0.6.0 → validibot_shared-0.7.2}/validibot_shared/fmu/models.py +0 -0
- {validibot_shared-0.6.0 → validibot_shared-0.7.2}/validibot_shared/py.typed +0 -0
- {validibot_shared-0.6.0 → validibot_shared-0.7.2}/validibot_shared/validations/__init__.py +0 -0
- {validibot_shared-0.6.0 → validibot_shared-0.7.2}/validibot_shared/validations/envelopes.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: validibot-shared
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.7.2
|
|
4
4
|
Summary: Shared library for data interchange between Validibot and validator containers
|
|
5
5
|
Project-URL: Homepage, https://validibot.com
|
|
6
6
|
Project-URL: Documentation, https://docs.validibot.com
|
|
@@ -39,6 +39,7 @@ Description-Content-Type: text/markdown
|
|
|
39
39
|
[](https://pypi.org/project/validibot-shared/)
|
|
40
40
|
[](https://pypi.org/project/validibot-shared/)
|
|
41
41
|
[](LICENSE)
|
|
42
|
+
[](https://docs.pypi.org/attestations/)
|
|
42
43
|
|
|
43
44
|
[Installation](#installation) •
|
|
44
45
|
[Core Concepts](#core-concepts) •
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
[](https://pypi.org/project/validibot-shared/)
|
|
8
8
|
[](https://pypi.org/project/validibot-shared/)
|
|
9
9
|
[](LICENSE)
|
|
10
|
+
[](https://docs.pypi.org/attestations/)
|
|
10
11
|
|
|
11
12
|
[Installation](#installation) •
|
|
12
13
|
[Core Concepts](#core-concepts) •
|
|
@@ -89,6 +89,25 @@ class StepValidatorRecord(BaseModel):
|
|
|
89
89
|
"verifiers know to expect a legacy-versioning gap there."
|
|
90
90
|
),
|
|
91
91
|
)
|
|
92
|
+
# Trust ADR Phase 5 Session A — the *runtime* identity of the
|
|
93
|
+
# validator backend container that actually executed this step.
|
|
94
|
+
# ``validator_semantic_digest`` describes the validator's
|
|
95
|
+
# *configuration* (slug, version, config bytes); this field
|
|
96
|
+
# describes the *image bytes* that ran. The two are
|
|
97
|
+
# complementary: one proves "the validator was configured this
|
|
98
|
+
# way", the other proves "this exact container ran". Optional
|
|
99
|
+
# because (a) simple-validator steps run inline without a
|
|
100
|
+
# backend, and (b) historical step runs predate the field.
|
|
101
|
+
validator_backend_image_digest: str | None = Field(
|
|
102
|
+
default=None,
|
|
103
|
+
description=(
|
|
104
|
+
"Resolved sha256 digest of the validator backend image "
|
|
105
|
+
"that executed this step (e.g. 'sha256:abc...' or "
|
|
106
|
+
"'registry/...@sha256:abc...'). None for simple-validator "
|
|
107
|
+
"steps that run inline without a container, or for runs "
|
|
108
|
+
"captured before digest capture shipped."
|
|
109
|
+
),
|
|
110
|
+
)
|
|
92
111
|
|
|
93
112
|
|
|
94
113
|
class WorkflowContractSnapshot(BaseModel):
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|