All versions since 0.17.2
0.17.2
Patch Changes
- #115
90da130Thanks @HiDeoo! - Improves build performance for large sites by adding a caching layer to blog entries and data.
0.17.3
Patch Changes
- #120
24172dbThanks @HiDeoo! - Fixes a potential build issue for blogs with more than 20 posts also generating an RSS feed.
0.18.0
Minor Changes
- #122
75dee60Thanks @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
047cc90Thanks @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
32d0fddThanks @HiDeoo! - ⚠️ BREAKING CHANGE: The minimum supported version of Starlight is now version0.33.0.Please use the
@astrojs/upgradecommand to upgrade your project:Terminal window npx @astrojs/upgrade
0.21.0
Minor Changes
-
#139
6ed1559Thanks @HiDeoo! - Displays cover images for blog posts in pages that list blog posts such as the blog index page. -
#139
6ed1559Thanks @HiDeoo! - Adds a newnavigationoption 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
6ed1559Thanks @HiDeoo! - Fixes an inconsistency in blog post ordering for posts with the same date.Blog posts are now consistently ordered by their
datein descending order, and then by theirtitlein ascending order if the dates are identical.
0.22.0
Minor Changes
-
#144
93a5d70Thanks @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
23f3f67Thanks @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.datestring has been added to the list of UI strings provided by the plugin and the existingstarlightBlog.post.lastUpdatestring has been updated.
0.23.1
Patch Changes
- #150
27cb85cThanks @HiDeoo! - Fixes invalid labels for the prev/next links in the blog post list pages when using theprevNextLinksOrderplugin option set tochronological.
0.23.2
Patch Changes
0.24.0
Minor Changes
-
#162
bc995dcThanks @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
f91a48cThanks @HiDeoo! - Adds support for remote cover images in blog posts. -
#155
e5746c1Thanks @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.
0.24.1
Patch Changes
- #169
0e3ede8Thanks @Hofer-Julian! - Removes anchor links for headings in RSS feed.
0.24.2
Patch Changes
-
#175
d624bf0Thanks @HiDeoo! - Fixes a potential issue where RSS content might be truncated in some cases. -
#175
d624bf0Thanks @HiDeoo! - Fixes a potential issue where metrics might not be calculated correctly in some cases.
0.24.3
Patch Changes
- #178
b2d4c4dThanks @HiDeoo! - Setups trusted publishing using OpenID Connect (OIDC) authentication — no code changes.
0.25.0
Minor Changes
- #181
5393110Thanks @HiDeoo! - Adds Astro’s built-in optimized asset support for local author profile pictures.
0.25.1
Patch Changes
0.25.2
Patch Changes
- #186
1bdbaa4Thanks @HiDeoo! - Fixes a potential issue where author and tag names containing special characters could be improperly escaped in some UI strings.
0.25.3
Patch Changes
- #194
d8721b8Thanks @HiDeoo! - Fixes a memory leak issue for blog posts with an excerpt due to a third-party dependency.
0.26.0 Latest
Minor Changes
-
#199
3c6cf12Thanks @HiDeoo! - Adds support for Astro v6, drops support for Astro v5.⚠️ BREAKING CHANGE: The minimum supported version of Starlight is now
0.38.0.Please follow the upgrade guide to update your project.
-
#201
a3cddb7Thanks @HiDeoo! - Adds a newrssconfiguration option to disable the automatic generation of an RSS feed for the blog when the Astrositeoption is set.