Releases: giraffe-fsharp/Giraffe
Releases · giraffe-fsharp/Giraffe
0.1.0-alpha008
- Updated
Newtonsoft.Json
to version10.0.*
- Updated the Giraffe
dotnet new
template
0.1.0-alpha007
- NuGet package is being built with official VS 2017 build image by AppVeyor (using .NET Core SDK 1.0.1)
- Created a NuGet package called
giraffe-template
which is a newdotnet new
template for Giraffe projects - Removed
RazorLight
as a dependency and replaced it with the official razor engine by ASP.NET Core MVC - Renamed the HttpHandler
htmlTemplate
todotLiquidHtmlView
- Added a new HttpHandler named
dotLiquidTemplate
. The difference is that it let's the caller decide whatContent-Type
the response shall be. - Renamed the HttpHandler
razorView
torazorHtmlView
- Added a new HttpHandler named
razorView
. The difference is that it let's the caller decide whatContent-Type
the response shall be.
0.1.0-alpha006
Attention, this release creates a new NuGet package named Giraffe.nupkg, which will be the new NuGet library for this project going forward.
The old package AspNetCore.Lambda.nupkg will remain as is for backwards compatibility and not be removed or updated anymore.
- Added a default logger to the
HttpHandlerContext
- Renamed NuGet package to Giraffe
0.1.0-alpha005
- Changed dependency from
Microsoft.AspNetCore.Hosting
toMicrosoft.AspNetCore.Hosting.Abstractions
- Added
razorView
HttpHandler
0.1.0-alpha004
This version has some breaking changes
- Re-factored
bind
to make it a true bind function - Added a new
compose
combinator - The
>>=
operator became>=>
now and>>=
is the newbind
function (Fixes #5) - Upgraded project to .NET Core SDK RC4
0.1.0-alpha003
0.1.0-alpha002
- Changed the
HttpHandlerContext
to include anIServiceProvider
and removedIHostingEnvironment
andILoggerFactory
instead - Added more default HttpHandlers:
challenge
,signOff
,requiresAuthentication
,requiresRole
,requiresRoleOf
,clearResponse
andxml
- Added XML documentation to all default HttpHandlers
- Updated to latest Microsoft.FSharp.Core.netcore NuGet package, which is in RC now
- Changed the name of the
ErrorHandlerMiddleware
toLambdaErrorHandlerMiddleware
and changed theIApplicationBuilder
extension method toUseLambdaErrorHandler
0.1.0-alpha001
First alpha release with a basic set of functionality.