Skip to content

Starlight Blog Changelog

Version 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