Starlight Blog Changelog
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.tsfile: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
trailingSlashoption 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)
View changes on GitHub
0.8.0
🚀 Features
- Adds an RSS feed to the generated blog - by @HiDeoo (e4ddb)
The feature is automatically enabled when the Astro
siteoption is set inastro.config.mjs.
View changes on GitHub
0.7.1
🐞 Bug Fixes
- Prevents the blog post and tag lists from being included in the Pagefind search index to avoid duplicated search results - by @HiDeoo (0f82e)
- Prevents blog navigation links from being included in the Pagefind search index to avoid duplicated search results - by @HiDeoo (98967)
View changes on GitHub
0.7.0
🚨 Breaking Changes
- Bumps minimum required Starlight version to 0.22.1 - by @HiDeoo (ed23e)
🚀 Features
- Add support for draft blog posts - by @HiDeoo (eebbb)
View changes on GitHub
0.6.0
🚀 Features
- Respects the Astro
trailingSlashoption - by @HiDeoo (e87f6) - Adds new
prevNextLinksOrderoption to control if next links will point to the next blog post towards the past or the future - by @HiDeoo (0c12c) - Adds support for Markdown in blog post excerpts - by @HiDeoo (49cd5)
- Adds new
prefixoption to configure the base prefix for all blog routes - by @HiDeoo (b6542) - Uses Starlight
<LinkCard>component for prev/next links - by @HiDeoo (75528)
🐞 Bug Fixes
- Fixes a TypeScript type issue with the plugin configuration schema - by @HiDeoo (d1194)