TEMP: sync main into graph6 port - #1322
Conversation
* fix(lean): remove unchanged corrupt declaration caches * test(lean): cover corrupt declaration-cache cleanup * style(lean): format corrupt-cache regressions
Co-authored-by: morluto <76467478+morluto@users.noreply.github.com>
* fix(probability): canonicalize Gaussian sparse inputs * fix(probability): own Gaussian request canonicalization * fix(probability): preserve canonical request round trips * test(probability): replay canonical Gaussian requests * docs(probability): distinguish raw and canonical bounds --------- Co-authored-by: morluto <76467478+morluto@users.noreply.github.com>
* fix(topology): preserve non-maximal facet diagnostics * test(external-sat): remove stale producer conclusions * ci: shard ordinary Python checks by semantic lane
|
Bugbot is not enabled for your account, so this pull request was not reviewed. Enable Bugbot in the Cursor dashboard to get automatic reviews on future PRs. |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 413e3846c2
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| message = str(error) | ||
| if len(message) <= MAX_PUBLIC_VALIDATION_MESSAGE_LENGTH: | ||
| return message |
There was a problem hiding this comment.
Sanitize non-Pydantic validation details
When inline or stored exact-checker payload validation raises SchemaValidationError, StorageError, or ValueError, this branch returns up to 1,024 characters of str(error) verbatim. In particular, SchemaValidationError incorporates jsonschema's first.message, which can contain the rejected instance, so a caller-controlled value can still be reflected in the public diagnostic despite this helper's input-safe contract. Project these exception classes to stable reason codes/messages instead of merely truncating their text.
AGENTS.md reference: AGENTS.md:L210-L213
Useful? React with 👍 / 👎.
Temporary branch synchronization for #1284. Merge current
maininto the feature branch only if conflict-free.