ref(preprod): Drop hash-keyed manifest fallback#113967
Merged
NicoHinderling merged 3 commits intomasterfrom Apr 24, 2026
Merged
ref(preprod): Drop hash-keyed manifest fallback#113967NicoHinderling merged 3 commits intomasterfrom
NicoHinderling merged 3 commits intomasterfrom
Conversation
mtopo27
approved these changes
Apr 24, 2026
Contributor
Backend Test FailuresFailures on
|
557c30d to
de8d0a4
Compare
This was referenced Apr 24, 2026
Contributor
Author
Contributor
Backend Test FailuresFailures on
|
Contributor
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit da81756. Configure here.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.


Resolves the EME-977 TODO: drop the backwards-compat fallback for snapshot manifests that pre-date the
content_hashfield.ImageMetadata.content_hashbecomes required (str). Manifests from old SDK versions omitted it and relied on acontent_hash or keyfallback at every read site; all callers now assume the hash is present.Drops the fallback and the EME-977 TODO at three sites:
preprod_artifact_snapshot.py— GET response construction.tasks.py—head_by_name/base_by_namefor diff matching.tasks.py—head_meta_by_hash/base_meta_by_hashfor rename detection.No behavior change for any manifest uploaded by a modern client. If a legacy manifest without
content_hashis still reachable, snapshot parsing will now raise a pydantic validation error instead of silently keying on the file name.