Skip to content

Commit 27480bf

Browse files
Update changelogs from fern repo (#2455)
Co-authored-by: dsinghvi <10870189+dsinghvi@users.noreply.github.com>
1 parent 02c3b66 commit 27480bf

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

fern/products/cli-api-reference/cli-changelog/2025-12-02.mdx

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
## 2.16.0
2+
**`(feat):`** Add support for aliases in generators.yml. You can now define aliases that map to multiple groups, allowing you to run multiple groups with a single command.
3+
4+
```yaml
5+
# generators.yml
6+
aliases:
7+
all: ["php-sdk", "ts-sdk", "go-sdk"]
8+
9+
groups:
10+
php-sdk:
11+
generators: ...
12+
ts-sdk:
13+
generators: ...
14+
go-sdk:
15+
generators: ...
16+
```
17+
18+
Then run `fern generate all` to generate all three SDKs at once.
19+
20+
121
## 2.15.2
222
**`(fix):`** Fix `fern check` incorrectly reporting SDK method conflicts for endpoints with the same `x-fern-sdk-group-name` and `x-fern-sdk-method-name` when they are in different namespaces. The validator now correctly allows duplicate SDK method names across different namespaces, matching the generator behavior where namespace is prepended to the SDK group name.
323

0 commit comments

Comments
 (0)