Skip to content

Commit c5899e0

Browse files
committed
Changelog: add to v26.0.0 with example.
1 parent 47122b9 commit c5899e0

1 file changed

Lines changed: 14 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,20 @@
44

55
### v26.0.0
66

7-
- TODO: Add stuff here
7+
- `DependsOnMethod` removed: use flat syntax with explicit method and a slash;
8+
9+
```patch
10+
const routing: Routing = {
11+
- "/v1/users": new DependsOnMethod({
12+
+ "/v1/users": {
13+
- get: getUserEndpoint,
14+
+ "get /": getUserEndpoint,
15+
- }).nest({
16+
create: makeUserEndpoint
17+
- }),
18+
+ },
19+
};
20+
```
821

922
## Version 25
1023

0 commit comments

Comments
 (0)