validibot-shared 0.6.0__tar.gz → 0.7.0__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.
Files changed (26) hide show
  1. {validibot_shared-0.6.0 → validibot_shared-0.7.0}/PKG-INFO +1 -1
  2. {validibot_shared-0.6.0 → validibot_shared-0.7.0}/pyproject.toml +1 -1
  3. {validibot_shared-0.6.0 → validibot_shared-0.7.0}/validibot_shared/evidence/manifest.py +19 -0
  4. {validibot_shared-0.6.0 → validibot_shared-0.7.0}/.gitignore +0 -0
  5. {validibot_shared-0.6.0 → validibot_shared-0.7.0}/LICENSE +0 -0
  6. {validibot_shared-0.6.0 → validibot_shared-0.7.0}/NOTICE +0 -0
  7. {validibot_shared-0.6.0 → validibot_shared-0.7.0}/README.md +0 -0
  8. {validibot_shared-0.6.0 → validibot_shared-0.7.0}/tests/__init__.py +0 -0
  9. {validibot_shared-0.6.0 → validibot_shared-0.7.0}/tests/test_energyplus_envelopes.py +0 -0
  10. {validibot_shared-0.6.0 → validibot_shared-0.7.0}/tests/test_energyplus_models.py +0 -0
  11. {validibot_shared-0.6.0 → validibot_shared-0.7.0}/tests/test_evidence_manifest.py +0 -0
  12. {validibot_shared-0.6.0 → validibot_shared-0.7.0}/tests/test_fmu_envelopes.py +0 -0
  13. {validibot_shared-0.6.0 → validibot_shared-0.7.0}/tests/test_fmu_models.py +0 -0
  14. {validibot_shared-0.6.0 → validibot_shared-0.7.0}/tests/test_package_init.py +0 -0
  15. {validibot_shared-0.6.0 → validibot_shared-0.7.0}/tests/test_validations_envelopes.py +0 -0
  16. {validibot_shared-0.6.0 → validibot_shared-0.7.0}/validibot_shared/__init__.py +0 -0
  17. {validibot_shared-0.6.0 → validibot_shared-0.7.0}/validibot_shared/energyplus/__init__.py +0 -0
  18. {validibot_shared-0.6.0 → validibot_shared-0.7.0}/validibot_shared/energyplus/envelopes.py +0 -0
  19. {validibot_shared-0.6.0 → validibot_shared-0.7.0}/validibot_shared/energyplus/models.py +0 -0
  20. {validibot_shared-0.6.0 → validibot_shared-0.7.0}/validibot_shared/evidence/__init__.py +0 -0
  21. {validibot_shared-0.6.0 → validibot_shared-0.7.0}/validibot_shared/fmu/__init__.py +0 -0
  22. {validibot_shared-0.6.0 → validibot_shared-0.7.0}/validibot_shared/fmu/envelopes.py +0 -0
  23. {validibot_shared-0.6.0 → validibot_shared-0.7.0}/validibot_shared/fmu/models.py +0 -0
  24. {validibot_shared-0.6.0 → validibot_shared-0.7.0}/validibot_shared/py.typed +0 -0
  25. {validibot_shared-0.6.0 → validibot_shared-0.7.0}/validibot_shared/validations/__init__.py +0 -0
  26. {validibot_shared-0.6.0 → validibot_shared-0.7.0}/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.6.0
3
+ Version: 0.7.0
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
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "validibot-shared"
7
- version = "0.6.0"
7
+ version = "0.7.0"
8
8
  description = "Shared library for data interchange between Validibot and validator containers"
9
9
  readme = "README.md"
10
10
  license = { text = "MIT" }
@@ -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):