All versions since 0.14.0
0.14.0
🚨 Breaking Changes
- Bumps minimum required Starlight version to 0.28.3 - by @HiDeoo (ec996)
🚀 Features
- Adds support for multilingual blogs with routing and fallback content - by @HiDeoo (d2d7f)
- Adds support for translating the blog title - by @HiDeoo (59462)
- Adds support for Starlight UI translations API - by @HiDeoo (a9150)
- Adds French UI translations - by @HiDeoo (fa4c3)
View changes on GitHub
0.14.1
🚀 Features
- Adds Italian UI translations - by @casungo and @HiDeoo (6934b)
- Adds German UI translations - by @trueberryless, Ergberg and @HiDeoo (af0c3)
View changes on GitHub
0.15.0
🚀 Features
- Refactors full-text RSS feed to use the experimental Astro Container API - by @HiDeoo (2268e) This change fixes various rendering issues with MDX content or images.
View changes on GitHub
0.16.0
Minor Changes
-
#100
679e509
Thanks @HiDeoo! - Adds support for Astro v5, drops support for Astro v4.⚠️ BREAKING CHANGE: The minimum supported version of Starlight is now
0.30.0
.Please follow the upgrade guide to update your project.
Note that the
legacy.collections
flag is not supported by this plugin and you should update your collections to use Astro’s new Content Layer API.⚠️ BREAKING CHANGE: The generated RSS feed no longer includes content of blog posts due to a regression in Astro v5. The feature will be restored in a future release. If you rely on this feature, please stay on a previous version of Starlight and Astro in the meantime.
0.16.1
Patch Changes
- #105
4ce050c
Thanks @HiDeoo! - Adds support for passingInfinity
to thepostCount
andrecentPostCount
configuration options.
0.17.0
Minor Changes
-
#111
144e6b2
Thanks @HiDeoo! - ⚠️ BREAKING CHANGE: The minimum supported version of Starlight is now version0.32.0
.Please use the
@astrojs/upgrade
command to upgrade your project:Terminal window npx @astrojs/upgrade -
#111
144e6b2
Thanks @HiDeoo! - ⚠️ BREAKING CHANGE: The Starlight Blog plugin no longer overrides the<Sidebar>
component. If you were manually renderingstarlight-blog/overrides/Sidebar.astro
in a custom override, you can now remove it. -
#111
144e6b2
Thanks @HiDeoo! - Adds a blog data object accessible on Starlight pages usingAstro.locals.starlightBlog
containing information about all the blog posts in your project. This can be useful for example to create a widget that lists recent blog posts on your homepage.See the “Blog Data” guide for more information.
-
#111
144e6b2
Thanks @HiDeoo! - Fixes a regression introduced in version0.16.0
of the plugin where the generated RSS feed no longer included content of blog posts due to a bug in Astro.
0.17.1
Patch Changes
0.17.2
Patch Changes
- #115
90da130
Thanks @HiDeoo! - Improves build performance for large sites by adding a caching layer to blog entries and data.
0.17.3
Patch Changes
- #120
24172db
Thanks @HiDeoo! - Fixes a potential build issue for blogs with more than 20 posts also generating an RSS feed.
0.18.0
Minor Changes
- #122
75dee60
Thanks @HiDeoo! - Respects Starlight convention to generate URLs with a trailing slash when using thetrailingSlash: 'ignore'
Astro configuration option (the default) as many common hosting providers redirect to URLs with a trailing slash by default.
0.19.0
Minor Changes
-
#128
047cc90
Thanks @HiDeoo! - Exposes the cover image and Astro content collection entry of blog posts in the blog data object accessible on Starlight pages.See the “Blog Data” guide for more information.
0.20.0
Minor Changes
-
#131
32d0fdd
Thanks @HiDeoo! - ⚠️ BREAKING CHANGE: The minimum supported version of Starlight is now version0.33.0
.Please use the
@astrojs/upgrade
command to upgrade your project:Terminal window npx @astrojs/upgrade
0.21.0
Minor Changes
-
#139
6ed1559
Thanks @HiDeoo! - Displays cover images for blog posts in pages that list blog posts such as the blog index page. -
#139
6ed1559
Thanks @HiDeoo! - Adds a newnavigation
option to the blog configuration to control the type of navigation links to the blog to display on a page.The current behavior (
header-end
) to add a link to the blog before the theme switcher in the header on large viewports and a link to the mobile menu sidebar for non-blog pages on smaller viewports remains unchanged. Two new behaviors are now available:header-start
— Adds a link to the blog after the site title or logo in the header on large viewports. On smaller viewports, a link to the blog is added to the mobile menu sidebar for non-blog pages.none
— Does not add any links to the blog and it is up to the user to add links to the blog wherever they want.
Patch Changes
-
#139
6ed1559
Thanks @HiDeoo! - Fixes an inconsistency in blog post ordering for posts with the same date.Blog posts are now consistently ordered by their
date
in descending order, and then by theirtitle
in ascending order if the dates are identical.
0.22.0
Minor Changes
-
#144
93a5d70
Thanks @HiDeoo! - Adds support for defining excerpts using excerpt delimiters in blog posts. Any content above an excerpt delimiter will be used as the excerpt of a blog post.To learn more about excerpts, check the new “Excerpts” guide.
0.23.0
Minor Changes
-
#147
23f3f67
Thanks @HiDeoo! - Uses Starlight’s built-in support for internationalization powered by i18next to render blog post creation and update dates.This change allows for more flexibility in formatting and translating these dates, including the ability to use different formats for different locales.
The
starlightBlog.post.date
string has been added to the list of UI strings provided by the plugin and the existingstarlightBlog.post.lastUpdate
string has been updated.
0.23.1
Patch Changes
- #150
27cb85c
Thanks @HiDeoo! - Fixes invalid labels for the prev/next links in the blog post list pages when using theprevNextLinksOrder
plugin option set tochronological
.
0.23.2
Patch Changes
0.24.0 Latest
Minor Changes
-
#162
bc995dc
Thanks @HiDeoo! - Exposes a list of all the authors in the blog data object accessible on Starlight pages usingAstro.locals.starlightBlog.authors
. This can be useful for example to create a widget that lists all the authors of your blog on your homepage.See the “Blog Data” guide for more information.
-
#160
f91a48c
Thanks @HiDeoo! - Adds support for remote cover images in blog posts. -
#155
e5746c1
Thanks @HiDeoo! - Adds support for metrics that can be displayed alongside blog posts, such as an estimated reading time or a word count.To learn more about metrics, check the new “Metrics” guide.