Skip to content

Commit 9dff74c

Browse files
devin-ai-integration[bot]chdeskurdevalog
authored
Add changelog entries for recent Docs product features (#1714)
Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: Catherine Deskur <[email protected]> Co-authored-by: Devin Logan <[email protected]>
1 parent 8c7052f commit 9dff74c

File tree

2 files changed

+56
-0
lines changed

2 files changed

+56
-0
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
## Navbar dropdown menus
2+
3+
Group related links in your navbar with new dropdown menus. Organize resources, tools, or external links under a single button to keep your header clean.
4+
5+
```yaml title="docs.yml"
6+
navbar-links:
7+
- type: dropdown
8+
text: Resources # dropdown button text
9+
icon: fa-solid fa-seedling # optional icon
10+
links:
11+
- text: Plant database # link display text
12+
href: https://example.com/plants # destination URL
13+
icon: fa-regular fa-leaf # optional icon
14+
- text: Growing guides
15+
href: https://example.com/guides
16+
```
17+
18+
Learn more in the [navbar links configuration documentation](/learn/docs/configuration/what-is-docs-yml#navbar-links-configuration).
19+
20+
## API Explorer direct requests
21+
22+
You can now send API Explorer requests directly to your API instead of through Fern's proxy. This is useful for testing Cross-Origin Resource Sharing (CORS) configuration and debugging authentication flows.
23+
24+
```yaml title="docs.yml"
25+
settings:
26+
disable-explorer-proxy: true
27+
```
28+
29+
<Warning>
30+
Your API must have CORS enabled to allow requests from the documentation domain.
31+
</Warning>
32+
33+
Learn more in the [docs.yml reference documentation](/learn/docs/configuration/what-is-docs-yml#settingsdisable-explorer-proxy).

fern/products/docs/pages/changelog/2025-11-03.mdx

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
## Custom icons across your navigation
2+
3+
You can now use your own image files as icons throughout your `docs.yml` navigation config, including for [navbar link](/learn/docs/configuration/what-is-docs-yml#navbar-links-configuration), [section, page](/learn/docs/configuration/navigation#sidebar-icons), and [product](/learn/docs/configuration/products#add-your-product-configuration) icons.
4+
5+
Icons now support three formats:
6+
- **Font Awesome icons**: Use icon names like `fa-solid fa-seedling` or `fa-regular fa-leaf`. Pro and Brand icons from Font Awesome are supported.
7+
- **Custom image files**: Use relative paths to custom image files (e.g., `./assets/icons/plant-icon.svg`). Paths are relative to the `docs.yml` file.
8+
- **Inline SVG**: Provide an SVG string wrapped in quotes.
9+
10+
```yaml Sidebar icons in docs.yml
11+
navigation:
12+
- section: Home
13+
icon: fa-regular fa-home # Font Awesome icon
14+
contents:
15+
- page: Introduction
16+
icon: ./assets/icons/intro-icon.svg # Custom image file
17+
path: ./pages/intro.mdx
18+
- page: Custom Features
19+
icon: "<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'><path d='M12 2L2 7v10c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V7l-10-5z'/></svg>" # Inline SVG
20+
path: ./pages/custom.mdx
21+
- api: API Reference
22+
icon: fa-regular fa-puzzle
23+
```
124
## External product links
225
326
You can now configure products to link to external URLs (separate applications, third-party documentation, or other external resources) instead of documentation within your site.

0 commit comments

Comments
 (0)