5.0.0-rc-4
Pre-release
Pre-release
dustinmoris
released this
07 Dec 10:03
·
175 commits
to master
since this release
- Fixed bug when a
NestedEndpoint
preceded aMultiEndpoint
inGiraffe.EndpointRouting
(see #452) - Removed the sub-module
GiraffeMiddleware
from theGiraffe.EndpointRouting
module (simply keep using theUseGiraffe
extension method of anIApplicationBuilder
) - Added an overload for
UseGiraffe
to pass in anEndpoint list
:- Before:
app.UseEndpoints(fun e -> e.MapGiraffeEndpoints(endpoints))
- Now:
app.UseGiraffe(endpoints)
- Before: