-
Notifications
You must be signed in to change notification settings - Fork 0
Release v0.12.0 - Version Bump for MCP 2025-06-18 #61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Conversation
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
Update all workspace crates from 0.11.0 to 0.12.0 to reflect breaking changes in the MCP 2025-06-18 specification update.
Code Coverage Report 📊Local Coverage: 19.90%
Coverage Details
📋 Full Report: View on Codecov |
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
PR Validation ResultsQuick Validation: ✅
Summary: ✅ All checks passed |
The test_env_security_with_invalid_profile test has a race condition when running in parallel with other tests that modify MCP_SECURITY_PROFILE. Mark it as ignored until we can add the serial_test crate to properly handle env variable isolation.
Add serial_test dependency and mark all tests that modify environment variables with #[serial_test::serial] to prevent race conditions when tests run in parallel. Fixed tests: - test_env_security_with_invalid_profile - test_env_security_with_valid_profiles - test_env_config_loading This resolves the flaky test failure in CI by ensuring these tests run one at a time instead of being ignored.
Systematically address potential race conditions in all tests that modify environment variables by adding serial_test dependency and marking tests with #[serial_test::serial]. Changes: - mcp-security-middleware: 3 tests marked serial - mcp-cli-derive: 1 test marked serial - mcp-cli: 4 tests marked serial This prevents flaky test failures in CI when tests run in parallel and modify the same or overlapping environment variables. Tests using unique env var names per test (like in mcp-auth) don't need serialization as they don't conflict with each other.
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
Bump all workspace crates from v0.11.0 to v0.12.0 for the MCP 2025-06-18 specification release.
Changes
Breaking Changes
This version includes breaking changes from the MCP 2025-06-18 specification:
Note: This is a version bump only. All feature changes were already merged in PR #60.
Checklist