chore(release): reconcile platform manifest with flow 1.34.0, privacy 1.0.4 - #1128
Merged
Conversation
… 1.0.4 openadapt-flow 1.34.0 and openadapt-privacy 1.0.4 both published on 2026-08-28, after the manifest was last generated on 2026-08-26. The validator refuses a manifest that advertises a superseded release, so validate-platform-manifest fails on main and on every open PR. Regenerated with scripts/generate_platform_manifest.py. The digests were checked against the published artifacts rather than trusted from the generator: each wheel and sdist was downloaded from files.pythonhosted.org and its sha256 recomputed, and each matches both the PyPI JSON API digest and the value written here. openadapt_flow-1.34.0-py3-none-any.whl 56d32818989cb3a92830080ead39e10b08718c55e00988117f22cbfeaac98854 openadapt_flow-1.34.0.tar.gz a941a70015fe91897e655bfc9bf83e6cf8fbcf8bd4e4c7206ffb133c505203f8 openadapt_privacy-1.0.4-py3-none-any.whl e10bd265aba5e54c97aeb80a9ac0509384d19eb46ce46656880b619fd06f542b openadapt_privacy-1.0.4.tar.gz 89670173890192ecea31eea832e6e1c9b612cb7f19969fe99cda082cd71f2cb3 The recorded release commits and trees match the v1.34.0 and v1.0.4 tags in openadapt-flow and openadapt-privacy. No manifest key was added or removed and no accepted schema version list changed; the diff is confined to the two component versions, their artifacts, their source references, and generated_at. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
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.
validate-platform-manifestfails on unmodifiedmain, so it is red on every open PR. Two components released today after the manifest was last generated on 2026-08-26:openadapt-flow1.33.0 to 1.34.0, published 14:23 UTCopenadapt-privacy1.0.3 to 1.0.4, published 15:38 UTCMain's last green run predates both, which is why the repo looks fine until you re-run the check.
What this does
Regenerates
platform-manifest.jsonanddocs/platform-compatibility-report.mdwithscripts/generate_platform_manifest.py.Digests
platform-manifest.jsonis served from raw.githubusercontent and is the only cryptographic claim we publish about the current release, so I did not take the generator's word for the new digests. I downloaded each wheel and sdist from files.pythonhosted.org and recomputed the sha256. Every one matches the PyPI JSON API digest and the value written into the manifest:openadapt_flow-1.34.0-py3-none-any.whl56d32818989cb3a92830080ead39e10b08718c55e00988117f22cbfeaac98854openadapt_flow-1.34.0.tar.gza941a70015fe91897e655bfc9bf83e6cf8fbcf8bd4e4c7206ffb133c505203f8openadapt_privacy-1.0.4-py3-none-any.whle10bd265aba5e54c97aeb80a9ac0509384d19eb46ce46656880b619fd06f542bopenadapt_privacy-1.0.4.tar.gz89670173890192ecea31eea832e6e1c9b612cb7f19969fe99cda082cd71f2cb3The recorded release commits and trees match the tags:
openadapt-flowv1.34.0 is30fc60e5/ tree7a0263ed,openadapt-privacyv1.0.4 is7252de48/ tree4c7bc72a.Diff review
A structural comparison of the old and new manifest adds no key and removes none. All 52 changed leaves are versions, digests, artifact URLs, release refs, source commits, or
generated_at. The accepted schema version lists are untouched, so nothing widens a protocol claim by accident. Compatibility still reportsdependency-compatible.Checks
validate_platform_manifest.py --offlinepassesvalidate_platform_manifest.pypasses with one warning:status.jsonin openadapt-web still says flow 1.33.0. That file is hand maintained there and this repo cannot fix it, so it needs a follow-up in openadapt-web.tests/test_platform_manifest_drift.pyandtests/test_platform_version_display.py: 36 passedThe lifecycle repin is deliberately kept out of this PR so each drift stays separately bisectable.