test: Re-attempt resolver v3 upgrade to identify issues#5430
Closed
test: Re-attempt resolver v3 upgrade to identify issues#5430
Conversation
This is a test PR to identify what specifically breaks with resolver v3. We know it requires Rust 1.81+ to parse the configuration. Adding pr-nightly label to trigger MSRV tests. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
max-sixty
added a commit
to max-sixty/prql
that referenced
this pull request
Sep 25, 2025
This enables Cargo's MSRV-aware resolver (v3) while maintaining our ability to test with Rust 1.75. ## Changes - Enable resolver v3 for MSRV-aware dependency resolution - Add sed patch in MSRV test job to temporarily downgrade to resolver v2 during testing ## Context Resolver v3 requires Rust 1.84+ to parse the configuration, but our library MSRV is 1.75. This creates a split MSRV situation: - Library MSRV: 1.75 (the code itself works with this version) - Development/build toolchain: 1.84+ (required for resolver v3) The CI workaround allows us to verify the library MSRV while benefiting from resolver v3's automatic dependency version management for development. Supersedes PRQL#5426, PRQL#5428, PRQL#5430 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
4 tasks
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
This is a test PR to identify what specifically breaks with resolver v3. We intend to close this once we understand the issues.
Context
Purpose
Re-enable resolver v3 to:
Known Issues
Test plan
🤖 Generated with Claude Code