Skip to content

v14.5.0

Compare
Choose a tag to compare
@EdiWang EdiWang released this 01 Jul 02:12
· 420 commits to master since this release
ae7d4ef

New Features

Update and Fixes

  • Bump Monaco editor to latest version
  • Bump TinyMCE to latest version
  • Bump .NET runtime to latest version
  • API resilience improvements
  • Logging improvements
  • A few UI design improvements
  • Change default days of showing warning for post slug modification to 3 days

Upgrade from Previous Version

SQL Server

Run migration script in ./Deployment/mssql-migration.sql

-- v14.4.1 - v14.5.x

ALTER TABLE Post DROP COLUMN IsOriginal
GO

ALTER TABLE Post DROP COLUMN OriginLink
GO

EXEC sp_rename 'Pingback', 'Mention'
GO

ALTER TABLE Mention ADD Worker NVARCHAR(16)
GO

UPDATE Mention SET Worker = N'Pingback'
GO

Other Databases

I don't have knowledge of MySQL and PostgreSql. Please refer to SQL Server migration script and do it yourself.