Skip to content

Commit 9e1aff8

Browse files
Update changelogs from fern repo (#4373)
Co-authored-by: davidkonigsberg <72822263+davidkonigsberg@users.noreply.github.com>
1 parent 425d7b4 commit 9e1aff8

8 files changed

Lines changed: 15 additions & 15 deletions

File tree

fern/products/cli-api-reference/cli-changelog/2023-08-01.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
properties:
66
typesReferencedOnlyByService:
77
docs: "Types referenced by exactly one service."
8-
type: ``map<commons.ServiceId, list<commons.TypeId>>``
8+
type: `map<commons.ServiceId, list<commons.TypeId>>`
99
sharedTypes:
1010
docs: "Types referenced by either zero or multiple services."
11-
type: ``list<commons.TypeId>``
11+
type: `list<commons.TypeId>`
1212
```
1313

fern/products/cli-api-reference/cli-changelog/2024-09-04.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,13 @@ use them in alias declarations to minimize code duplication:
4848

4949
```yml
5050
types:
51-
``GenericTest<T>``:
51+
`GenericTest<T>`:
5252
properties:
5353
value: T
5454
other-value: string
5555

5656
GenericApplication:
57-
type: ``GenericTest<string>``
57+
type: `GenericTest<string>`
5858
```
5959
6060
More information can be found here: https://buildwithfern.com/learn/api-definition/fern/types#generics.

fern/products/cli-api-reference/cli-changelog/2025-01-14.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ types:
2424
User:
2525
properties:
2626
name: string
27-
email: ``nullable<string>``
27+
email: `nullable<string>`
2828
```
2929

3030

fern/products/cli-api-reference/cli-changelog/2025-08-14.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ service:
4040
request:
4141
body:
4242
properties:
43-
author: ``optional<string>``
44-
tags: ``optional<list<string>>``
45-
title: ``optional<string>``
43+
author: `optional<string>`
44+
tags: `optional<list<string>>`
45+
title: `optional<string>`
4646
content-type: application/json
4747
name: UploadDocumentRequest
4848
...

fern/products/sdks/overview/csharp/changelog/2026-01-15.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ var request2 = new UpdateUserRequest { Name = "John" };
2424
var request3 = new UpdateUserRequest { Name = null };
2525
```
2626

27-
The ``Optional<T>`` type includes:
27+
The `Optional<T>` type includes:
2828
* `IsDefined` property to check if a value is set
2929
* `Value` property to access the value (throws if undefined)
3030
* `TryGetValue` method for safe value access
3131
* Implicit conversion operators for ergonomic usage
3232
* Full JSON serialization support
33-
* ``IEquatable<Optional<T>>`` implementation for proper equality checks
33+
* `IEquatable<Optional<T>>` implementation for proper equality checks
3434

3535

3636
**`(fix):`** Fix query parameter serialization to properly handle nullable struct types (DateTime?, DateOnly?, etc.) by adding `.Value` accessor when needed.

fern/products/sdks/overview/csharp/changelog/2026-01-20.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ var contentLength = headers.ContentLength;
2929
```
3030

3131
New types:
32-
* ``WithRawResponseTask<T>`` - Awaitable task wrapper supporting both usage patterns
33-
* ``WithRawResponse<T>`` - Container for data + raw response metadata
32+
* `WithRawResponseTask<T>` - Awaitable task wrapper supporting both usage patterns
33+
* `WithRawResponse<T>` - Container for data + raw response metadata
3434
* `RawResponse` - HTTP response metadata (status code, headers, URL)
3535
* `ResponseHeaders` - Case-insensitive header collection with enumeration support
3636

3737
Benefits:
3838
* Zero overhead when raw response access isn't needed
39-
* Backward compatible - implicit conversion to ``Task<T>`` supported
39+
* Backward compatible - implicit conversion to `Task<T>` supported
4040
* Type-safe access to HTTP metadata when debugging or logging
4141
* Case-insensitive header lookups following HTTP standards
4242

fern/products/sdks/overview/java/changelog/2024-06-13.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ service:
3535
response: ListUsersResponse
3636
```
3737
38-
The generated ``SyncPagingIterable<User>`` can then be used to traverse through the `User` objects:
38+
The generated `SyncPagingIterable<User>` can then be used to traverse through the `User` objects:
3939

4040
```java
4141
for (User user : client.users.list(...)) {

fern/products/sdks/overview/java/changelog/2026-03-18.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ try-with-resources, calling `disconnect()` automatically on scope exit.
4141
lets callers tune max retries, backoff delay, and queue size before
4242
calling `connect()`.
4343

44-
**Generic `onMessage(`Consumer<String>`)` handler** — fires for every
44+
**Generic `onMessage(Consumer<String>)` handler** — fires for every
4545
incoming text frame with the raw JSON string, before type-specific
4646
dispatch. Useful for logging or custom routing.
4747

0 commit comments

Comments
 (0)