User request
Unblock delivery of org-scoped Threads feature (console-app#67) by producing a releasable threads service chart containing merged org threads RPCs (threads#22).
Currently, tagging v0.4.7 fails the release workflow, so bootstrap cannot be bumped off threads_chart_version=0.4.6 and console-app e2e remains broken.
Specification (from research)
Observed failure
Root cause
- Merged changes (threads#22) introduce usage of Authorization API stubs (
.gen/go/agynio/api/authorization/v1).
- The Dockerfile runs
buf generate buf.build/agynio/api with a restricted --path list that omits agynio/api/authorization/v1, so those stubs are never generated during image build.
- CI’s
buf generate path list already includes agynio/api/authorization/v1, which is why CI can pass while release fails.
Required fix
- Update the Dockerfile
buf generate invocation to include:
--path agynio/api/authorization/v1
- Preferably keep the Dockerfile
buf generate path list aligned with the CI workflow to prevent drift.
Validation
- Confirm the Docker image build succeeds (equivalent to the release workflow’s build step).
Release follow-up
- After the fix is merged, cut a new patch tag (recommended:
v0.4.8) to publish the chart/image.
User request
Unblock delivery of org-scoped Threads feature (console-app#67) by producing a releasable
threadsservice chart containing merged org threads RPCs (threads#22).Currently, tagging
v0.4.7fails the release workflow, so bootstrap cannot be bumped offthreads_chart_version=0.4.6and console-app e2e remains broken.Specification (from research)
Observed failure
v0.4.7)go build ./cmd/threadswith:cmd/threads/main.go:14:2: no required module provides package github.com/agynio/threads/.gen/go/agynio/api/authorization/v1Root cause
.gen/go/agynio/api/authorization/v1).buf generate buf.build/agynio/apiwith a restricted--pathlist that omitsagynio/api/authorization/v1, so those stubs are never generated during image build.buf generatepath list already includesagynio/api/authorization/v1, which is why CI can pass while release fails.Required fix
buf generateinvocation to include:--path agynio/api/authorization/v1buf generatepath list aligned with the CI workflow to prevent drift.Validation
Release follow-up
v0.4.8) to publish the chart/image.