Skip to content

Commit ad5dd41

Browse files
Update changelogs from fern repo (#376)
Co-authored-by: davidkonigsberg <[email protected]>
1 parent a1b6a39 commit ad5dd41

File tree

25 files changed

+125
-29
lines changed

25 files changed

+125
-29
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
## 0.15.0-rc0
2-
**`(chore):`** - **Break**: The fern folder now has a top-level `apis` directory to handle apis and docs no longer live within an api definition
2+
**`(chore):`** - **Break**: The fern directory now has a top-level `apis` directory to handle apis and docs no longer live within an api definition
33

fern/products/cli-api-reference/cli-changelog/2023-11-20.mdx

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,18 @@
1111
**`(chore):`** **Full Changelog**: https://github.com/fern-api/fern/compare/0.15.2-rc0...0.15.2-rc1
1212

1313
## 0.15.2-rc0
14-
**`(chore):`** ## What's Changed
15-
* upgrade json5 to `2.2.2` by @dsinghvi in https://github.com/fern-api/fern/pull/2304
16-
* chore: remove wire verification by @dsinghvi in https://github.com/fern-api/fern/pull/2305
17-
* chore: upgrade yaml to 2.3.3 by @dsinghvi in https://github.com/fern-api/fern/pull/2306
18-
* fix: `fern generate --local` with `.fernignore` fails in Github Workflow by @dsinghvi in https://github.com/fern-api/fern/pull/2307
19-
20-
14+
**`(chore):`** ## What's Changed
15+
* upgrade json5 to `2.2.2` by @dsinghvi in https://github.com/fern-api/fern/pull/2304
16+
* chore: remove wire verification by @dsinghvi in https://github.com/fern-api/fern/pull/2305
17+
* chore: upgrade yaml to 2.3.3 by @dsinghvi in https://github.com/fern-api/fern/pull/2306
18+
* fix: `fern generate --local` with `.fernignore` fails in Github Workflow by @dsinghvi in https://github.com/fern-api/fern/pull/2307
19+
20+
2121
**Full Changelog**: https://github.com/fern-api/fern/compare/0.15.1...0.15.2-rc0
2222

2323
## 0.15.1
24-
**`(chore):`** _It's been forever since we released a non release candidate!_
25-
26-
**Break**
27-
- The file structure of the fern folder has now changed. If you have a single API, your definition can live directly at the top-level. If you have multiple, they will need to live in an apis folder. When you run `fern upgrade` the directory structure will automatically be updated.
24+
**`(chore):`** _It's been forever since we released a non release candidate!_
25+
26+
**Break**
27+
- The file structure of the Fern folder has now changed. If you have a single API, your definition can live directly at the top-level. If you have multiple, they will need to live in an apis folder. When you run `fern upgrade` the directory structure will automatically be updated.
2828

fern/products/cli-api-reference/cli-changelog/2024-11-08.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ api:
2323
specs:
2424
- openapi: ./path/to/openapi.yml
2525
settings:
26-
object-query-paramaters: true
26+
object-query-parameters: true
2727
```
2828

2929

fern/products/cli-api-reference/cli-changelog/2025-03-24.mdx

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

44

55
## 0.56.33
6-
**`(fix):`** Refactor out schema converter nodes into the `v2-importer-commons` package.
6+
**`(fix):`** Refactor out schema converter nodes into the `v3-importer-commons` package.
77

88

99
## 0.56.32

fern/products/cli-api-reference/cli-changelog/2025-05-16.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ don't overwrite each other during conversion, maintaining the integrity of the A
1010

1111

1212
## 0.61.17
13-
**`(fix):`** Add support for preserving `maxLines` and `focus` attributes when using `<Code src="..." />` components in docs.
13+
**`(fix):`** Add support for preserving `maxLines` and `focus` attributes when using `<Code>` components in docs.
1414
These attributes are now properly carried over to the generated code blocks, allowing you to control
1515
the display of referenced code snippets with features like line limits and syntax highlighting focus.
1616

fern/products/cli-api-reference/cli-changelog/2025-05-21.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
**`(internal):`** Add support for overriding auth in generators.yml. You can now specify auth for a specific generator by adding an `api` field with an `auth` property. For example:
33

44
```yaml
5-
- name: fernapi/fern-typescript-node-sdk
5+
- name: fernapi/fern-typescript-sdk
66
version: 0.48.5
77
api:
88
auth: bearer

fern/products/cli-api-reference/cli-changelog/2025-05-28.mdx

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,7 @@ This will be converted to a Fern type that combines the base properties with the
1919
2020
2121
## 0.63.15
22-
**`(fix):`** The `<Code>` component now supports more flexible prop ordering and additional properties. You can now specify `maxLines` and `focus` props in any order relative to the `src` prop. For example:
23-
24-
```mdx
25-
<Code src="../snippets/example.ts" maxLines={20} focus={1-18} />
26-
<Code maxLines={20} focus={1-18} src="../snippets/example.ts" />
27-
```
28-
29-
Both formats will work the same way, preserving the specified properties in the generated markdown. The component will automatically detect and include any additional props in the code block's metastring.
22+
**`(fix):`** The `<Code>` component now supports more flexible prop ordering and additional properties. You can now specify `maxLines` and `focus` props in any order relative to the `src` prop. Regardless of order, formats will work the same way, preserving the specified properties in the generated markdown. The component will automatically detect and include any additional props in the code block's metastring.
3023

3124

3225
## 0.63.14
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.64.24
1+
## 0.64.25
22
**`(fix):`** When a part in a multipart form request has `Content-Type: application/json` in OpenAPI or Fern Definition, interpret it as `style: json`.
33

44

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 0.65.29
2+
**`(feat):`** Support multiple 2XX responses on http endpoints part 2.
3+
4+
5+
## 0.65.28
6+
**`(feat):`** endpoint example creation ignores global auth headers
7+
8+
19
## 0.65.27
210
**`(feat):`** Support multiple 2XX responses on http endpoints.
311

fern/products/cli-api-reference/cli-changelog/2025-07-25.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.65.32
2+
**`(feat):`** Fallback to `https` if no schemes are specified in a Swagger 2.0 spec.
3+
4+
15
## 0.65.31
26
**`(fix):`** Fix openapi importer for query parameters that are inline union types.
37

0 commit comments

Comments
 (0)