Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 5, 2026

Bumps tempfile from 3.23.0 to 3.24.0.

Changelog

Sourced from tempfile's changelog.

3.24.0

  • Actually support WASIp2 without the nightly feature. This library is now feature complete on WASIp2 without any additional feature flags.
  • Exclude CI scripts from the published crate.
Commits

Dependabot compatibility score

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Jan 5, 2026
@dependabot dependabot bot force-pushed the dependabot/cargo/tempfile-3.24.0 branch from c51d8ae to 4943bc4 Compare January 29, 2026 13:04
Bumps [tempfile](https://github.com/Stebalien/tempfile) from 3.23.0 to 3.24.0.
- [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md)
- [Commits](Stebalien/tempfile@v3.23.0...v3.24.0)

---
updated-dependencies:
- dependency-name: tempfile
  dependency-version: 3.24.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/cargo/tempfile-3.24.0 branch from 4943bc4 to cedf79e Compare February 1, 2026 01:31
hyperpolymath pushed a commit that referenced this pull request Feb 7, 2026
Implements Task #28 from Opus recovery session (Part 1/2).

New Bot Modes:
--------------
1. **Verifier** (default) - Silent pass/fail reporting
   - Minimal output: ✅/❌ only
   - No detailed failures
   - No tactic suggestions
   - Doesn't block merges

2. **Advisor** - ML-powered tactic suggestions
   - Detailed failure output
   - Tactic suggestions from ECHIDNA ML backend
   - Warning-level severity
   - Helps developers fix failing proofs

3. **Consultant** - Interactive Q&A about proof state
   - Detailed failure output
   - Tactic suggestions
   - Supports interactive questions
   - Can explain proof state, dependencies, history

4. **Regulator** - Quality gate enforcement
   - Detailed failure output
   - Error-level severity
   - **Blocks PR merges when proofs fail**
   - No tactic suggestions (enforcement only)

Implementation:
--------------
- src/modes/mod.rs: Core BotMode enum with 4 variants
- Helper methods for mode-specific behavior:
  - show_detailed_failures()
  - suggest_tactics()
  - blocks_merges()
  - supports_interactive()
  - check_run_severity()
  - comment_style()
- FormattedResult type for mode-specific output formatting
- Comprehensive test suite (8 tests covering all modes)

Configuration:
-------------
- Added Config.bot_mode field (defaults to Verifier)
- Serde support for TOML/ENV configuration
- Example: `bot_mode = "advisor"` in echidnabot.toml

Build Status:
------------
✅ Library compiles successfully (4 warnings only)
✅ Modes module complete with tests
⏳ Next: Wire modes into dispatcher for actual usage

Part 2 will integrate modes into the verification workflow.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
hyperpolymath pushed a commit that referenced this pull request Feb 7, 2026
Implements Task #28 from Opus recovery session (Part 2/2).

Result Formatting:
-----------------
- Bridges dispatcher.ProofResult → modes.FormattedResult
- Converts TacticSuggestion to user-friendly strings
- Generates mode-specific PR comments with:
  - Mode badge (🦔 echidnabot • Mode: Advisor)
  - Summary line (✅/❌)
  - Verification output (detailed modes only)
  - Tactic suggestions (Advisor/Consultant modes)
  - Merge blocking notice (Regulator mode)
  - Interactive prompt (Consultant mode)

PR Comment Examples:
-------------------
**Verifier Mode:**
```markdown
## 🦔 echidnabot • Mode: **Verifier**

✅ Proof verified (Coq)
```

**Advisor Mode:**
```markdown
## 🦔 echidnabot • Mode: **Advisor**

❌ Proof failed with Coq — Suggestions available

### 📋 Verification Output
[detailed output...]

### 💡 Suggested Tactics
• `induction xs` (85% confidence) — Try induction on list structure
• `rewrite app_assoc` (72% confidence)
```

**Regulator Mode:**
```markdown
## 🦔 echidnabot • Mode: **Regulator**

🚫 BLOCKED: Coq verification failed — Merge blocked

### 🚫 Merge Blocked
This PR cannot be merged until all proofs pass verification.
**Action required:** Fix the failing proof(s) and push an update.
```

Check Run Integration:
---------------------
- check_run_conclusion(): Maps to GitHub/GitLab check status
- check_run_summary(): Generates check run summary text
- Supports all 3 forge platforms (GitHub/GitLab/Bitbucket)

Implementation:
--------------
- src/result_formatter.rs: Format bridge (193 lines)
- format_proof_result(): Main formatting function
- generate_pr_comment(): PR comment generation
- check_run_conclusion/summary(): Check run status
- 8 comprehensive tests covering all modes and scenarios

Build Status:
------------
✅ Library compiles successfully
✅ All tests pass (modes + formatter)

Task #28 COMPLETE: All 4 bot modes fully implemented and integrated.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
hyperpolymath pushed a commit that referenced this pull request Feb 7, 2026
Updated project state to reflect Task #28 completion:
- Bot Modes: planned (0%) → complete (100%)
- Overall completion: 90% → 95%

Session accomplishments:
- Implemented all 4 bot modes (Verifier/Advisor/Consultant/Regulator)
- Created modes module (301 lines) + result formatter (252 lines)
- Comprehensive test coverage (16 tests total)
- Build successful, ready for webhook integration

Remaining work (5%):
- Production hardening
- End-to-end integration tests
- Monitoring and alerting

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file rust Pull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants