chore: raise tx3c compat floor to 0.22.0#122
Merged
Merged
Conversation
tx3c 0.22.0 introduced parametric tuple types: it emits TIR carrying the `Tuple` type/expression variants, a forward-incompatible addition that pre-0.22 readers cannot decode. Raise the built-in COMPAT_MATRIX floor so trix requires a tuple-capable compiler and the TIR it consumes always matches the schema it supports. Co-Authored-By: Claude Opus 4.8 (1M context) <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.
Summary
Raises the built-in
tx3ccompatibility floor inCOMPAT_MATRIXfrom0.18.0to0.22.0.tx3c 0.22.0 introduced parametric tuple types: it emits TIR carrying the
Tupletype/expression variants, a forward-incompatible addition that pre-0.22 readers cannot decode. Pinning the floor at 0.22.0 ensurestrixdrives a tuple-capable compiler, so the TIR it consumes always matches the schema it supports.Per-project
[toolchain] tx3cminimums continue to raise this floor further; this only moves the global lower bound.Verification
Builds clean;
compatunit tests pass (the test fixtures exerciseevaluate()boundary logic against a local matrix value and are unaffected by the production floor change).🤖 Generated with Claude Code