Skip to content

fix(deps): update dependency @astrojs/starlight to ^0.41.0 - #11

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/astrojs-starlight-0.x
Open

fix(deps): update dependency @astrojs/starlight to ^0.41.0#11
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/astrojs-starlight-0.x

Conversation

@renovate

@renovaterenovateBot commented Oct 6, 2023

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

PackageChangeAgeConfidence
@astrojs/starlight (source)^0.9.1^0.41.0ageconfidence

Release Notes

withastro/starlight (@​astrojs/starlight)

v0.41.10

Compare Source

Patch Changes

v0.41.9

Compare Source

Patch Changes

v0.41.8

Compare Source

Patch Changes

v0.41.7

Compare Source

Patch Changes
  • #​41143e486fb Thanks @​delucis! - Fixes processing of code examples in RTL languages when using Astro’s Sätteri Markdown processor

v0.41.6

Compare Source

Patch Changes

v0.41.5

Compare Source

Patch Changes

v0.41.4

Compare Source

Patch Changes

v0.41.3

Compare Source

Patch Changes
  • #​39111686ecc Thanks @​timothyjordan! - Keeps keyboard focus inside the mobile menu while it is open, preventing focus moving to hidden interactive elements in page content.

v0.41.2

Compare Source

Patch Changes
  • #​400858a3520 Thanks @​FrancoKaddour! - Fixes the table of contents overflowing the right edge of the viewport when a custom --sl-content-width value exceeds available space

  • #​4015bdbfffc Thanks @​delucis! - Fixes an issue where aside icons were rendered incorrectly in projects where Astro’s MDX integration had optimization disabled

v0.41.1

Compare Source

Patch Changes

v0.41.0

Compare Source

Minor Changes
Upgrade Astro and dependencies

⚠️BREAKING CHANGE: Astro v6 is no longer supported. Make sure you update Astro and any other official integrations at the same time as updating Starlight:

npx @astrojs/upgrade

Community Starlight plugins and Astro integrations may also need to be manually updated to work with Astro v7. If you encounter any issues, please reach out to the plugin or integration author to see if it is a known issue or if an updated version is being worked on.

⚠️BREAKING CHANGE: This release drops official support for Chromium-based browsers prior to version 111 (released 07 March 2023) and Safari-based browsers prior to version 16.4 (released 27 March 2023). You can find a list of currently supported browsers and their versions using this browserslist query.

Patch Changes
  • #​3953a935d33 Thanks @​HiDeoo! - Fixes Starlight Markdown processing being potentially applied to files that should not be processed.

v0.40.0

Compare Source

Minor Changes
  • #​3923edf2e6b Thanks @​Princesseuh! - Adds support for Astro 6.4 and the new Sätteri Markdown processor.

    It is now possible to opt into using Astro's 6.4 Sätteri Markdown processor by installing the @astrojs/markdown-satteri package and configuring it in your astro.config.mjs file:

    // astro.config.mjsimport{defineConfig}from'astro/config';import{satteri}from'@astrojs/markdown-satteri';exportdefaultdefineConfig({markdown: {processor: satteri(),},});

    ⚠️BREAKING CHANGE: The minimum supported version of Astro is now v6.4.5.

    Please update Starlight and Astro together:

    npx @astrojs/upgrade

    Community Starlight plugins and Astro integrations may also need to be manually updated to work with Sätteri. If you encounter any issues, please reach out to the plugin or integration author to see if it is a known issue or if an updated version is being worked on.

Patch Changes

v0.39.3

Compare Source

Patch Changes

v0.39.2

Compare Source

Patch Changes

v0.39.1

Compare Source

Patch Changes
  • #​3885010eed1 Thanks @​ArmandPhilippot! - Fixes the version mentioned in an error message related to autogenerated sidebar groups support.

  • #​3887b3c6990 Thanks @​delucis! - Adds 13 new icons: clock, desktop, mobile-android, window, database, server, code-branch, notes, question, question-circle, analytics, padlock, and solidjs.

v0.39.0

Compare Source

Minor Changes
  • #​3618dcf6d09 Thanks @​HiDeoo! - ⚠️ BREAKING CHANGE: This release changes how autogenerated links work in Starlight’s sidebar configuration.

    If you have sidebar groups using the autogenerate key, you must now wrap that configuration in an items array:

    {
    label: 'My group',
    - autogenerate: { directory: 'some-dir' },+ items: [{ autogenerate: { directory: 'some-dir' } }],
    }

    This change unlocks the possibility to mix autogenerated links and other links in a single group, for example:

    {label: 'Mixed group',items: ['example-page',{autogenerate: {directory: 'examples'}},{label: 'More examples',link: 'https://example.com'},],}

    This release also updates the shape of autogenerated sidebar entries in route data. Autogenerated links and groups in Astro.locals.starlightRoute.sidebar now include an autogenerate object with the configured directory value:

    {type: 'link',label: 'Example',href: '/examples/example/',isCurrent: false,autogenerate: {directory: 'examples'}}
  • #​3618dcf6d09 Thanks @​HiDeoo! - ⚠️ BREAKING CHANGE: This release changes the default collapsed state of autogenerated sidebar subgroups.

    Autogenerated subgroups no longer inherit the collapsed value from their parent group. They are now expanded by default unless explicitly configured with autogenerate.collapsed.

    If your sidebar configuration relies on a collapsed parent group to also collapse its autogenerated subgroups, update your configuration to set autogenerate.collapsed to true:

    {
    label: 'Reference',
    collapsed: true,
    items: [
    - { autogenerate: { directory: 'reference' } },+ { autogenerate: { directory: 'reference', collapsed: true } },
    ],
    }
  • #​38454d755f5 Thanks @​delucis! - Adds a <link rel="alternate" hreflang="x-default" href="..."> tag pointing to the default locale in multilingual sites. The x-default alternate is used as a signal of which language to fall back to if no other is available. Learn more in Google’s SEO localization docs.

  • #​3862ec70630 Thanks @​itrew! - Makes spacing of items in nested lists more consistent

  • #​3872417a66c Thanks @​tats-u! - Enables the CSS property text-autospace in Chinese and Japanese documents.

    If you would prefer to disable autospacing in Chinese and Japanese pages, you can add the following custom CSS to your site:

    [lang]:where(:lang(zh,ja)) {
    text-autospace: initial;
    }
  • #​37979764ebd Thanks @​delucis! - Avoids the risk of layout shift when users expand and collapse sidebar groups

    This release can introduce additional padding to the site sidebar on certain devices to reserve space for scrollbars. You may wish to inspect your site sidebar visually when upgrading.

    If you would prefer to keep the previous styling, you can add the following custom CSS to your site:

    .sidebar-pane {
    scrollbar-gutter: auto;
    }
  • #​38586672c35 Thanks @​delucis! - Updates i18next, used for Starlight’s localization APIs, from v23 to v26

    There should not be any user-facing changes from this update

v0.38.5

Compare Source

Patch Changes

v0.38.4

Compare Source

Patch Changes

v0.38.3

Compare Source

Patch Changes

v0.38.2

Compare Source

Patch Changes
  • #​3759f24ce99 Thanks @​MilesChou! - Fixes an issue where monolingual sites using a region-specific locale (e.g., zh-TW) as the default would incorrectly display base language translations (e.g., zh Simplified Chinese) instead of the region-specific ones (e.g., zh-TW Traditional Chinese).

  • #​3768a4c6c20 Thanks @​delucis! - Improves performance of sidebar generation for sites with very large sidebars

v0.38.1

Compare Source

Patch Changes

v0.38.0

Compare Source

Minor Changes
Upgrade Astro and dependencies

⚠️BREAKING CHANGE: Astro v5 is no longer supported. Make sure you update Astro and any other official integrations at the same time as updating Starlight:

npx @astrojs/upgrade

Community Starlight plugins and Astro integrations may also need to be manually updated to work with Astro v6. If you encounter any issues, please reach out to the plugin or integration author to see if it is a known issue or if an updated version is being worked on.

Update your collections

⚠️BREAKING CHANGE: Drops support for content collections backwards compatibility.

In Astro 5.x, projects could delay upgrading to the new Content Layer API introduced for content collections because of some existing automatic backwards compatibility that was not previously behind a flag. This meant that it was possible to upgrade from Astro 4 to Astro 5 without updating your content collections, even if you had not enabled the legacy.collections flag. Projects would continue to build, and no errors or warnings would be displayed.

Astro v6.0 now removes this automatic legacy content collections support, along with the legacy.collections flag.

If you experience content collections errors after updating to v6, check your project for any removed legacy features that may need updating to the Content Layer API. See the Starlight v0.30.0 upgrade guide for detailed instructions on upgrading legacy collections to the new Content Layer API.

If you are unable to make any changes to your collections at this time, including Starlight's default docs and i18n collections, you can enable the legacy.collectionsBackwardsCompat flag to upgrade to v6 without updating your collections. This temporary flag preserves some legacy v4 content collections features, and will allow you to keep your collections in their current state until the legacy flag is no longer supported.

  • #​3704375edcc Thanks @​florian-lefebvre! - Fixes autocomplete for components exported from @astrojs/starlight/components/*

    ⚠️ Potentially breaking change: This change moves some files used in Starlight’s component internals out of the components/ directory. Direct use of these files was not and is not officially supported. If you previously imported TableOfContents/starlight-toc.ts, TableOfContents/TableOfContentsList.astro, Icons.ts, or SidebarPersistState.ts, please review your code when updating.

  • #​37293642625 Thanks @​delucis! - Improves Starlight’s default body font stack to better support languages such as Chinese, Japanese, and Korean on Windows.
    For most users there should be no visible change.

    If you would prefer to keep the previous font stack, you can add the following custom CSS to your site:

    :root {
    --sl-font-system: ui-sans-serif, system-ui,'Segoe UI', Roboto,'Helvetica Neue', Arial,'Noto Sans', sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol','Noto Color Emoji';
    }
  • #​3598fff38d5 Thanks @​HiDeoo! - Makes hover styles consistent in Starlight’s navigation bar

    Previously, the social icon links and language/theme switchers in Starlight’s navigation bar, dimmed on hover.
    After this change, they now increase in contrast on hover instead.
    This matches hover behavior elsewhere, for example in the sidebar, table of contents, or search button.

    ⚠️Potentially breaking change: this is a subtle change to the hover style colors.
    If you want to preserve the previous styling, you can add the following custom CSS to your site:

    starlight-theme-selectlabel,starlight-lang-selectlabel {
    color:var(--sl-color-gray-1);
    &:hover {
    color:var(--sl-color-white);
    }
    }
    .social-iconsa:hover {
    color:var(--sl-color-text-accent);
    opacity:0.66;
    }

v0.37.7

Compare Source

Patch Changes
  • #​37268a09b60 Thanks @​delucis! - Fixes an issue using components containing scripts inside Starlight’s steps component in versions of Astro >= 5.16.9

v0.37.6

Compare Source

Patch Changes

v0.37.5

Compare Source

Patch Changes

v0.37.4

Compare Source

Patch Changes
  • #​3534703fab0 Thanks @​HiDeoo! - Fixes support for running builds when npx is unavailable.

    Previously, Starlight would spawn a process to run the Pagefind search indexing binary using npx. On platforms where npx isn’t available, this could cause issues. Starlight now runs Pagefind using its Node.js API to avoid a separate process. As a side effect, you may notice that logging during builds is now less verbose.

  • #​3656a0e6368 Thanks @​delucis! - Fixes several edge cases in highlighting the current page heading in Starlight’s table of contents

  • #​366300cbf00 Thanks @​lines-of-codes! - Adds Thai language support

  • #​3658ac79329 Thanks @​delucis! - Avoids adding redundant aria-current="false" attributes to sidebar entries

  • #​3382db295c2 Thanks @​trueberryless! - Fixes an issue where the mobile table of contents is unable to find the first heading when a page has a tall banner.

v0.37.3

Compare Source

Patch Changes

v0.37.2

Compare Source

Patch Changes

v0.37.1

Compare Source

Patch Changes

v0.37.0

Compare Source

Minor Changes
  • #​349128810f0 Thanks @​JusticeMatthew! - Changes text overflow styling in Markdown content

    ⚠️Potentially breaking change: This release switches the overflow-wrap CSS style for common elements to break-word. In most cases, there should be little visual impact, but this change can impact how layouts with implicit sizing (such as tables) look, improving legibility in how words wrap.

    If you want to preserve the previous styling, you can add the following custom CSS to your site:

    p,h1,h2,h3,h4,h5,h6,code {
    overflow-wrap: anywhere;
    }
  • #​3351239698c Thanks @​HiDeoo! - Ensures that Starlight CSS layer order is predictable in custom pages using the <StarlightPage> component.

    Previously, due to how import order works in Astro, the <StarlightPage> component had to be the first import in custom pages to set up cascade layers used internally by Starlight to manage the order of its styles.

    With this change, this restriction no longer applies and Starlight’s styles will be applied correctly regardless of the import order of the <StarlightPage> component.

  • #​3521ca7b771 Thanks @​shubham-padia! - Fixes an issue where a vertical scrollbar could be displayed on the Starlight <Tabs> component when zooming the page

    ⚠️Potentially breaking change: The <Tabs> component no longer uses margin-bottom and border-bottom to highlight the current tab. This is now done with a box-shadow. If you have custom styling for your tabs, you may need to update it.

    If you want to preserve the previous styling, you can add the following custom CSS to your site:

    starlight-tabs .tab {
    margin-bottom:-2px;
    }
    starlight-tabs .tab> [role='tab'] {
    border-bottom:2px solid var(--sl-color-gray-5);
    box-shadow: none;
    }
    starlight-tabs .tab [role='tab'][aria-selected='true'] {
    border-color:var(--sl-color-text-accent);
    }
  • #​35491cf50eb Thanks @​jacobdalamb! - Updates the default sans-serif system font stack, dropping support for the -apple-system and BlinkMacSystemFont font names used in older browsers. These are no longer needed in browsers officially supported by Starlight.

    If you still need to support older browsers, you can add the following custom CSS to your site:

    :root {
    --sl-font-system: ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont,'Segoe UI', Roboto,'Helvetica Neue', Arial,'Noto Sans', sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol','Noto Color Emoji';
    }
  • #​3332f61f99d Thanks @​HiDeoo! - Adds a new markdown.processedDirs configuration option to specify additional directories where files should be processed by Starlight’s Markdown pipeline.

    By default, Starlight’s processing only applies to Markdown and MDX content loaded using Starlight’s docsLoader(). This new option allows to extend this processing to other directories, which can be useful if you are rendering content from a custom content collection using the <StarlightPage> component and expect Starlight’s Markdown processing to be applied to that content as well.

v0.36.3

Compare Source

Patch Changes
  • #​3555547dc30 Thanks @​Its-Just-Nans! - Improves the error message thrown when using a file in the public/ directory with Starlight’s customCss configuration option

  • #​3496b78fda4 Thanks @​delucis! - Fixes invalid <head> output when configuration is missing:

    • Omits <meta property="og:description" /> if Starlight’s description option is unset
    • Omits <link rel="canonical" /> and <meta property="og:url" /> if Astro’s site option is unset
  • #​35118727df1 Thanks @​astrobot-houston! - Updates the seti:gitlab icon to match latest version from Seti UI Icons

v0.36.2

Compare Source

Patch Changes

v0.36.1

Compare Source

Patch Changes

v0.36.0

Compare Source

Minor Changes
  • #​3427c3b2d0f Thanks @​delucis! - Fixes styling of labels that wrap across multiple lines in <Tabs> component

    ⚠️Potentially breaking change: Tab labels now have a narrower line-height and additional vertical padding. If you have custom CSS targetting the <Tabs> component, you may want to double check the visual appearance of your tabs when updating.

    If you want to preserve the previous styling, you can add the following custom CSS to your site:

    .tab> [role='tab'] {
    line-height:var(--sl-line-height);
    padding-block:0;
    }
  • #​33803364af3 Thanks @​HiDeoo! - Makes head entry parsing stricter in Starlight config and content frontmatter.

    ⚠️ Potentially breaking change: Previously Starlight would accept a head entry for a meta tag defining some content which generates invalid HTML as <meta> is a void element which cannot have any child nodes. Now, it is an error to define a meta tag including some content.

    If you see errors after updating, look for head entries in the Starlight configuration in the astro.config.mjs file or in the frontmatter of your content files that include a content property for a meta tag. To fix the error, move the content property to the attrs object with at least an additional attribute to identify the kind of metadata it represents:

    head: {
    tag: 'meta',
    - content: 'foo',
    attrs: {
    name: 'my-meta',
    + content: 'foo',
    },
    },
  • #​33402018c31 Thanks @​HiDeoo! - Adds missing vertical spacing between Markdown content and UI Framework components using client directives.

    ⚠️ Potentially breaking change: By default, Starlight applies some vertical spacing (--sl-content-gap-y) between Markdown content blocks. This change introduces similar spacing between Markdown content blocks and UI Framework components using client directives which was not present before.

    If you were relying on the previous behavior, you can manually override the spacing by manually specifying the top margin on the component using custom CSS, e.g. by relying on a CSS class to target the component.

    .my-custom-component {
    margin-top:0;
    }
Patch Changes

v0.35.3

Compare Source

Patch Changes

v0.35.2

Compare Source

Patch Changes
  • #​334110f6fe2 Thanks @​HiDeoo! - Prevents potential build issues with the Astro Cloudflare adapter due to the dependency on Node.js builtins.

  • #​3327bf58c60 Thanks @​delucis! - Fixes a routing bug for docs pages with a slug authored with non-normalized composition. This could occur for filenames containing diacritics in some circumstances, causing 404s.

v0.35.1

Compare Source

Patch Changes

v0.35.0

Compare Source

Minor Changes
  • #​2261778b743 Thanks @​shubham-padia! - Adds support for using any of Starlight’s built-in icons in asides.

  • #​3272e7fe267 Thanks @​delucis! - Adds a new generateId option to Starlight’s docsLoader()

    This enables overriding the default sluggifier used to convert content filenames to URLs.

  • #​32763917b20 Thanks @​delucis! - Excludes banner content from search results

    Previously, content set in banner in page frontmatter was indexed by Starlight’s default search provider Pagefind. This could cause unexpected search results, especially for sites setting a common banner content on multiple pages. Starlight’s default Banner component is now excluded from search indexing.

    This change does not impact Banner overrides using custom components.

  • #​32661161af0 Thanks @​HiDeoo! - Adds support for custom HTML attributes on autogenerated sidebar links using the autogenerate.attrs option.

  • #​327480ccff7 Thanks @​HiDeoo! - Fix

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • 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.

@cloudflare-workers-and-pages

cloudflare-workers-and-pagesBot commented Oct 6, 2023

Copy link
Copy Markdown

Deploying felicity with Cloudflare Pages Cloudflare Pages

Latest commit:adeeded
Status:🚫 Build failed.

View logs

@renovate
renovateBotforce-pushed the renovate/astrojs-starlight-0.x branch from 283bd6d to 1e2b155CompareNovember 2, 2023 00:59
@renovaterenovateBot changed the title fix(deps): update dependency @astrojs/starlight to ^0.11.0fix(deps): update dependency @astrojs/starlight to ^0.12.0Nov 2, 2023
@renovate
renovateBotforce-pushed the renovate/astrojs-starlight-0.x branch from 1e2b155 to ce22ff8CompareNovember 20, 2023 22:12
@renovaterenovateBot changed the title fix(deps): update dependency @astrojs/starlight to ^0.12.0fix(deps): update dependency @astrojs/starlight to ^0.13.0Nov 20, 2023
@renovaterenovateBot changed the title fix(deps): update dependency @astrojs/starlight to ^0.13.0fix(deps): update dependency @astrojs/starlight to ^0.14.0Nov 29, 2023
@renovate
renovateBotforce-pushed the renovate/astrojs-starlight-0.x branch from ce22ff8 to 6adbbcaCompareNovember 29, 2023 21:23
@renovate
renovateBotforce-pushed the renovate/astrojs-starlight-0.x branch from 6adbbca to af38f0dCompareDecember 6, 2023 21:30
@renovaterenovateBot changed the title fix(deps): update dependency @astrojs/starlight to ^0.14.0fix(deps): update dependency @astrojs/starlight to ^0.15.0Dec 6, 2023
@renovate
renovateBotforce-pushed the renovate/astrojs-starlight-0.x branch from af38f0d to 434bc48CompareJanuary 19, 2024 19:58
@renovaterenovateBot changed the title fix(deps): update dependency @astrojs/starlight to ^0.15.0fix(deps): update dependency @astrojs/starlight to ^0.16.0Jan 19, 2024
@renovaterenovateBot changed the title fix(deps): update dependency @astrojs/starlight to ^0.16.0fix(deps): update dependency @astrojs/starlight to ^0.17.0Jan 26, 2024
@renovate
renovateBotforce-pushed the renovate/astrojs-starlight-0.x branch from 434bc48 to 928b5e3CompareJanuary 26, 2024 22:53
@renovate
renovateBotforce-pushed the renovate/astrojs-starlight-0.x branch from 928b5e3 to c56839dCompareFebruary 9, 2024 21:40
@renovaterenovateBot changed the title fix(deps): update dependency @astrojs/starlight to ^0.17.0fix(deps): update dependency @astrojs/starlight to ^0.18.0Feb 9, 2024
@renovate
renovateBotforce-pushed the renovate/astrojs-starlight-0.x branch from c56839d to 99c172dCompareFebruary 17, 2024 01:26
@renovaterenovateBot changed the title fix(deps): update dependency @astrojs/starlight to ^0.18.0fix(deps): update dependency @astrojs/starlight to ^0.19.0Feb 17, 2024
@renovaterenovateBot changed the title fix(deps): update dependency @astrojs/starlight to ^0.19.0fix(deps): update dependency @astrojs/starlight to ^0.20.0Feb 24, 2024
@renovate
renovateBotforce-pushed the renovate/astrojs-starlight-0.x branch from 99c172d to 4683a82CompareFebruary 24, 2024 10:01
@renovate
renovateBotforce-pushed the renovate/astrojs-starlight-0.x branch from 4683a82 to af5f99dCompareMarch 2, 2024 14:17
@renovaterenovateBot changed the title fix(deps): update dependency @astrojs/starlight to ^0.20.0fix(deps): update dependency @astrojs/starlight to ^0.21.0Mar 2, 2024
@renovate
renovateBotforce-pushed the renovate/astrojs-starlight-0.x branch from af5f99d to 10028ddCompareApril 30, 2024 18:18
@renovaterenovateBot changed the title fix(deps): update dependency @astrojs/starlight to ^0.21.0fix(deps): update dependency @astrojs/starlight to ^0.22.0Apr 30, 2024
@renovate
renovateBotforce-pushed the renovate/astrojs-starlight-0.x branch from 10028dd to e2ae7caCompareMay 17, 2024 22:41
@renovaterenovateBot changed the title fix(deps): update dependency @astrojs/starlight to ^0.22.0fix(deps): update dependency @astrojs/starlight to ^0.23.0May 17, 2024
@renovate
renovateBotforce-pushed the renovate/astrojs-starlight-0.x branch from e2ae7ca to 02b962fCompareJune 5, 2024 18:22
@renovaterenovateBot changed the title fix(deps): update dependency @astrojs/starlight to ^0.23.0fix(deps): update dependency @astrojs/starlight to ^0.24.0Jun 5, 2024
@renovate
renovateBotforce-pushed the renovate/astrojs-starlight-0.x branch from 02b962f to 57beaa2CompareJuly 5, 2024 13:24
@renovaterenovateBot changed the title fix(deps): update dependency @astrojs/starlight to ^0.24.0fix(deps): update dependency @astrojs/starlight to ^0.25.0Jul 5, 2024
@renovate
renovateBotforce-pushed the renovate/astrojs-starlight-0.x branch from 57beaa2 to 3ec7277CompareAugust 16, 2024 20:04
@renovaterenovateBot changed the title fix(deps): update dependency @astrojs/starlight to ^0.31.0fix(deps): update dependency @astrojs/starlight to ^0.32.0Feb 15, 2025
@renovate
renovateBotforce-pushed the renovate/astrojs-starlight-0.x branch from ad29271 to f07698bCompareApril 7, 2025 18:39
@renovaterenovateBot changed the title fix(deps): update dependency @astrojs/starlight to ^0.32.0fix(deps): update dependency @astrojs/starlight to ^0.33.0Apr 7, 2025
@renovate
renovateBotforce-pushed the renovate/astrojs-starlight-0.x branch from f07698b to fd16d00CompareApril 16, 2025 13:06
@renovaterenovateBot changed the title fix(deps): update dependency @astrojs/starlight to ^0.33.0fix(deps): update dependency @astrojs/starlight to ^0.34.0Apr 16, 2025
@renovate
renovateBotforce-pushed the renovate/astrojs-starlight-0.x branch from fd16d00 to a14fa93CompareJuly 16, 2025 16:55
@renovaterenovateBot changed the title fix(deps): update dependency @astrojs/starlight to ^0.34.0fix(deps): update dependency @astrojs/starlight to ^0.35.0Jul 16, 2025
@renovate
renovateBotforce-pushed the renovate/astrojs-starlight-0.x branch from a14fa93 to 6d356c8CompareJuly 29, 2025 10:35
@renovate
renovateBotforce-pushed the renovate/astrojs-starlight-0.x branch from 6d356c8 to 7dc69fdCompareAugust 10, 2025 13:43
@renovate
renovateBotforce-pushed the renovate/astrojs-starlight-0.x branch from 7dc69fd to 3c3f186CompareAugust 19, 2025 17:58
@renovate
renovateBotforce-pushed the renovate/astrojs-starlight-0.x branch from 3c3f186 to 12ce819CompareAugust 31, 2025 09:57
@renovate
renovateBotforce-pushed the renovate/astrojs-starlight-0.x branch 2 times, most recently from 4b5db6f to 46a2e77CompareSeptember 19, 2025 17:36
@renovaterenovateBot changed the title fix(deps): update dependency @astrojs/starlight to ^0.35.0fix(deps): update dependency @astrojs/starlight to ^0.36.0Sep 19, 2025
@renovate
renovateBotforce-pushed the renovate/astrojs-starlight-0.x branch from 46a2e77 to e39719eCompareSeptember 25, 2025 21:38
@renovate
renovateBotforce-pushed the renovate/astrojs-starlight-0.x branch 2 times, most recently from 1209258 to b75635eCompareOctober 21, 2025 10:39
@renovate
renovateBotforce-pushed the renovate/astrojs-starlight-0.x branch from b75635e to e1c8122CompareOctober 31, 2025 20:15
@renovate
renovateBotforce-pushed the renovate/astrojs-starlight-0.x branch from e1c8122 to 8e3194fCompareNovember 10, 2025 16:54
@renovate
renovateBotforce-pushed the renovate/astrojs-starlight-0.x branch 2 times, most recently from 76002b0 to 15b214aCompareNovember 24, 2025 21:45
@renovate
renovateBotforce-pushed the renovate/astrojs-starlight-0.x branch from 15b214a to 02208ecCompareNovember 28, 2025 17:42
@renovaterenovateBot changed the title fix(deps): update dependency @astrojs/starlight to ^0.36.0fix(deps): update dependency @astrojs/starlight to ^0.37.0Nov 28, 2025
@renovate
renovateBotforce-pushed the renovate/astrojs-starlight-0.x branch 2 times, most recently from 7c8a683 to 5bd35caCompareDecember 9, 2025 19:45
@renovate
renovateBotforce-pushed the renovate/astrojs-starlight-0.x branch 2 times, most recently from 35021b8 to 10089f4CompareJanuary 6, 2026 18:36
@renovate
renovateBotforce-pushed the renovate/astrojs-starlight-0.x branch 2 times, most recently from 0fe1a39 to e99adbbCompareJanuary 15, 2026 14:47
Sign up for freeto 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