chore(release): prepare 1.2.1 — docker context fix + version self-report#372
Merged
Conversation
the v1.2.0 container job failed at `pip install '.[web]'` with "Forced include not found: /app/adapters": the wheel force-include from #367 requires adapters/ in the source tree, but .dockerignore excluded it and the dockerfile never copied it. copy it and keep it in the context. verified with a local docker build: the image builds, and `vouch install-mcp claude-code` against a bind-mounted /data writes all 12 artifacts from inside the container — the packaged-copy resolver working in the image, not just on hosts.
the released 1.2.0 wheel self-reports "vouch, version 1.1.0": src/vouch/__init__.py is a fourth version site that neither the release checklist nor the lockstep test covered. pypi dists are immutable, so this patch release corrects it; the manifest test now ties __version__ to pyproject.toml, openclaw.plugin.json and package.json, and claude.md documents four sites, not three. also ships the docker build-context fix — no 1.2.0 container images were published, so 1.2.1 is the first tag with working images since the wheel started force-including adapters/.
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Plus Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
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.
two release defects found while verifying the v1.2.0 artifacts, fixed together for a 1.2.1 patch.
first, the container job failed: .dockerignore excluded adapters/ and the dockerfile never copied it, so the wheel force-include aborted
pip installwith "Forced include not found" — no 1.2.0 images were published. the context now carries adapters/; verified with a local docker build wherevouch install-mcp claude-codewrites all 12 artifacts from inside the container.second, the released 1.2.0 wheel self-reports "vouch, version 1.1.0": src/vouch/init.py is a fourth version site that neither the release checklist nor the lockstep test covered, and pypi dists are immutable. all four sites now sit at 1.2.1, the manifest test ties version in, and claude.md documents four sites. changelog gains a dated [1.2.1] section.