Skip to content

Release v1.3.28

Choose a tag to compare

@github-actions github-actions released this 04 Apr 11:58
· 0 commits to eab2f910b587ad064ce83a82581fb6feff0b8928 since this release

🚀 Release v1.3.28

🐛 Bug Fixes

  • fix(seo): resolve 500 error when accessing articles via custom SEO slug URL (#10)

    • Backend GetArticle now supports both numeric ID and seo_slug lookup
    • Frontend no longer forces parseInt on the route parameter
    • Added SEO slug uniqueness validation on create/update to prevent conflicts
  • fix(seo): convert homepage and article pages from CSR to SSR for search engine indexing

    • Homepage and article pages now use Server-Side Rendering for proper SEO crawling

🐳 Docker Image

docker pull ictrun/kuno:v1.3.28

🔗 Quick Deploy

# One-click deployment
curl -sSL https://raw.githubusercontent.com/xuemian168/kuno/main/deploy-from-hub.sh | bash

# Or with specific version
docker run -d \
  --name kuno \
  -p 80:80 \
  -v blog-data:/app/data \
  -e NEXT_PUBLIC_API_URL=https://your-domain.com/api \
  ictrun/kuno:v1.3.28