Skip to content

5.0.0-rc-4

Pre-release
Pre-release
Compare
Choose a tag to compare
@dustinmoris dustinmoris released this 07 Dec 10:03
· 167 commits to master since this release
  • Fixed bug when a NestedEndpoint preceded a MultiEndpoint in Giraffe.EndpointRouting (see #452)
  • Removed the sub-module GiraffeMiddleware from the Giraffe.EndpointRouting module (simply keep using the UseGiraffe extension method of an IApplicationBuilder)
  • Added an overload for UseGiraffe to pass in an Endpoint list:
    • Before:
      app.UseEndpoints(fun e -> e.MapGiraffeEndpoints(endpoints))
    • Now:
      app.UseGiraffe(endpoints)