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.15.0 - autoclosed #118

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 4, 2023

Mend Renovate

This PR contains the following updates:

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

Release Notes

withastro/starlight (@​astrojs/starlight)

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 @​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 '@​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

v0.13.1

Compare Source

Patch Changes

v0.13.0

Compare Source

Minor Changes
  • #​1023 a3b80f7 Thanks @​kevinzunigacuellar! - Respect the trailingSlash and build.format Astro options when creating Starlight navigation links.

    ⚠️ Potentially breaking change:
    This change will cause small changes in link formatting for most sites.
    These are unlikely to break anything, but if you care about link formatting, you may want to change some Astro settings.

    If you want to preserve Starlight’s previous behavior, set trailingSlash: 'always' in your astro.config.mjs:

    import { defineConfig } from 'astro/config';
    import starlight from '@​astrojs/starlight';
    
    export default defineConfig({
      trailingSlash: 'always',
      integrations: [
        starlight({
          // ...
        }),
      ],
    });
  • #​742 c6a4bcb Thanks @​hippotastic! - Adds Expressive Code as Starlight’s default code block renderer

    ⚠️ Potentially breaking change:
    This addition changes how Markdown code blocks are rendered. By default, Starlight will now use Expressive Code.
    If you were already customizing how code blocks are rendered and don't want to use the features provided by Expressive Code, you can preserve the previous behavior by setting the new config option expressiveCode to false.

    If you had previously added Expressive Code manually to your Starlight project, you can now remove the manual set-up in astro.config.mjs:

    • Move your configuration to Starlight’s new expressiveCode option.
    • Remove the astro-expressive-code integration.

    For example:

    import starlight from '@​astrojs/starlight';
    import { defineConfig } from 'astro/config';
    - import expressiveCode from 'astro-expressive-code';
    
    export default defineConfig({
      integrations: [
    -   expressiveCode({
    -     themes: ['rose-pine'],
    -   }),
        starlight({
          title: 'My docs',
    +     expressiveCode: {
    +       themes: ['rose-pine'],
    +     },
        }),
      ],
    });

    Note that the built-in Starlight version of Expressive Code sets some opinionated defaults that are different from the astro-expressive-code defaults. You may need to set some styleOverrides if you wish to keep styles exactly the same.

  • #​517 5b549cb Thanks @​liruifengv! - Add i18n support for default aside labels

Patch Changes

v0.12.1

Compare Source

Patch Changes

v0.12.0

Compare Source

Minor Changes
  • #​995 5bf4457 Thanks @​kevinzunigacuellar! - Adds support for adding sidebar badges to group headings

  • #​988 977fe13 Thanks @​magicDGS! - Include social icon links in mobile menu

  • #​280 72cca2d Thanks @​cbontems! - Support light & dark variants of the hero image.

    ⚠️ Potentially breaking change: The hero.image schema is now slightly stricter than previously.

    The hero.image.html property can no longer be used alongside the hero.image.alt or hero.image.file properties.
    Previously, html was ignored when used with file and alt was ignored when used with html.
    Now, those combinations will throw errors.
    If you encounter errors, remove the image.hero property that is not in use.

Patch Changes

v0.11.2

Compare Source

Patch Changes

v0.11.1

Compare Source

Patch Changes

v0.11.0

Compare Source

Minor Changes
  • #​774 903a579 Thanks @​HiDeoo! - Support adding HTML attributes to sidebar links from config and frontmatter

  • #​796 372ec96 Thanks @​HiDeoo! - Add the @astrojs/sitemap and @astrojs/mdx integrations only if they are not detected in the Astro configuration.

    ⚠️ BREAKING CHANGE The minimum supported version of Astro is now v3.2.0. Make sure you update Astro at the same time as updating Starlight:

    npm install astro@latest
  • #​447 b45719b Thanks @​andremralves! - Add titleDelimiter configuration option and include site title in page <title> tags

    ⚠️ BREAKING CHANGE — Previously, every page’s <title> only included its individual frontmatter title.
    Now, <title> tags include the page title, a delimiter character (| by default), and the site title.
    For example, in the Startlight docs, <title>Configuration Reference</title> is now <title>Configuration Reference | Starlight</title>.

    If you have a page where you need to override this new behaviour, set a custom title using the head frontmatter property:


Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (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 has been generated by Mend Renovate. View repository job log here.

@netlify
Copy link

netlify bot commented Sep 4, 2023

Deploy Preview for capgo failed.

Name Link
🔨 Latest commit a4c2487
🔍 Latest deploy log https://app.netlify.com/sites/capgo/deploys/6570f3aa5a4b150008b7f7fe

@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to ^0.9.0 fix(deps): update dependency @astrojs/starlight to ^0.10.0 Sep 14, 2023
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch 4 times, most recently from 165d69b to 039045e Compare September 20, 2023 01:23
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to ^0.10.0 fix(deps): update dependency @astrojs/starlight to ^0.10.0 - autoclosed Oct 2, 2023
@renovate renovate bot closed this Oct 2, 2023
@renovate renovate bot deleted the renovate/astrojs-starlight-0.x branch October 2, 2023 16:43
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to ^0.10.0 - autoclosed fix(deps): update dependency @astrojs/starlight to ^0.10.0 Oct 6, 2023
@renovate renovate bot reopened this Oct 6, 2023
@renovate renovate bot restored the renovate/astrojs-starlight-0.x branch October 6, 2023 19:56
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to ^0.10.0 fix(deps): update dependency @astrojs/starlight to ^0.11.0 Oct 6, 2023
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from 039045e to ae2d46e Compare October 6, 2023 23:20
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch 2 times, most recently from 0938b96 to 3e9b7fc Compare October 23, 2023 03:28
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from 3e9b7fc to 9c81788 Compare November 1, 2023 18:19
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to ^0.11.0 fix(deps): update dependency @astrojs/starlight to ^0.12.0 Nov 2, 2023
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch 2 times, most recently from 862beeb to ee7435d Compare November 6, 2023 03:20
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from ee7435d to 676355f Compare November 13, 2023 04:47
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from 676355f to a200d7f Compare November 20, 2023 04:58
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to ^0.12.0 fix(deps): update dependency @astrojs/starlight to ^0.13.0 Nov 20, 2023
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch 2 times, most recently from 3757cfa to ef749ea Compare November 27, 2023 03:41
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to ^0.13.0 fix(deps): update dependency @astrojs/starlight to ^0.14.0 Nov 29, 2023
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from ef749ea to d4714db Compare November 29, 2023 21:13
@renovate renovate bot force-pushed the renovate/astrojs-starlight-0.x branch from d4714db to a4c2487 Compare December 6, 2023 22:20
@renovate renovate bot changed the title fix(deps): update dependency @astrojs/starlight to ^0.14.0 fix(deps): update dependency @astrojs/starlight to ^0.15.0 Dec 6, 2023
Copy link

sonarqubecloud bot commented Dec 6, 2023

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
0.0% 0.0% Duplication

@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.0 - autoclosed Dec 9, 2023
@renovate renovate bot closed this Dec 9, 2023
@renovate renovate bot deleted the renovate/astrojs-starlight-0.x branch December 9, 2023 13:55
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