CI & Build / Python lint (push) Successful in 4s
CI & Build / Plugin hooks (push) Successful in 8s
CI & Build / integration (push) Successful in 25s
CI & Build / TypeScript typecheck (push) Successful in 32s
CI & Build / Python tests (push) Successful in 59s
CI & Build / Build & push image (push) Successful in 22s
First deploy of v26.08.21.1 showed two gaps:
- Every one-line CSS rule followed by a blank line hashed to sha1("") — the
declarations live on the selector line, which the #2872 "declarations only"
fingerprint dropped — so 68 unrelated one-liners across 17 files read as
one body-identical copy at the top of the derive readout. The selector
line's tail after "{" is now part of the hash; an all-blank remainder falls
back to the whole block.
- The proposer only examined unjudged rows, so consumers that were already
classified (auth.create_invitation → hash_token) never got a uses edge: 3
edges for hash_token after the first refresh. Judged rows are now scanned
for references (once per body), no proposal is made on them.
- 0084 migration docstring reworded: "function that …" at a line start parsed
as a definition (extractor false positive).
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
41 lines
1.7 KiB
Python
41 lines
1.7 KiB
Python
"""code_shape_uses — consumption edges, separate from conformance (#2870, milestone 294)
|
|
|
|
Revision ID: 0084
|
|
Revises: 0083
|
|
Create Date: 2026-08-21
|
|
|
|
A ledger row carries ONE snippet_id: what shape this is (instance/variant of
|
|
a canon). But a shape can also CALL several canonical helpers — e.g. a
|
|
service function both conforming to the service-function convention and
|
|
consuming hash_token. The 2026-08 audit had to pick one; hook evidence
|
|
("pulled #N then wrote code referencing it") was stamped as instance when it
|
|
is a uses fact. This table holds the many-valued relation: shape → snippet,
|
|
with the basis and the evidence. Cascades with the shape and the snippet.
|
|
"""
|
|
import sqlalchemy as sa
|
|
from alembic import op
|
|
|
|
revision = "0084"
|
|
down_revision = "0083"
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade() -> None:
|
|
op.create_table(
|
|
"code_shape_uses",
|
|
sa.Column("id", sa.Integer(), primary_key=True),
|
|
sa.Column("shape_id", sa.Integer(), sa.ForeignKey("code_shapes.id", ondelete="CASCADE"), nullable=False),
|
|
sa.Column("snippet_id", sa.Integer(), sa.ForeignKey("notes.id", ondelete="CASCADE"), nullable=False),
|
|
sa.Column("basis", sa.Text(), nullable=False),
|
|
sa.Column("evidence", sa.Text(), nullable=True),
|
|
sa.Column("created_at", sa.DateTime(timezone=True), nullable=False, server_default=sa.text("now()")),
|
|
sa.UniqueConstraint("shape_id", "snippet_id", name="uq_code_shape_uses_shape_snippet"),
|
|
)
|
|
op.create_index("ix_code_shape_uses_snippet", "code_shape_uses", ["snippet_id"])
|
|
|
|
|
|
def downgrade() -> None:
|
|
op.drop_index("ix_code_shape_uses_snippet", table_name="code_shape_uses")
|
|
op.drop_table("code_shape_uses")
|