Skip to content

Releases: MiniProfiler/dotnet

v3.0.11

27 May 08:58
Compare
Choose a tag to compare
  • RequireJs support now integrated (UI#11, #47, UI#12)
  • Parameter names should mass base declaration in ActionFilterAttribute (#54)
  • New constructor for SqlServerStorage (#53) - instantiate with connection string
  • Adding more options for SqlServer sql formatting through VerboseSqlServerFormatter. More flexibility for all formatters by including the IDbCommand in the ISqlFormatter.FormatSql method (#48, #59).
  • Do not record CustomTiming (#24) or CustomLink if MiniProfiler.IsActive == false
  • Better Sql Formatting for Stored Procedures on Sql Server (#60)
  • EF6 release from beta
    • Update to EFProfiledDBProviderServices for EF6 with MySql (#63)
  • MongoDb initial nuget (through mongocsharpdriver v1.8.3)

v3.0.10

11 May 07:54
Compare
Choose a tag to compare

v3.0.10-beta

05 Feb 08:58
Compare
Choose a tag to compare
v3.0.10-beta Pre-release
Pre-release
  • First public nuget release of v3.0
  • Includes new nuget package updates:
  • CustomTiming replaces SqlTiming as the general timing storage. Sql is now just one case. More adaptable for different timing types.
  • Lots of bug fixing, performance enhancements
  • Move from the old location to here.
  • SqlServerStorage is rewritten to use different tables, corresponding to new CustomTiming approach. If you used SqlServerStorage in v2.0 this is a breaking change. In this case be sure to see the new table creation script
  • Add MultiStorageProvider as new option for being able to designate multiple storage locations.
    • Will store in all listed, retrieve from the first possible location where there is a match
    • Implements IStorage so it can be set for the session using MiniProfiler.Settings.Storage, or for the individual request.
    • Set MiniProfiler.Current.Storage to any IStorage (including MultiStorageProvider) to customize the storage for any single request (example)
  • New nuget for Entity Framework 6. Initialize in with MiniProfilerEF6.Initialize();
  • Updated for newest versions of SqlCe and SqlLite