refactor(clients): VCL rename stage B (2/5) — Rust/Zig/Julia/Elixir SDKs (#84)#145
Merged
Merged
Conversation
Second sub-stage of #84. Updates the four non-ReScript client SDKs to the renamed wire contract from PR #144 (server route /api/v1/vcl/execute). - connectors/clients/rust/src/vql.rs -> vcl.rs (mod vcl, execute_vcl, Vcl{Request,Response,Result,ParseError,ExecutionError}) - connectors/clients/zig/src/vql.zig -> vcl.zig - connectors/clients/julia/src/vql.jl -> vcl.jl - connectors/clients/elixir/lib/verisim_client/vcl.ex + types.ex - all four now POST /api/v1/vcl/execute Verified: grep-to-zero leaves no vql/VQL/Vql token in the four client trees; endpoint updated in every SDK; symmetric 99/99 diff. Rust client compiles on CI (cargo); Zig/Julia/Elixir renames are mechanical (string + symbol). Refs #84. https://claude.ai/code/session_01W9Voe3JceP66Bna9FT4jME
🔍 Hypatia Security ScanFindings: 137 issues detected
View findings[
{
"reason": "Issue in scorecard-enforcer.yml",
"type": "scorecard_publish_with_run_step",
"file": "scorecard-enforcer.yml",
"action": "split_scorecard_publish_job",
"rule_module": "workflow_audit",
"severity": "high"
},
{
"reason": "Issue in instant-sync.yml",
"type": "secret_action_without_presence_gate",
"file": "instant-sync.yml",
"action": "peter-evans/repository-dispatch",
"rule_module": "workflow_audit",
"severity": "high"
},
{
"reason": "Issue in codeql.yml",
"type": "codeql_missing_actions_language",
"file": "codeql.yml",
"action": "flag",
"rule_module": "workflow_audit",
"severity": "medium"
},
{
"reason": "User-defined Coq axiom -- not verified by kernel (1 occurrences, CWE-704)",
"type": "coq_axiom",
"file": "/home/runner/work/verisimdb/verisimdb/formal/Provenance.v",
"action": "flag",
"rule_module": "code_safety",
"severity": "medium"
},
{
"reason": "User-defined Coq axiom -- not verified by kernel (2 occurrences, CWE-704)",
"type": "coq_axiom",
"file": "/home/runner/work/verisimdb/verisimdb/formal/PlannerSemantic.v",
"action": "flag",
"rule_module": "code_safety",
"severity": "medium"
},
{
"reason": "User-defined Coq axiom -- not verified by kernel (1 occurrences, CWE-704)",
"type": "coq_axiom",
"file": "/home/runner/work/verisimdb/verisimdb/formal/Planner.v",
"action": "flag",
"rule_module": "code_safety",
"severity": "medium"
},
{
"reason": "User-defined Coq axiom -- not verified by kernel (6 occurrences, CWE-704)",
"type": "coq_axiom",
"file": "/home/runner/work/verisimdb/verisimdb/formal/Drift.v",
"action": "flag",
"rule_module": "code_safety",
"severity": "medium"
},
{
"reason": "User-defined Coq axiom -- not verified by kernel (1 occurrences, CWE-704)",
"type": "coq_axiom",
"file": "/home/runner/work/verisimdb/verisimdb/formal/WAL.v",
"action": "flag",
"rule_module": "code_safety",
"severity": "medium"
},
{
"reason": "User-defined Coq axiom -- not verified by kernel (2 occurrences, CWE-704)",
"type": "coq_axiom",
"file": "/home/runner/work/verisimdb/verisimdb/formal/Normalizer.v",
"action": "flag",
"rule_module": "code_safety",
"severity": "medium"
},
{
"reason": "getExn on external data -- use pattern matching (1 occurrences, CWE-754)",
"type": "getexn_on_external",
"file": "/home/runner/work/verisimdb/verisimdb/src/registry/Registry.res",
"action": "flag",
"rule_module": "code_safety",
"severity": "critical"
}
]Powered by Hypatia Neurosymbolic CI/CD Intelligence |
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.
Stage B (2/5) — client SDKs follow the renamed wire contract
Second sub-stage of #84. Updates the four non-ReScript client SDKs to call the renamed endpoint from #144 (server
/api/v1/vcl/execute).Renamed (17 files changed, symmetric 99/99)
connectors/clients/rust/src/vql.rs→vcl.rs(mod vcl,execute_vcl,Vcl{Request,Response,Result,ParseError,ExecutionError})connectors/clients/zig/src/vql.zig→vcl.zigconnectors/clients/julia/src/vql.jl→vcl.jlconnectors/clients/elixir/lib/verisim_client/vcl.ex+types.ex/api/v1/vcl/execute✅Verification
vql/VQL/Vqltoken left in any of the four client treesVql*→Vcl*)Restores the server↔client round-trip broken transiently by #144. Remaining: 3/5 ReScript (parser + playground + RS client), 4/5 Elixir orchestration contracts (
type:vql_query,vql_dt_active, JS bridge), 5/5 Coq/Idris + examples + config. Refs #84.Generated by Claude Code