Starlight Blog Changelog
0.13.0
🚀 Features
- Adds author pages listing all posts by author - by @HiDeoo (b7bab)
- Lists authors in the sidebar if there are multiple authors - by @HiDeoo (c22d7)
View changes on GitHub
0.12.0
🚀 Features
- Adds new
featured
frontmatter field to mark a blog post as featured. Featured posts are listed in a dedicated group in the sidebar. - by @HiDeoo (93f06)
View changes on GitHub
0.11.1
🐞 Bug Fixes
- Fixes a potential build error with recent Rollup versions - by @HiDeoo (6e213)
View changes on GitHub
0.11.0
🚨 Breaking Changes
- Uses Starlight
lastUpdated
frontmatter field to display the update date of a blog post - by @HiDeoo (75205)
View changes on GitHub
0.10.0
🚀 Features
- Adds support for specifying a blog post’s updated date - by @julien-deramond and @HiDeoo (569e0)
View changes on GitHub
0.9.1
🐞 Bug Fixes
- Fixes an issue that could cause duplicated pagination links to be rendered - by @HiDeoo (50d7c)
View changes on GitHub
0.9.0
🚨 Breaking Changes
-
Bumps minimum required Starlight version to 0.24.0 - by @HiDeoo (c8325)
-
Adds support for cover images - by @HiDeoo (fa1ca) You will need to update Starlight’s content collections configuration in the
src/content/config.ts
file:import { defineCollection } from 'astro:content';import { docsSchema } from '@astrojs/starlight/schema';import { blogSchema } from 'starlight-blog/schema'export const collections = {docs: defineCollection({ schema: docsSchema({ extend: blogSchema() }) }),docs: defineCollection({ schema: docsSchema({ extend: (context) => blogSchema(context) }) }),}
🚀 Features
- Uses Astro’s built-in optimized asset support for author profile images - by @HiDeoo (2baa6)
- Uses Starlight built-in badges for draft status - by @HiDeoo (a6587)
View changes on GitHub
0.8.3
🐞 Bug Fixes
- Hides table of content on the blog post and tag list pages - by @HiDeoo (55fc6)
View changes on GitHub
0.8.2
🐞 Bug Fixes
- Fixes a 404 RSS feed sidebar link error when using the Astro
trailingSlash
option set toalways
- by @HiDeoo (8e1d5)
View changes on GitHub
0.8.1
🚀 Features
- Adds a social link to Starlight for the blog RSS feed - by @HiDeoo (c506b)
🐞 Bug Fixes
- Fixes an RSS feed image rendering issue by temporarily replacing images with a placeholder - by @HiDeoo (9f33e)