We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47122b9 commit c5899e0Copy full SHA for c5899e0
1 file changed
CHANGELOG.md
@@ -4,7 +4,20 @@
4
5
### v26.0.0
6
7
-- TODO: Add stuff here
+- `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
+```
21
22
## Version 25
23
0 commit comments