Skip to content

Releases: giraffe-fsharp/Giraffe

0.1.0-alpha008

01 Apr 10:27
Compare
Choose a tag to compare
0.1.0-alpha008 Pre-release
Pre-release
  • Updated Newtonsoft.Json to version 10.0.*
  • Updated the Giraffe dotnet new template

0.1.0-alpha007

31 Mar 07:04
Compare
Choose a tag to compare
0.1.0-alpha007 Pre-release
Pre-release
  • 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 new dotnet 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 to dotLiquidHtmlView
  • Added a new HttpHandler named dotLiquidTemplate. The difference is that it let's the caller decide what Content-Type the response shall be.
  • Renamed the HttpHandler razorView to razorHtmlView
  • Added a new HttpHandler named razorView. The difference is that it let's the caller decide what Content-Type the response shall be.

0.1.0-alpha006

03 Mar 00:05
Compare
Choose a tag to compare
0.1.0-alpha006 Pre-release
Pre-release

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

26 Feb 15:28
Compare
Choose a tag to compare
0.1.0-alpha005 Pre-release
Pre-release
  • Changed dependency from Microsoft.AspNetCore.Hosting to Microsoft.AspNetCore.Hosting.Abstractions
  • Added razorView HttpHandler

0.1.0-alpha004

19 Feb 12:14
Compare
Choose a tag to compare
0.1.0-alpha004 Pre-release
Pre-release

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 new bind function (Fixes #5)
  • Upgraded project to .NET Core SDK RC4

0.1.0-alpha003

16 Feb 00:59
Compare
Choose a tag to compare
0.1.0-alpha003 Pre-release
Pre-release
  • Upgraded to FSharp.Core 4.1.0
  • Added subRoute and subRouteCi handlers (Fixes #7 )
  • Uses culture invariant parse functions for routef and routeCif (See #8)

0.1.0-alpha002

28 Jan 18:25
Compare
Choose a tag to compare
0.1.0-alpha002 Pre-release
Pre-release
  • Changed the HttpHandlerContext to include an IServiceProvider and removed IHostingEnvironment and ILoggerFactory instead
  • Added more default HttpHandlers: challenge, signOff, requiresAuthentication, requiresRole, requiresRoleOf, clearResponse and xml
  • 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 to LambdaErrorHandlerMiddleware and changed the IApplicationBuilder extension method to UseLambdaErrorHandler

0.1.0-alpha001

16 Jan 01:30
Compare
Choose a tag to compare
0.1.0-alpha001 Pre-release
Pre-release

First alpha release with a basic set of functionality.