You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: changelog.mdx
+57Lines changed: 57 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,63 @@ rss: true
5
5
noindex: true
6
6
---
7
7
8
+
<Updatelabel="August 10 - August 16"tags={["Improvements"]}rss={{ title: "Weekly Updates", description: "Performance optimizations, LLM integrations, web editor polish, and API playground enhancements" }}>
9
+
10
+
## Performance and build optimizations
11
+
12
+
- MDX transpilation now happens at deployment time instead of on every page load in uncached NextJS serverless environments, improving time to first byte for uncached pages.
13
+
- Content-based hashing prevents re-transpilation when MDX hasn't changed, reducing update workflow times by ~50% for customers with large page counts (deployments over 5 minutes should be roughly halved)
14
+
- Preview deployment viewing in the dashboard is now faster with added database indexes and query parallelization in our backend
15
+
- Reduced page size by eliminating duplicate `navigation` data in each page's `rsc` payload—performance gains most noticeable with high page counts or complex navigation structures
16
+
- More aggressive prefetching enables instant page loads more frequently
17
+
18
+
## API playground and OpenAPI enhancements
19
+
20
+
- OpenAPI to MCP conversion moved to backend, enabling hosted MCP servers to contain tools (expect clearer documentation and config options soon)
21
+
- Added Ruby support to API playground
22
+
- We added a feature such that you can now [specify API pages using just your docs.json](/api-playground/openapi-setup#auto-populate-api-pages) without creating any new mdx files.
23
+
- Support for [`webhook` pages](/api-playground/openapi-setup#webhooks) in docs navigation from OpenAPI specs
24
+
- Optimized AI model context by removing anchor link specifications from markdown links when navigating to Anthropic, OpenAI, or other providers
25
+
26
+
## Web editor improvements
27
+
28
+
- File creation/renaming now saves changes when clicking away instead of requiring Enter key press
29
+
- Fixed branch navigation where changing URL to specific branch would redirect to last active branch instead of intended destination
0 commit comments