🦋 New version release - #539
Merged
Merged
Conversation
brentrager
force-pushed
the
changeset-release/main
branch
from
August 23, 2026 02:03
d84206c to
c569057
Compare
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.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@smooai/smooth-operator@1.57.1
Patch Changes
3f25540: test: fence the ingest→ACL chain at the pipeline seam, not just the GitHub connector
The guarantee that a connector's document ACL survives ingestion —
RawDocument::acl→ chunk → structured
DocAcl→AclKnowledgeStoreside table →AclReader— wasasserted end to end in exactly one place:
github_connector.rs. That test is real, butit is a connector test. Delete or rewrite the GitHub connector and the ingest half of
G3 loses its only fence, silently, with the ingestion contract test still green.
ingestion_contract.rs::ingested_acls_gate_retrieval_for_every_connectorasserts thesame chain at the pipeline seam over a
MockConnector, so it holds for every connectorpresent and future: a document ingested for
group-engis readable by a principalcarrying that group and returns nothing for
group-finor for anonymous, while adocument ingested with no ACL stays org-public. Each negative assertion is paired with
the entitled-principal positive control on the same query, so a pipeline that stored
nothing cannot satisfy "nothing leaked" vacuously — the failure mode this repo has
shipped before.
Verified red before green: with
DocAcl::for_groups(...).attach_to(document)revertedin
pipeline.rs, the new test fails withgroup-fin must not read the group-eng doc, got 1 hits— the exact G3 cross-user leak — while the pre-existing contract test staysgreen, which is what made the gap invisible.
No production behavior changes.
docs/Planning/Feature Gaps.md§G1/§G2/§G9 are updatedto record what actually shipped (the
Connectorseam,MockConnector, and the file /web / github connectors landed some time ago and were never marked), the
pull→Vec<RawDocument>deviation from the plannedStream<Document>and why it should bere-shaped before the SaaS connectors rather than after, and what remains: the connector
long tail, format extraction, and the nightly job that would actually run the gated
externaltier.@smooai/smooth-operator-web-chat-example@0.0.111
Patch Changes