Skip to content

Releases: trueberryless-org/starlight-plugin-show-latest-version

starlight-plugin-show-latest-version@0.5.0

23 Feb 19:06
68f3c0b
Compare
Choose a tag to compare

0.5.0

Minor Changes

starlight-plugin-show-latest-version-docs@0.4.3

0.4.3

Patch Changes

  • Updated dependencies [9bdad60]:
    • starlight-plugin-show-latest-version@0.5.0

starlight-plugin-show-latest-version@0.4.0

21 Feb 08:41
82699f3
Compare
Choose a tag to compare

0.4.0

Minor Changes

  • #29 3656c8f Thanks @trueberryless! - ⚠️ BREAKING CHANGE: The minimum supported version of Starlight is now version 0.32.0.

    Please use the @astrojs/upgrade command to upgrade your project:

    npx @astrojs/upgrade

starlight-plugin-show-latest-version-docs@0.4.2

0.4.2

Patch Changes

  • #29 3656c8f Thanks @trueberryless! - Update documenation /components because the notes were too large

  • Updated dependencies [3656c8f]:

    • starlight-plugin-show-latest-version@0.4.0

starlight-plugin-show-latest-version@0.3.1

29 Jan 17:09
Compare
Choose a tag to compare

0.3.1

Patch Changes

  • #26 38e0418 Thanks @trueberryless! - Prevents the header title from being translated by automatic translation systems.

starlight-plugin-show-latest-version-docs@0.4.1

0.4.1

Patch Changes

  • #25 7a3372d Thanks @trueberryless! - Update documentation to new Astro 5.1.10 version (fix for Server Islands was released in 5.1.8; see #12982)

  • Updated dependencies [38e0418]:

    • starlight-plugin-show-latest-version@0.3.1

starlight-plugin-show-latest-version-docs@0.4.0

0.4.0

Thanks @HiDeoo for debuggin the issue here.

Minor Changes

Patch Changes

starlight-plugin-show-latest-version@0.3.0

01 Jan 13:57
e0ca7c4
Compare
Choose a tag to compare

0.3.0

Special thanks to @HiDeoo for their valuable feedback, which helped shape many of the improvements in this release.

Minor Changes

  • #16 3de9964 Thanks @trueberryless! - Use server:defer in the SiteTitle.astro override component if showInSiteTitle is set to "deferred".

    ⚠️ BREAKING CHANGE: You now have to use some server adapter if you set showInSiteTitle to "deferred".

    If you set the showInSiteTitle configuration option to "deferred", you have to add a server adapter because the plugin override now uses server:defer in order to fetch the latest version on-demand.

    Read more about Server Islands in this blog post or the Astro documentation.

  • #14 8b0c933 Thanks @trueberryless! - Add version support for NPM and GitLab.

    ⚠️ BREAKING CHANGE: The configuration interface changed.

    Please follow the steps below to use the plugin like before or read the documentation for the newly defined API.

    Change the removed repo configuration to the new source configuration object:

     // astro.config.ts
     starlightPluginShowLatestVersion({
    -  repo: "${slug}",
    +  source: {
    +    type: "github",
    +    slug: "${slug}",
    +  },
     }),

    Note that you can now use "npm", "github" or "gitlab" as the source type. This means that the plugin can be better customised to where you publish and release your packages.

Patch Changes

starlight-plugin-show-latest-version-docs@0.3.0

0.3.0

Minor Changes

Patch Changes

starlight-plugin-show-latest-version@0.2.0

22 Dec 14:39
5243196
Compare
Choose a tag to compare

0.2.0

Minor Changes

  • #12 c4c5257 Thanks @trueberryless! - 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.

Patch Changes

  • e29e231 Thanks @trueberryless! - Change Client JS to insert Raw HTML into div so it doesn't need rendering