Skip to content

Commit 10c0414

Browse files
authored
Merge branch 'main' into devalog/net-compatibility
2 parents 6ae1e51 + e098ef0 commit 10c0414

39 files changed

+309
-155
lines changed

.vale.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ Microsoft.Passive = NO
2020
Microsoft.Suspended = NO
2121
Microsoft.Vocab = NO
2222
Microsoft.Spacing = NO
23+
Microsoft.Semicolon = NO # Mostly just picks up code
24+
Microsoft.SentenceLength = NO # Mostly just picks up code
2325
Microsoft.Dashes = NO
2426

2527
# Not relevant for Fern audience

.vale/styles/FernStyles/Acronyms.yml

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ exceptions:
1111
- API
1212
- ASP
1313
- CLI
14-
- CNAME # Fern-specific
14+
- CNAME
1515
- CPU
1616
- CSS
1717
- CSV
1818
- DEBUG
19-
- DNS # Fern-specific
19+
- DNS
2020
- DOM
2121
- DPI
2222
- FAQ
@@ -56,7 +56,7 @@ exceptions:
5656
- TBD
5757
- TCP
5858
- TODO
59-
- TXT # Fern-specific
59+
- TXT
6060
- URI
6161
- URL
6262
- USB
@@ -65,9 +65,13 @@ exceptions:
6565
- XSS
6666
- YAML
6767
- ZIP
68-
- MDX # Fern-specific
69-
- SEO # Fern-specific
70-
- AWS # Fern-specific
71-
- TLS # Fern-specific
72-
- BCL # Fern-specific
73-
- LLM # Fern-specific
68+
- SEO
69+
- TLS
70+
- BCL
71+
- LLM
72+
- MDX
73+
- SEO
74+
- AWS
75+
- OpenRPC
76+
- gRPC
77+
- RPC

.vale/styles/FernStyles/Headings.yml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,50 @@ exceptions:
3737
- README
3838
- Action
3939
- Actions
40+
- WebSocket
41+
- WebSocket Playground
42+
- OpenRPC
43+
- gRPC
44+
- RPC
45+
- SDK
46+
- SDKs
47+
- Accordion
48+
- Accordions
49+
- Accordion Groups
50+
- Aside
51+
- Badge
52+
- Badges
53+
- Button
54+
- Callout
55+
- Callouts
56+
- Card
57+
- Cards
58+
- Card Groups
59+
- Code Blocks
60+
- CodeBlock
61+
- CodeBlocks
62+
- CodeGroup
63+
- Embed
64+
- Endpoint Request Snippet
65+
- Endpoint Response Snippet
66+
- Endpoint Schema Snippet
67+
- Frame
68+
- Frames
69+
- Icon
70+
- Icons
71+
- Param Field
72+
- Param Fields
73+
- ParamField
74+
- Runnable Endpoint
75+
- Step
76+
- Steps
77+
- Sticky Table
78+
- StickyTable
79+
- Tab
80+
- Tabs
81+
- Tooltip
82+
- Tooltips
83+
- PDF
84+
- CSS
85+
- HTML
86+
- JSON

fern/apis/fai/openapi.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@
474474
}
475475
},
476476
"x-fern-audiences": [
477-
"internal"
477+
"customers"
478478
],
479479
"security": [
480480
{
@@ -2026,7 +2026,7 @@
20262026
}
20272027
},
20282028
"x-fern-audiences": [
2029-
"internal"
2029+
"customers"
20302030
],
20312031
"security": [
20322032
{

fern/fern.config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"organization": "fern",
3-
"version": "0.93.1"
4-
}
3+
"version": "0.94.2"
4+
}

fern/products/cli-api-reference/cli-changelog/2025-10-04.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44

55
## 0.84.7
6-
**`(fix):`** Fixes `displayName` generation to be stricter for `oneOf` variants.
6+
**`(fix):`** Fixes `displayName` generation to be stricter for `oneOf` variants.
77
Now, a display name will be set if a `summary` or `title` is provided for a variant, otherwise none will be generated.
88

99

fern/products/cli-api-reference/cli-changelog/2025-10-06.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ settings:
1414
1515
page-actions:
1616
default: cursor
17-
options:
17+
options:
1818
chatgpt: false
1919
claude: true
2020
vscode: true

fern/products/cli-api-reference/cli-changelog/2025-10-15.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## 0.93.0
2-
**`(feat):`** Turns HTTP snippets on by default in docs generation.
2+
**`(feat):`** Turns HTTP snippets on by default in docs generation.
33

4-
To turn HTTP snippets off, set `settings.http-snippets: false` in the `docs.yml` file. You can also specify an explicit list of snippets to include.
4+
To turn HTTP snippets off, set `settings.http-snippets: false` in the `docs.yml` file. You can also specify an explicit list of snippets to include.
55

66
```docs.yml
77
# this will only generate typescript and python snippets, no curl
@@ -13,7 +13,7 @@ settings:
1313

1414

1515
## 0.92.0
16-
**`(feat):`** For debugging purposes, generating a docs preview via `fern generate --docs --preview`, it is now possible to specify `--skip-upload` to
16+
**`(feat):`** For debugging purposes, generating a docs preview via `fern generate --docs --preview`, it is now possible to specify `--skip-upload` to
1717
skip the asset uploading step.
1818

1919

fern/products/cli-api-reference/cli-changelog/2025-10-23.mdx

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 0.94.5
2+
**`(fix):`** Properly reload pages with Markdown snippets if you update the snippet in `fern docs dev`
3+
4+
5+
## 0.94.4
6+
**`(fix):`** Restore support for x-fern-examples path parameters if there is no request body.
7+
8+
9+
## 0.94.3
10+
**`(fix):`** Fix broken recursive unescaping of \ during handling of \$ in IR generation.
11+
12+
113
## 0.94.2
214
**`(fix):`** Improve IR hashing in IntermediateRepresentationChangeDetector.
315
Previously it looked at the entire IR. Now it only compares the

fern/products/docs/pages/api-references/api-explorer.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ subtitle: Reduce "time to 200" by allowing users to make real calls to your API
55

66
Fern's API Explorer allows users to make authenticated requests to your API without ever leaving your documentation.
77

8-
### Auto-populate with examples
8+
### Autopopulate with examples
99
Fern will automatically populate the fields of the endpoint with the values set in your API specification.
1010

1111
<div style="position: relative; padding-bottom: 50.63657407407407%; height: 0;"><iframe src="https://www.loom.com/embed/a48d921459b54dde9652c3fcc85ebc54?sid=2c0b4f4d-7e24-4fc5-a617-8d933195bfec?hide_owner=true&hide_share=true&hide_title=true&hideEmbedTopBar=true" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;"></iframe></div>
@@ -28,4 +28,4 @@ Allow users to test their calls in a sandbox environment or select the environme
2828

2929
For APIs that support WebSocket connections, the API Explorer includes a **WebSocket**-specific Playground. The WebSocket Playground also allows users to establish a connection with the API, and send/receive messages in real-time.
3030

31-
<div style="position: relative; padding-bottom: 56.2%; height: 0;"><iframe src="https://www.loom.com/embed/be4da30404794e9983c4fe639f78d4c8?sid=73b7aeda-98fa-4531-87ed-1e5909500fe2?hide_owner=true&hide_share=true&hide_title=true&hideEmbedTopBar=true" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;"></iframe></div>
31+
<div style="position: relative; padding-bottom: 56.2%; height: 0;"><iframe src="https://www.loom.com/embed/be4da30404794e9983c4fe639f78d4c8?sid=73b7aeda-98fa-4531-87ed-1e5909500fe2?hide_owner=true&hide_share=true&hide_title=true&hideEmbedTopBar=true" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;"></iframe></div>

0 commit comments

Comments
 (0)