docs: update all references from 3.0.0b2 to 3.0.0rc1#3173
Conversation
|
Caution Review failedThe pull request is closed. WalkthroughThis pull request updates documentation: adds a v3.0.0rc1 release entry to docs/changelog.mdx and docs/updates.mdx; updates version wording and install examples from 3.0.0b2 to 3.0.0rc1 across getting-started and servers docs; registers two new docs.json pages (python-sdk/fastmcp-server-middleware-dereference and python-sdk/fastmcp-server-tasks-notifications). No code, API signatures, or runtime behavior were changed. Possibly related PRs
🚥 Pre-merge checks | ✅ 2 | ❌ 2❌ Failed checks (2 warnings)
✅ Passed checks (2 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
| ```python | ||
| from fastmcp.server.auth.providers.azure import EntraOBOToken | ||
|
|
||
| @mcp.tool() | ||
| async def get_emails( | ||
| graph_token: str = EntraOBOToken(["https://graph.microsoft.com/Mail.Read"]), | ||
| ): | ||
| # OBO exchange already happened — just use the token | ||
| ... | ||
| ``` |
There was a problem hiding this comment.
Make the Azure OBO snippet runnable or replace it with a doc link.
The snippet uses ellipsis and omits setup, so it isn’t copy/paste runnable. Either expand it into a full example (imports + server setup + expected behavior) or replace it with a short link to the dedicated guide.
✏️ Suggested edit
-```python
-from fastmcp.server.auth.providers.azure import EntraOBOToken
-
-@mcp.tool()
-async def get_emails(
- graph_token: str = EntraOBOToken(["https://graph.microsoft.com/Mail.Read"]),
-):
- # OBO exchange already happened — just use the token
- ...
-```
+See the [Azure integration guide](/integrations/azure) for a runnable OBO example.As per coding guidelines: "Always include complete, runnable code examples that users can copy and execute in MDX documentation".
| ## New Contributors | ||
| * [@martimfasantos](https://github.com/martimfasantos) made their first contribution in [#3086](https://github.com/jlowin/fastmcp/pull/3086) | ||
|
|
||
| **Full Changelog**: https://github.com/jlowin/fastmcp/compare/v3.0.0b2...v3.0.0rc1 |
There was a problem hiding this comment.
Use descriptive link text for the full changelog.
Raw URLs are harder to scan and less accessible; use a descriptive label.
✏️ Suggested edit
-**Full Changelog**: https://github.com/jlowin/fastmcp/compare/v3.0.0b2...v3.0.0rc1
+**Full Changelog**: [v3.0.0b2 → v3.0.0rc1](https://github.com/jlowin/fastmcp/compare/v3.0.0b2...v3.0.0rc1)As per coding guidelines: "Use specific, actionable link text instead of 'click here' in MDX documentation".
All version references, install instructions, and "beta" language now reflect the release candidate status. Adds full rc1 release notes to both
updates.mdxandchangelog.mdx.