Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Apr 4, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@astrojs/netlify (source) 6.2.2 -> 6.3.3 age adoption passing confidence dependencies minor
@astrojs/starlight (source) ^0.32.0 -> ^0.34.0 age adoption passing confidence dependencies minor
@astrojs/svelte (source) 7.0.5 -> 7.0.13 age adoption passing confidence dependencies patch
@eslint/js (source) 9.23.0 -> 9.26.0 age adoption passing confidence devDependencies minor
@​gravityci/cli ^0.0.9 -> ^0.1.0 age adoption passing confidence devDependencies minor
@playwright/test (source) 1.51.0 -> 1.52.0 age adoption passing confidence devDependencies minor
@sveltejs/package (source) 2.3.10 -> 2.3.11 age adoption passing confidence devDependencies patch
@types/node (source) 22.13.9 -> 22.15.18 age adoption passing confidence devDependencies minor
@vitest/coverage-v8 (source) 3.0.8 -> 3.1.3 age adoption passing confidence devDependencies minor
@vitest/ui (source) 3.0.8 -> 3.1.3 age adoption passing confidence devDependencies minor
astro (source) 5.4.2 -> 5.7.13 age adoption passing confidence dependencies minor
eslint (source) 9.21.0 -> 9.26.0 age adoption passing confidence devDependencies minor
eslint-config-prettier 10.1.0 -> 10.1.5 age adoption passing confidence devDependencies patch
eslint-plugin-svelte (source) 3.3.3 -> 3.7.0 age adoption passing confidence devDependencies minor
esrap 1.4.5 -> 1.4.6 age adoption passing confidence dependencies patch
execa 9.5.2 -> 9.5.3 age adoption passing confidence devDependencies patch
globals 16.0.0 -> 16.1.0 age adoption passing confidence devDependencies minor
happy-dom 17.3.0 -> 17.4.7 age adoption passing confidence devDependencies minor
node (source) 22.14.0 -> 22.15.1 age adoption passing confidence volta minor
pnpm (source) 10.7.0+sha512.6b865ad4b62a1d9842b61d674a393903b871d9244954f652b8842c2b553c72176b278f64c463e52d40fff8aba385c235c8c9ecf5cc7de4fd78b8bb6d49633ab6 -> 10.11.0 age adoption passing confidence packageManager minor
pnpm (source) 10.7.0 -> 10.11.0 age adoption passing confidence volta minor
prettier-plugin-svelte 3.3.3 -> 3.4.0 age adoption passing confidence devDependencies minor
publint (source) 0.3.8 -> 0.3.12 age adoption passing confidence devDependencies patch
sharp (source, changelog) ^0.33.0 -> ^0.34.0 age adoption passing confidence dependencies minor
svelte (source) 5.22.5 -> 5.30.1 age adoption passing confidence devDependencies minor
svelte (source) 5.22.5 -> 5.30.1 age adoption passing confidence dependencies minor
svelte-check 4.1.5 -> 4.2.1 age adoption passing confidence devDependencies minor
typescript (source) 5.8.2 -> 5.8.3 age adoption passing confidence devDependencies patch
typescript (source) 5.8.2 -> 5.8.3 age adoption passing confidence dependencies patch
typescript-eslint (source) 8.26.0 -> 8.32.1 age adoption passing confidence devDependencies minor
vitest (source) 3.0.9 -> 3.1.3 age adoption passing confidence devDependencies minor

Release Notes

withastro/astro (@​astrojs/netlify)

v6.3.3

Compare Source

Patch Changes

v6.3.2

Compare Source

Patch Changes

v6.3.1

Compare Source

Patch Changes

v6.3.0

Compare Source

Minor Changes
  • #​13527 2fd6a6b Thanks @​ascorbic! - The experimental session API introduced in Astro 5.1 is now stable and ready for production use.

    Sessions are used to store user state between requests for on-demand rendered pages. You can use them to store user data, such as authentication tokens, shopping cart contents, or any other data that needs to persist across requests:

v6.2.6

Compare Source

Patch Changes

v6.2.5

Compare Source

Patch Changes

v6.2.4

Compare Source

Patch Changes

v6.2.3

Compare Source

Patch Changes
withastro/starlight (@​astrojs/starlight)

v0.34.3

Compare Source

Patch Changes

v0.34.2

Compare Source

Patch Changes

v0.34.1

Compare Source

Patch Changes
  • #​3140 f6eb1d5 Thanks @​HiDeoo! - Fixes a text selection issue for heading with a clickable anchor link when using double or triple click to select text.

  • #​3148 dc8b6d5 Thanks @​HiDeoo! - Fixes a regression of the Starlight icon color when using the credits configuration option.

v0.34.0

Compare Source

Minor Changes
  • #​2322 f14eb0c Thanks @​HiDeoo! - Groups all of Starlight's CSS declarations into a single starlight cascade layer.

    This change allows for easier customization of Starlight's CSS as any custom unlayered CSS will override the default styles. If you are using cascade layers in your custom CSS, you can use the @layer CSS at-rule to define the order of precedence for different layers including the ones used by Starlight.

    We recommend checking your site’s appearance when upgrading to make sure there are no style regressions caused by this change.

  • #​3122 3a087d8 Thanks @​delucis! - Removes default attrs and content values from head entries parsed using Starlight’s schema.

    Previously when adding head metadata via frontmatter or user config, Starlight would automatically add values for attrs and content if not provided. Now, these properties are left undefined.

    This makes it simpler to add tags in route middleware for example as you no longer need to provide empty values for attrs and content:

    head.push({
      tag: 'style',
      content: 'div { color: red }'
    - attrs: {},
    });
    head.push({
      tag: 'link',
    - content: ''
      attrs: { rel: 'me', href: 'https://example.com' },
    });

    This is mostly an internal API but if you are overriding Starlight’s Head component or processing head entries in some way, you may wish to double check your handling of Astro.locals.starlightRoute.head is compatible with attrs and content potentially being undefined.

  • #​3033 8c19678 Thanks @​delucis! - Adds support for generating clickable anchor links for headings.

    By default, Starlight now renders an anchor link beside headings in Markdown and MDX content. A new <AnchorHeading> component is available to achieve the same thing in custom pages built using <StarlightPage>.

    If you want to disable this new Markdown processing set the markdown.headingLinks option in your Starlight config to false:

    starlight({
      title: 'My docs',
      markdown: {
        headingLinks: false,
      },
    }),

    ⚠️ BREAKING CHANGE: The minimum supported version of Astro is now v5.5.0.

    Please update Starlight and Astro together:

    npx @&#8203;astrojs/upgrade
  • #​2322 f14eb0c Thanks @​HiDeoo! - Removes Shiki css-variables theme fallback.

    ⚠️ BREAKING CHANGE:

    Previously, Starlight used to automatically provide a fallback theme for Shiki, the default syntax highlighter built into Astro if the configured Shiki theme was not github-dark.

    This fallback was only relevant when the default Starlight code block renderer, Expressive Code, was disabled and Shiki was used. Starlight no longer provides this fallback.

    If you were relying on this behavior, you now manually need to update your Astro configuration to use the Shiki css-variables theme to match the previous behavior.

    import { defineConfig } from 'astro/config';
    
    export default defineConfig({
    + markdown: {
    +   shikiConfig: {
    +     theme: 'css-variables',
    +   },
    + },
    });

    Additionally, you can use custom CSS to control the appearance of the code blocks. Here are the previously used CSS variables for the fallback theme:

    :root {
      --astro-code-foreground: var(--sl-color-white);
      --astro-code-background: var(--sl-color-gray-6);
      --astro-code-token-constant: var(--sl-color-blue-high);
      --astro-code-token-string: var(--sl-color-green-high);
      --astro-code-token-comment: var(--sl-color-gray-2);
      --astro-code-token-keyword: var(--sl-color-purple-high);
      --astro-code-token-parameter: var(--sl-color-red-high);
      --astro-code-token-function: var(--sl-color-red-high);
      --astro-code-token-string-expression: var(--sl-color-green-high);
      --astro-code-token-punctuation: var(--sl-color-gray-2);
      --astro-code-token-link: var(--sl-color-blue-high);
    }
Patch Changes
  • #​3118 77a1104 Thanks @​delucis! - Fixes passing imported SVGs to the frontmatter prop of the <StarlightPage> component in Astro ≥5.7.0

v0.33.2

Compare Source

Patch Changes

v0.33.1

Compare Source

Patch Changes
  • #​3088 1885049 Thanks @​HiDeoo! - Fixes a regression in Starlight version 0.33.0 that caused the description and links to language alternates for multilingual websites to be missing from the <head> of the page.

  • #​3065 463adf5 Thanks @​HiDeoo! - Updates the social configuration option TSDoc example to match the shape of the expected value.

v0.33.0

Compare Source

Minor Changes
  • #​3026 82deb84 Thanks @​HiDeoo! - Fixes a potential list styling issue if the last element of a list item is a <script> tag.

    ⚠️ BREAKING CHANGE:

    This release drops official support for Chromium-based browsers prior to version 105 (released 30 August 2022) and Firefox-based browsers prior to version 121 (released 19 December 2023). You can find a list of currently supported browsers and their versions using this browserslist query.

    With this release, Starlight-generated sites will still work fine on those older browsers except for this small detail in list item styling, but future releases may introduce further breaking changes for impacted browsers, including in patch releases.

  • #​3025 f87e9ac Thanks @​delucis! - Makes social configuration more flexible.

    ⚠️ BREAKING CHANGE: The social configuration option has changed syntax. You will need to update this in astro.config.mjs when upgrading.

    Previously, a limited set of platforms were supported using a shorthand syntax with labels built in to Starlight. While convenient, this approach was less flexible and required dedicated code for each social platform added.

    Now, you must specify the icon and label for each social link explicitly and you can use any of Starlight’s built-in icons for social links.

    The following example shows updating the old social syntax to the new:

    - social: {
    -   github: 'https://github.com/withastro/starlight',
    -   discord: 'https://astro.build/chat',
    - },
    + social: [
    +   { icon: 'github', label: 'GitHub', href: 'https://github.com/withastro/starlight' },
    +   { icon: 'discord', label: 'Discord', href: 'https://astro.build/chat' },
    + ],
  • #​2927 c46904c Thanks @​HiDeoo! - Adds the head route data property which contains an array of all tags to include in the <head> of the current page.

    Previously, the <Head> component was responsible for generating a list of tags to include in the <head> of the current page and rendering them.
    This data is now available as Astro.locals.starlightRoute.head instead and can be modified using route data middleware.
    The <Head> component now only renders the tags provided in Astro.locals.starlightRoute.head.

  • #​2924 6a56d1b Thanks @​HiDeoo! - ⚠️ BREAKING CHANGE: Ensures that the <Badge> and <Icon> components no longer render with a trailing space.

    In Astro, components that include styles render with a trailing space which can prevent some use cases from working as expected, e.g. when using such components inlined with text. This change ensures that the <Badge> and <Icon> components no longer render with a trailing space.

    If you were previously relying on that implementation detail, you may need to update your code to account for this change. For example, considering the following code:

    <Badge text="New" />
    Feature

    The rendered text would previously include a space between the badge and the text due to the trailing space automatically added by the component:

    New Feature
    

    Such code will now render the badge and text without a space:

    NewFeature
    

    To fix this, you can add a space between the badge and the text:

    - <Badge text="New" />Feature
    + <Badge text="New" /> Feature
  • #​2727 7c8fa30 Thanks @​techfg! - Updates mobile menu toggle styles to display a close icon while the menu is open

Patch Changes

v0.32.6

Compare Source

Patch Changes

v0.32.5

Compare Source

Patch Changes

v0.32.4

Compare Source

Patch Changes

v0.32.3

Compare Source

Patch Changes
withastro/astro (@​astrojs/svelte)

v7.0.13

Compare Source

Patch Changes

v7.0.12

Compare Source

Patch Changes

v7.0.11

Compare Source

Patch Changes

v7.0.10

Compare Source

Patch Changes

v7.0.9

Compare Source

Patch Changes

v7.0.8

Compare Source

Patch Changes

[v7.0.7](https://redirect.github.com/withastro/astro/blob/HEAD/packages/integration


Configuration

📅 Schedule: Branch creation - "before 7am on friday" (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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • 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 added the internal label Apr 4, 2025
@netlify
Copy link

netlify bot commented Apr 4, 2025

Deploy Preview for sheepdog ready!

Name Link
🔨 Latest commit df96ca1
🔍 Latest deploy log https://app.netlify.com/projects/sheepdog/deploys/6827457943723a00077d4d1a
😎 Deploy Preview https://deploy-preview-308--sheepdog.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@pkg-pr-new
Copy link

pkg-pr-new bot commented Apr 4, 2025

npm i https://pkg.pr.new/@sheepdog/core@308
npm i https://pkg.pr.new/@sheepdog/svelte@308
npm i https://pkg.pr.new/@sheepdog/vanilla@308

commit: 300172f

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from c3e9f0e to ee1c1cc Compare April 10, 2025 23:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from 7296471 to 04b921c Compare April 17, 2025 15:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from f26202c to ea012c6 Compare April 24, 2025 23:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 12 times, most recently from 12287d9 to 7e0175e Compare May 10, 2025 17:17
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 2c9fd77 to 2e19bd3 Compare May 13, 2025 17:10
@renovate
Copy link
Contributor Author

renovate bot commented May 13, 2025

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: undefined
temporary-error

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 5e8dc96 to fb43770 Compare May 16, 2025 03:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from fb43770 to 771c962 Compare May 16, 2025 13:45
@paoloricciuti paoloricciuti merged commit f3aa7c4 into main May 16, 2025
12 checks passed
@paoloricciuti paoloricciuti deleted the renovate/all-minor-patch branch May 16, 2025 14:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants