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 ^0.21.3 - autoclosed #2268

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 7, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@astrojs/starlight (source) ^0.13.1 -> ^0.21.3 age adoption passing confidence

Release Notes

withastro/starlight (@​astrojs/starlight)

v0.21.3

Compare Source

Patch Changes

v0.21.2

Compare Source

Patch Changes

v0.21.1

Compare Source

Patch Changes

v0.21.0

Compare Source

Minor Changes

v0.20.1

Compare Source

Patch Changes

v0.20.0

Compare Source

Minor Changes
  • #​1541 1043052f Thanks @​hippotastic! - Updates astro-expressive-code dependency to the latest minor release (0.33).

    This unlocks support for word wrap and line numbers, as well as updating the syntax highlighter to the latest Shiki release, which includes new and updated language grammars.

    See the Expressive Code release notes for more information including details of potentially breaking changes.

Patch Changes

v0.19.1

Compare Source

Patch Changes

v0.19.0

Compare Source

Minor Changes

v0.18.1

Compare Source

Patch Changes

v0.18.0

Compare Source

Minor Changes

v0.17.4

Compare Source

Patch Changes

v0.17.3

Compare Source

Patch Changes

v0.17.2

Compare Source

Patch Changes

v0.17.1

Compare Source

Patch Changes

v0.17.0

Compare Source

Minor Changes

v0.16.0

Compare Source

Minor Changes
  • #​1383 490c6ef Thanks @​delucis! - Refactors Starlight’s internal virtual module system for components to avoid circular references

    This is a change to an internal API.
    If you were importing the internal virtual:starlight/components module, this no longer exists.
    Update your imports to use the individual virtual modules now available for each component, for example virtual:starlight/components/EditLink.

  • #​1151 134292d Thanks @​kevinzunigacuellar! - Fixes sidebar auto-generation issue when a file and a directory, located at the same level, have identical names.

    For example, src/content/docs/guides.md and src/content/docs/guides/example.md will now both be included and src/content/docs/guides.md is treated in the same way a src/content/docs/guides/index.md file would be.

  • #​1386 0163634 Thanks @​delucis! - Tightens line-height on <LinkCard> titles to fix regression from original design

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

    .sl-link-card a {
      line-height: 1.6;
    }
  • #​1376 8398432 Thanks @​delucis! - Tweaks vertical spacing in Markdown content styles.

    This is a subtle change to Starlight’s default content styling that should improve most sites:

    • Default vertical spacing between content items is reduced from 1.5rem to 1rem.
    • Spacing before headings is now relative to font size, meaning higher-level headings have slightly more spacing and lower-level headings slightly less.

    The overall impact is to tighten up content that belongs together and improve the visual hierarchy of headings to break up sections.

    Although this is a subtle change, we recommend visually inspecting your site in case this impacts layout of any custom CSS or components.

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

    /* Restore vertical spacing to match Starlight v0.15 and below. */
    .sl-markdown-content
      :not(a, strong, em, del, span, input, code)
      + :not(a, strong, em, del, span, input, code, :where(.not-content *)) {
      margin-top: 1.5rem;
    }
    .sl-markdown-content
      :not(h1, h2, h3, h4, h5, h6)
      + :is(h1, h2, h3, h4, h5, h6):not(:where(.not-content *)) {
      margin-top: 2.5rem;
    }
  • #​1372 773880d Thanks @​HiDeoo! - Updates the table of contents highlighting styles to prevent UI shifts when scrolling through a page.

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

    starlight-toc a[aria-current='true'],
    starlight-toc a[aria-current='true']:hover,
    starlight-toc a[aria-current='true']:focus {
      font-weight: 600;
      color: var(--sl-color-text-invert);
      background-color: var(--sl-color-text-accent);
    }

v0.15.4

Compare Source

Patch Changes

v0.15.3

Compare Source

Patch Changes

v0.15.2

Compare Source

Patch Changes

v0.15.1

Compare Source

Patch Changes

v0.15.0

Compare Source

Minor Changes
  • #​1238 02a808e Thanks @​delucis! - Add support for Astro v4, drop support for Astro v3

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

    Use the new @astrojs/upgrade command to upgrade Astro and Starlight together:

    npx @&#8203;astrojs/upgrade
  • #​1242 d8fc9e1 Thanks @​delucis! - Enables link prefetching on hover by default

    Astro v4’s prefetch support is now enabled by default. If prefetch is not set in astro.config.mjs, Starlight will use prefetch: { prefetchAll: true, defaultStrategy: 'hover' } by default.

    If you want to preserve previous behaviour, disable link prefetching in astro.config.mjs:

    import { defineConfig } from 'astro/config';
    import starlight from '@&#8203;astrojs/starlight';
    
    export default defineConfig({
      // Disable link prefetching:
      prefetch: false,
    
      integrations: [
        starlight({
          // ...
        }),
      ],
    });
Patch Changes

v0.14.0

Compare Source

Minor Changes
  • #​1144 7c0b8cb Thanks @​delucis! - Adds a configuration option to disable site indexing with Pagefind and the default search UI

  • #​942 efd7fdc Thanks @​HiDeoo! - Adds plugin API

    See the plugins reference to learn more about creating plugins for Starlight using this new API.

  • #​1135 e5a863a Thanks @​delucis! - Exposes localized UI strings in route data

    Component overrides can now access a labels object in their props which includes all the localized UI strings for the current page.

  • #​1162 00d101b Thanks @​delucis! - Adds support for extending Starlight’s content collection schemas


Configuration

📅 Schedule: 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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added the dependencies Pull requests that update a dependency label Dec 7, 2023
Copy link

netlify bot commented Dec 7, 2023

Deploy Preview for brilliant-pasca-3e80ec failed.

Name Link
🔨 Latest commit 2371a5b
🔍 Latest deploy log https://app.netlify.com/sites/brilliant-pasca-3e80ec/deploys/660aba68c93a1e0008d9c9b9

@github-actions github-actions bot added the pkg: documentation Changes in the documentation package. label Dec 7, 2023
@huijing huijing added the do not merge Do not merge PRs with these label label Dec 8, 2023
@renovate renovate bot force-pushed the renovate-astrojs-starlight-0.x branch from f72c95d to 5ecacde Compare December 11, 2023 09:19
@renovate renovate bot force-pushed the renovate-astrojs-starlight-0.x branch from 5ecacde to 42cff6d Compare December 18, 2023 19:19
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to ^0.15.0 fix(deps): update dependency @astrojs/starlight to ^0.15.1 Dec 18, 2023
@renovate renovate bot force-pushed the renovate-astrojs-starlight-0.x branch from 42cff6d to d451119 Compare January 2, 2024 21:17
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to ^0.15.1 fix(deps): update dependency @astrojs/starlight to ^0.15.2 Jan 2, 2024
@renovate renovate bot force-pushed the renovate-astrojs-starlight-0.x branch from d451119 to 3acc831 Compare January 9, 2024 22:57
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to ^0.15.2 fix(deps): update dependency @astrojs/starlight to ^0.15.3 Jan 9, 2024
@renovate renovate bot force-pushed the renovate-astrojs-starlight-0.x branch 2 times, most recently from 53daeab to 9938358 Compare January 17, 2024 22:02
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to ^0.15.3 fix(deps): update dependency @astrojs/starlight to ^0.15.4 Jan 17, 2024
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to ^0.15.4 fix(deps): update dependency @astrojs/starlight to ^0.16.0 Jan 19, 2024
@renovate renovate bot force-pushed the renovate-astrojs-starlight-0.x branch 3 times, most recently from fcf920d to e5c5eb5 Compare January 26, 2024 14:54
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to ^0.16.0 fix(deps): update dependency @astrojs/starlight to ^0.17.0 Jan 26, 2024
@renovate renovate bot force-pushed the renovate-astrojs-starlight-0.x branch 2 times, most recently from 33b6847 to 75be303 Compare January 30, 2024 00:20
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to ^0.17.0 fix(deps): update dependency @astrojs/starlight to ^0.17.1 Jan 30, 2024
@renovate renovate bot force-pushed the renovate-astrojs-starlight-0.x branch from 75be303 to 41f271e Compare January 31, 2024 12:19
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to ^0.17.1 fix(deps): update dependency @astrojs/starlight to ^0.17.2 Jan 31, 2024
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to ^0.17.2 fix(deps): update dependency @astrojs/starlight to ^0.17.3 Feb 6, 2024
@renovate renovate bot force-pushed the renovate-astrojs-starlight-0.x branch 2 times, most recently from f466d23 to 6d43b30 Compare February 8, 2024 18:25
@renovate renovate bot force-pushed the renovate-astrojs-starlight-0.x branch from 8398ef2 to 1c2420d Compare February 17, 2024 00:32
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to ^0.18.1 fix(deps): update dependency @astrojs/starlight to ^0.19.0 Feb 17, 2024
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to ^0.19.0 fix(deps): update dependency @astrojs/starlight to ^0.19.1 Feb 20, 2024
@renovate renovate bot force-pushed the renovate-astrojs-starlight-0.x branch 2 times, most recently from 334e5ac to bda5f46 Compare February 24, 2024 01:53
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to ^0.19.1 fix(deps): update dependency @astrojs/starlight to ^0.20.0 Feb 24, 2024
@renovate renovate bot force-pushed the renovate-astrojs-starlight-0.x branch from bda5f46 to b0d5941 Compare February 24, 2024 10:10
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to ^0.20.0 fix(deps): update dependency @astrojs/starlight to ^0.20.1 Feb 24, 2024
@renovate renovate bot force-pushed the renovate-astrojs-starlight-0.x branch 4 times, most recently from 8b6f1aa to 7af9e49 Compare March 1, 2024 18:14
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to ^0.20.1 fix(deps): update dependency @astrojs/starlight to ^0.21.0 Mar 1, 2024
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to ^0.21.0 fix(deps): update dependency @astrojs/starlight to ^0.21.1 Mar 4, 2024
@renovate renovate bot force-pushed the renovate-astrojs-starlight-0.x branch 5 times, most recently from db58961 to 5a6f292 Compare March 7, 2024 09:25
@renovate renovate bot force-pushed the renovate-astrojs-starlight-0.x branch 3 times, most recently from deefd12 to a8cce4f Compare March 20, 2024 10:50
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to ^0.21.1 fix(deps): update dependency @astrojs/starlight to ^0.21.2 Mar 20, 2024
@renovate renovate bot force-pushed the renovate-astrojs-starlight-0.x branch from a8cce4f to 8e7e240 Compare March 22, 2024 10:36
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to ^0.21.2 fix(deps): update dependency @astrojs/starlight to ^0.21.3 Apr 1, 2024
@renovate renovate bot force-pushed the renovate-astrojs-starlight-0.x branch from 8e7e240 to 2371a5b Compare April 1, 2024 13:45
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to ^0.21.3 fix(deps): update dependency @astrojs/starlight to ^0.21.3 - autoclosed Apr 3, 2024
@renovate renovate bot closed this Apr 3, 2024
@renovate renovate bot deleted the renovate-astrojs-starlight-0.x branch April 3, 2024 18:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency do not merge Do not merge PRs with these label pkg: documentation Changes in the documentation package.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant