-
Notifications
You must be signed in to change notification settings - Fork 43
Releasing 0.8.0 #354
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
Closed
Closed
Releasing 0.8.0 #354
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
Sync main → develop (PR #331)
Sync main → develop (PR #332)
This commit pins the rust-toolchain to a specific rust version (1.89.0) for compatibility guarantees. Renovate will handle warning on outdated versions of stable rust. A minimal supported rust version was also added to the underlying crates to ensure compatibility guarantees as the stable verison increments in future updates.
Implement Test Coverage Measurement and Reporting
Configure Codecov with coverage targets
* Allow config for not forwarding Auth tokens to GraphQL API * use serde default to make new config optional * Changeset * Fix default case in main.rs * Add new config option to documentation
ci: update github checkout actions
Sync main → develop (PR #339)
Sync main → develop (PR #317)
Co-authored-by: Samuel Collard <[email protected]> Co-authored-by: Michelle Mabuyo <[email protected]>
This commit updates the RMCP dependency to the latest version 0.6.4. Sadly, schemars was also updated with this, so a lot of unrelated changes were needed to conform with the new stable schemars version.
✅ Docs preview readyThe preview is ready to be viewed. View the preview File Changes 0 new, 1 changed, 0 removed
Build ID: c8073c7705630e0270ac9642 URL: https://www.apollographql.com/docs/deploy-preview/c8073c7705630e0270ac9642 |
Closing because this was based off |
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.
[0.8.0] - 2025-09-12
🚀 Features
feat: Configuration for disabling authorization token passthrough - @swcollard PR #336
A new optional new MCP Server configuration parameter,
transport.auth.disable_auth_token_passthrough
, which isfalse
by default, that when true, will no longer pass through validated Auth tokens to the GraphQL API.🛠 Maintenance
Configure Codecov with coverage targets - @DaleSeo PR #337
This PR adds
codecov.yml
to set up Codecov with specific coverage targets and quality standards. It helps define clear expectations for code quality. It also includes some documentation about code coverage inCONTRIBUTING.md
and adds the Codecov badge toREADME.md
.Implement Test Coverage Measurement and Reporting - @DaleSeo PR #335
This PR adds the bare minimum for code coverage reporting using cargo-llvm-cov and integrates with Codecov. It adds a new
coverage
job to the CI workflow that generates and uploads coverage reporting in parallel with existing tests. The setup mirrors that of Router, except it usesnextest
instead of the built-in test runner and CircleCI instead of GitHub Actions.chore: update RMCP dependency (328)
Update the RMCP dependency to the latest version, pulling in newer specification changes.
ci: Pin stable rust version (Issue #287)
Pins the stable version of Rust to the current latest version to ensure backwards compatibility with future versions.