Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update dependency @astrojs/starlight to v0.28.3 #66

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 28, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@astrojs/starlight (source) 0.23.1 -> 0.28.3 age adoption passing confidence

Release Notes

withastro/starlight (@​astrojs/starlight)

v0.28.3

Compare Source

Patch Changes

v0.28.2

Compare Source

Patch Changes
  • #​2377 a257b83 Thanks @​HiDeoo! - Fixes an issue with synced <Tabs> components containing nested <Tabs> causing tab panels to not render correctly.

v0.28.1

Compare Source

Patch Changes

v0.28.0

Compare Source

Minor Changes
  • #​1923 5269aad Thanks @​HiDeoo! - Overhauls the built-in localization system which is now powered by the i18next library and available to use anywhere in your documentation website.

    See the “Using UI translations” guide to learn more about how to access built-in UI labels or your own custom strings in your project. Plugin authors can also use the new injectTranslations() helper to add or update translation strings.

    ⚠️ BREAKING CHANGE: The Astro.props.labels props has been removed from the props passed down to custom component overrides.

    If you are relying on Astro.props.labels (for example to read a built-in UI label), you will need to update your code to use the new Astro.locals.t() helper instead.

v0.27.1

Compare Source

Patch Changes
  • #​2303 f92791a Thanks @​delucis! - Fixes resolution for the internal module Git virtual module in projects with special characters in the file path

v0.27.0

Compare Source

Minor Changes
  • #​1255 6f3202b Thanks @​Fryuni! - Adds support for server-rendered Starlight pages.

    When building a project with hybrid or server output mode, a new prerender option on Starlight config can be set to false to make all Starlight pages be rendered on-demand:

    export default defineConfig({
      output: 'server',
      integrations: [
        starlight({
          prerender: false,
        }),
      ],
    });
Patch Changes
  • #​2242 756e85e Thanks @​delucis! - Refactors the logic for persisting and restoring sidebar state across navigations for better performance on slow or busy devices

  • #​1255 6f3202b Thanks @​Fryuni! - Improves performance of computing the last updated times from Git history.

    Instead of executing git for each docs page, it is now executed twice regardless of the number of pages.

  • #​1255 6f3202b Thanks @​Fryuni! - Fixes last updated times on projects with custom srcDir

v0.26.4

Compare Source

Patch Changes
  • #​2288 b15f725 Thanks @​matthewp! - Safely handle Zod errors

    Prevents bugs where errors without the .received props would through and cause builds to fail unnecessarily.

v0.26.3

Compare Source

Patch Changes
  • #​2281 5062d30 Thanks @​HiDeoo! - Fixes a potential text rendering issue that could include extra whitespaces for text containing colons.

  • #​2279 62d59e2 Thanks @​HiDeoo! - Fixes an issue with frontmatter schemas containing collection references used with the <StarlightPage /> component and an Astro version greater than 4.14.0.

v0.26.2

Compare Source

Patch Changes

v0.26.1

Compare Source

Patch Changes
  • #​2219 74d4716 Thanks @​HiDeoo! - Fixes a sidebar persistence issue when navigating between pages with different sidebar content.

v0.26.0

Compare Source

Minor Changes
  • #​1784 68f56a7 Thanks @​HiDeoo! - Adds <LinkButton> component for visually distinct and emphasized call to action links

  • #​2150 9368494 Thanks @​delucis! - Adds state persistence across page navigations to the main site sidebar

  • #​2087 caa84ea Thanks @​HiDeoo! - Adds persistence to synced <Tabs> so that a user's choices are reflected across page navigations.

  • #​2051 ec3b579 Thanks @​HiDeoo! - Adds a guideline to the last step of the <Steps> component.

    If you want to preserve the previous behaviour and hide the guideline on final steps, you can add the following custom CSS to your site:

    /* Hide the guideline for the final step in <Steps> lists. */
    .sl-steps > li:last-of-type::after {
      background: transparent;
    }
  • #​1784 68f56a7 Thanks @​HiDeoo! - Changes the hero component action button default variant from minimal to primary.

    ⚠️ BREAKING CHANGE: If you want to preserve the previous appearance, hero component action buttons previously declared without a variant will need to be updated to include the variant property with the value minimal.

    hero:
      actions:
        - text: View on GitHub
          link: https://github.com/astronaut/my-project
          icon: external
    +     variant: minimal
  • #​2168 e044fee Thanks @​HiDeoo! - ⚠️ BREAKING CHANGE: Updates the <StarlightPage /> component sidebar prop to accept an array of SidebarItems like the main Starlight sidebar configuration in astro.config.mjs.

    This change simplifies the definition of sidebar items in the <StarlightPage /> component, allows for shared sidebar configuration between the global sidebar option and <StarlightPage /> component, and also enables the usage of autogenerated sidebar groups with the <StarlightPage /> component.
    If you are using the <StarlightPage /> component with a custom sidebar configuration, you will need to update the sidebar prop to an array of SidebarItem objects.

    For example, the following custom page with a custom sidebar configuration defines a “Resources” group with a “New” badge, a link to the “Showcase” page which is part of the docs content collection, and a link to the Starlight website:

v0.25.5

Compare Source

Patch Changes

v0.25.4

Compare Source

Patch Changes
  • #​2155 8bed886 Thanks @​delucis! - Improves page load performance on slower devices

  • #​2167 9ac7725 Thanks @​delucis! - Fixes an issue detecting the built-in locale when running Starlight in a web container environment on Firefox

  • #​2166 4f12049 Thanks @​delucis! - Updates @astrojs/mdx, @astrojs/sitemap, astro-expressive-code, unified, and vfile dependencies to the latest version

v0.25.3

Compare Source

Patch Changes

v0.25.2

Compare Source

Patch Changes

v0.25.1

Compare Source

Patch Changes
  • #​2122 359a642 Thanks @​HiDeoo! - Fixes an i18n configuration issue for multilingual sites when using Astro’s i18n config with prefixDefaultLocale set to false.

  • #​2107 61e223b Thanks @​sanabel-al-firdaws! - Updates Arabic UI translations

  • #​2105 81f8a2c Thanks @​delucis! - Fixes an edge case in custom pagination link processing

    Custom link values for prev/next in page frontmatter are now always used as authored.
    Previously this was not the case in some edge cases such as for the first and final pages in the sidebar.

  • #​2119 464685a Thanks @​evadecker! - Improves styling of <hr>, <blockquote>, and <code> within asides

v0.25.0

Compare Source

Minor Changes
  • #​2025 47f32c1 Thanks @​HiDeoo! - Removes the / search shortcut for accessibility reasons.

    ⚠️ Potentially breaking change: The search.shortcutLabel UI string has been removed. If you were using this string in your custom UI, you will need to update your code.

  • #​2064 c5b47cb Thanks @​SnowDingo! - Improves styling of Markdown tables to work better in different contexts, including against different background colours like when used in asides.

  • #​2031 2bab648 Thanks @​delucis! - Makes sidebar entry parsing stricter in Starlight config

    ⚠️ Potentially breaking change: Previously Starlight would accept a sidebar entry that matched one of its expected shapes, even if it included additional properties. For example, including both link and items was considered valid, with items being ignored. Now, it is an error to include more than one of link, items, or autogenerate in a sidebar entry.

    If you see errors after updating, look for sidebar entries in the Starlight configuration in astro.config.mjs that include too many keys and remove the one that was previously ignored.

  • #​1874 eeba06e Thanks @​lorenzolewis! - Adds a new syntax for specifying sidebar link items for internal links

    You can now specify an internal page using only its slug, either as a string, or as an object with a slug property:

    starlight({
      title: 'Docs with easier sidebars',
      sidebar: ['getting-started', { slug: 'guides/installation' }],
    });

    Starlight will use the linked page’s frontmatter to configure the sidebar link.

Patch Changes

v0.24.5

Compare Source

Patch Changes

v0.24.4

Compare Source

Patch Changes

v0.24.3

Compare Source

Patch Changes

v0.24.2

Compare Source

Patch Changes

v0.24.1

Compare Source

Patch Changes

v0.24.0

Compare Source

Minor Changes
  • #​1841 ee0cd38a Thanks @​HiDeoo! - Adds support for Astro.currentLocale and Astro’s i18n routing.

    ⚠️ Potentially breaking change: Starlight now configures Astro’s i18n option for you based on its locales config.

    If you are currently using Astro’s i18n option as well as Starlight’s locales option, you will need to remove one of these.
    In general we recommend using Starlight’s locales, but if you have a more advanced configuration you may choose to keep Astro’s i18n config instead.

  • #​1958 081d1a96 Thanks @​delucis! - Allows users to opt into displaying a “Built with Starlight” link in the site footer

  • #​1530 dd64836a Thanks @​kevinzunigacuellar! - Adds a new <Badge> component

v0.23.4

Compare Source

Patch Changes

v0.23.3

Compare Source

Patch Changes

v0.23.2

Compare Source

Patch Changes

Configuration

📅 Schedule: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from b7ccaea to 2d1a2fd Compare June 4, 2024 23:55
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.23.2 fix(deps): update dependency @astrojs/starlight to v0.23.3 Jun 4, 2024
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.23.3 fix(deps): update dependency @astrojs/starlight to v0.23.4 Jun 5, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch 2 times, most recently from f603136 to bcf223f Compare June 5, 2024 20:13
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.23.4 fix(deps): update dependency @astrojs/starlight to v0.24.0 Jun 5, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from bcf223f to 46b5109 Compare June 9, 2024 20:02
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.24.0 fix(deps): update dependency @astrojs/starlight to v0.24.1 Jun 9, 2024
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.24.1 fix(deps): update dependency @astrojs/starlight to v0.24.2 Jun 12, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch 2 times, most recently from 6c31559 to fc567a9 Compare June 19, 2024 00:52
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.24.2 fix(deps): update dependency @astrojs/starlight to v0.24.3 Jun 19, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from fc567a9 to c679b12 Compare June 20, 2024 18:53
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.24.3 fix(deps): update dependency @astrojs/starlight to v0.24.4 Jun 20, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from c679b12 to 49be7f9 Compare June 28, 2024 16:26
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.24.4 fix(deps): update dependency @astrojs/starlight to v0.24.5 Jun 28, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from 49be7f9 to 6537f70 Compare July 5, 2024 14:26
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.24.5 fix(deps): update dependency @astrojs/starlight to v0.25.0 Jul 5, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from 6537f70 to deb59e4 Compare July 10, 2024 19:14
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.25.0 fix(deps): update dependency @astrojs/starlight to v0.25.1 Jul 10, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from deb59e4 to 1eca901 Compare July 23, 2024 15:37
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.25.1 fix(deps): update dependency @astrojs/starlight to v0.25.2 Jul 23, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from 1eca901 to 4e49ddf Compare July 29, 2024 17:07
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.25.2 fix(deps): update dependency @astrojs/starlight to v0.25.3 Jul 29, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from 4e49ddf to f18bccf Compare August 6, 2024 10:05
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.25.3 fix(deps): update dependency @astrojs/starlight to v0.25.4 Aug 6, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from f18bccf to 59dc76e Compare August 13, 2024 10:27
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.25.4 fix(deps): update dependency @astrojs/starlight to v0.25.5 Aug 13, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from 59dc76e to c971202 Compare August 16, 2024 18:49
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.25.5 fix(deps): update dependency @astrojs/starlight to v0.26.1 Aug 16, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from c971202 to 348f654 Compare September 2, 2024 14:30
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.26.1 fix(deps): update dependency @astrojs/starlight to v0.26.2 Sep 2, 2024
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.26.2 fix(deps): update dependency @astrojs/starlight to v0.26.3 Sep 4, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch 2 times, most recently from 0730859 to df4fba1 Compare September 6, 2024 16:13
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.26.3 fix(deps): update dependency @astrojs/starlight to v0.26.4 Sep 6, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from df4fba1 to 5a6e9e2 Compare September 7, 2024 00:59
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.26.4 fix(deps): update dependency @astrojs/starlight to v0.27.0 Sep 7, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from 5a6e9e2 to 4b87286 Compare September 8, 2024 09:30
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.27.0 fix(deps): update dependency @astrojs/starlight to v0.27.1 Sep 8, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from 4b87286 to e3191a0 Compare September 18, 2024 09:16
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.27.1 fix(deps): update dependency @astrojs/starlight to v0.28.0 Sep 18, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from e3191a0 to e33361d Compare September 18, 2024 13:10
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.28.0 fix(deps): update dependency @astrojs/starlight to v0.28.1 Sep 18, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from e33361d to 9157bfb Compare September 19, 2024 23:04
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.28.1 fix(deps): update dependency @astrojs/starlight to v0.28.2 Sep 19, 2024
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from 9157bfb to 96c7755 Compare October 8, 2024 01:04
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to v0.28.2 fix(deps): update dependency @astrojs/starlight to v0.28.3 Oct 8, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants