Skip to content

Releases: linkdotnet/Blog

v2.2

23 Oct 09:45
Compare
Choose a tag to compare

New Features and Improvements

  • Upgrade to .net6 RC2
  • Automatically generating a sitemap.xml (#37)
  • When creating a blog post the preview is updated immediately

v2.1.2

01 Oct 13:48
Compare
Choose a tag to compare

This is another bugfix release

Bugfixes

  • Fixed an issue where storing or retrieving keys from the local storage throws an exception
  • Fixed CSS Layout of introduction card

v2.1.1

29 Sep 13:58
Compare
Choose a tag to compare

This is a hotfix release which includes fixes for two major bugs

Bugfixes

  • Fixes #35 - Can't save blog posts due to null reference exception in cache
  • Fixes #36 - Cache wasn't updated correctly when searching for terms or tags

v2.1

28 Sep 13:24
Compare
Choose a tag to compare

New Features and Improvements

  • Included caching to reduce load times (see #33)
  • Refactored and simplified pagination (see #34)
  • Smaller cleanups and refactorings

v2.0

24 Sep 06:48
Compare
Choose a tag to compare

This is the new 2.0 release. It brings a lot of new features and improvements

Features

  • Comment section added. Based on giscus. See #30
  • Components and images are lazy loaded when outside current view window. See #28

Improvements

  • Uses .net 6 RC1 - which also made same smaller refactorings possible

Breaking changes

  • .net 6 RC1 disabled long-pooling connection as fallback . If you deploy to Azure Web Apps make sure ARR-Affinity and WebSockets are enabled. More information here and here

v2.0-preview.2

16 Sep 18:40
Compare
Choose a tag to compare
v2.0-preview.2 Pre-release
Pre-release

This is the second preview for the upcoming 2.0 release

New Features

  • Update .net 6 to rc1
  • StorageProvider has to be defined via the appconfiguration (default: SqlServer)

Bug-Fixes

  • Fixed a bug where RavenDb Provider couldn't be used

v2.0-preview.1

11 Sep 18:12
Compare
Choose a tag to compare
v2.0-preview.1 Pre-release
Pre-release

This is the first release of the new 2.0 version.

Improvements

  • Update to .net6 (preview 7)
  • Performance Improvement
  • Increased test coverage and smaller bug-fixes
  • Removed Blazored.LocalStorage dependency and use LocalStorage from .NET

v1.8

10 Sep 17:46
Compare
Choose a tag to compare

This release focuses on some bugfixes and smaller improvements

Bug-Fixes

Improvements

  • Dashboard for Analytics responsive and working better on mobile
  • More information displayed on the table including link to the blog post itself

v1.7

07 Sep 11:21
f6e8f71
Compare
Choose a tag to compare

New Features

  • Analytics Platform implemented - You can now see how your blog was clicked

Migration

To migrate to the latest version (when using SQL database) please apply the following migration:

CREATE TABLE [dbo].[userrecords]
  (
     [id]                 [NVARCHAR](450) NOT NULL,
     [useridentifierhash] [INT] NOT NULL,
     [datetimeutcclicked] [DATETIME2](7) NOT NULL,
     [urlclicked]         [NVARCHAR](max) NULL,
     CONSTRAINT [PK_UserRecords] PRIMARY KEY CLUSTERED ( [id] ASC )
  ) 

v1.6

26 Aug 05:58
Compare
Choose a tag to compare

New Features

  • Experimental Slide-Show added

Improvements

  • Removed some obsolete code / cleanup