Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions fern/products/cli-api-reference/cli-changelog/2025-12-02.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
## 2.16.0
**`(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.

```yaml
# generators.yml
aliases:
all: ["php-sdk", "ts-sdk", "go-sdk"]

groups:
php-sdk:
generators: ...
ts-sdk:
generators: ...
go-sdk:
generators: ...
```

Then run `fern generate all` to generate all three SDKs at once.


## 2.15.2
**`(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.

Expand Down