Skip to content

Starlight Changelog

0.5.3

Patch Changes

0.5.2

Patch Changes

  • #343 d618678 Thanks @delucis! - Fix escaping of non-relative user config file paths for custom CSS and logos

0.5.1

Patch Changes

0.5.0

Minor Changes

  • #313 dc42569 Thanks @delucis! - Add a not-content CSS class that allows users to opt out of Starlight’s default content styling

  • #297 fb15a9b Thanks @HiDeoo! - Improve <Tabs> component keyboard interactions

  • #303 69b7d4c Thanks @HiDeoo! - Add new global pagination option defaulting to true to define whether or not the previous and next page links are shown in the footer. A page can override this setting or the link text and/or URL using the new prev and next frontmatter fields.

Patch Changes

  • #318 5db3e6e Thanks @delucis! - Support relative paths in Starlight config for customCSS and logo paths

0.4.2

Patch Changes

0.4.1

Patch Changes

0.4.0

Minor Changes

  • #259 8102389 Thanks @HiDeoo! - Add support for collapsed sidebar groups

  • #254 faa70de Thanks @HiDeoo! - Expose <Icon> component

  • #256 048e948 Thanks @HiDeoo! - Add new global lastUpdated option defaulting to false to define whether or not the last updated date is shown in the footer. A page can override this setting or the generated date using the new lastUpdated frontmatter field.

    ⚠️ Breaking change. Starlight will no longer show this date by default. To keep the previous behavior, you must explicitly set lastUpdated to true in your configuration.

    starlight({
    lastUpdated: true,
    }),

Patch Changes

0.3.1

Patch Changes

0.3.0

Minor Changes

  • #237 4279d75 Thanks @HiDeoo! - Use path instead of slugified path for auto-generated sidebar item configuration

    ⚠️ Potentially breaking change. If your docs directory names don’t match their URLs, for example they contain whitespace like docs/my docs/, and you were referencing these in an autogenerate sidebar group as my-docs, update your config to reference these with the directory name instead of the slugified version:

    autogenerate: {
    directory: 'my-docs',
    directory: 'my docs',
    }
  • #226 1aa2187 Thanks @delucis! - Add support for custom 404 pages.

Patch Changes

0.2.0

Minor Changes

  • #171 198c3f0 Thanks @delucis! - Add Starlight generator tag to HTML output

  • #217 490fd98 Thanks @delucis! - Updated sidebar styles. Sidebars now support top-level links and groups are styled with a subtle border and indentation to improve comprehension of nesting.

  • #178 d046c55 Thanks @delucis! - Add support for translating the Pagefind search modal

  • #210 cb5b121 Thanks @delucis! - Change page title ID to _top for cleaner hash URLs

    ⚠️ Potentially breaking change if you were linking manually to #starlight__overview anywhere. If you were, update these links to use #_top instead.

Patch Changes