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: fern/products/cli-api-reference/cli-changelog/2025-11-13.mdx
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,16 @@
1
+
## 1.1.0
2
+
**`(feat):`** Add `path-parameter-order`, which configures how path parameters are ordered in generated code.
3
+
If set to `url-order` (the default), path parameters are ordered in the same order as they appear in the URL.
4
+
If set to `spec-order`, path parameters are ordered in the same order as they are listed in the spec.
5
+
6
+
Can be configured as follows in `generators.yml`:
7
+
```yaml
8
+
api:
9
+
settings:
10
+
path-parameter-order: url-order
11
+
```
12
+
13
+
1
14
## 1.0.2
2
15
**`(fix):`** Display OpenAPI validation warnings when using the --warnings flag with fern check. Previously, warnings were counted but not shown; now they are logged with location details when --warnings is specified.
0 commit comments