Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Oct 24, 2025

This PR contains the following updates:

Package Change Age Confidence Type Update
@astrojs/check (source) 0.9.4 -> 0.9.6 age confidence dependencies patch
@astrojs/netlify (source) 6.5.13 -> 6.6.3 age confidence dependencies minor
@astrojs/starlight (source) ^0.36.0 -> ^0.37.0 age confidence dependencies minor
@astrojs/svelte (source) 7.2.0 -> 7.2.2 age confidence dependencies patch
@eslint/js (source) 9.37.0 -> 9.39.1 age confidence devDependencies minor
@playwright/test (source) 1.56.1 -> 1.57.0 age confidence devDependencies minor
@sveltejs/kit (source) 2.47.1 -> 2.49.0 age confidence devDependencies minor
@sveltejs/package (source) 2.5.4 -> 2.5.7 age confidence devDependencies patch
@testing-library/svelte 5.2.8 -> 5.2.9 age confidence devDependencies patch
@types/node (source) 22.18.11 -> 22.19.1 age confidence devDependencies minor
eslint (source) 9.37.0 -> 9.39.1 age confidence devDependencies minor
eslint-plugin-playwright 2.2.2 -> 2.3.0 age confidence devDependencies minor
eslint-plugin-svelte (source) 3.12.4 -> 3.13.0 age confidence devDependencies minor
esrap 2.1.0 -> 2.2.0 age confidence dependencies minor
globals 16.4.0 -> 16.5.0 age confidence devDependencies minor
happy-dom 20.0.4 -> 20.0.11 age confidence devDependencies patch
node (source) 24.10.0 -> 24.11.1 age confidence volta minor
pnpm (source) 10.18.3 -> 10.24.0 age confidence packageManager minor
pnpm (source) 10.18.3 -> 10.24.0 age confidence volta minor
prettier (source) 3.6.2 -> 3.7.2 age confidence devDependencies minor
publint (source) 0.3.14 -> 0.3.15 age confidence devDependencies patch
sharp (source, changelog) 0.34.4 -> 0.34.5 age confidence dependencies patch
svelte (source) 5.40.2 -> 5.45.2 age confidence devDependencies minor
svelte (source) 5.40.2 -> 5.45.2 age confidence dependencies minor
svelte-check 4.3.3 -> 4.3.4 age confidence devDependencies patch
typescript-eslint (source) 8.46.1 -> 8.48.0 age confidence devDependencies minor

Release Notes

withastro/astro (@​astrojs/check)

v0.9.6

Patch Changes

v0.9.5

Patch Changes
  • d415d4e: When no errors or warnings are detected, display "0 errors" or "0 warnings" in a dimmed color on the console instead of red or yellow.
withastro/astro (@​astrojs/netlify)

v6.6.3

Compare Source

Patch Changes

v6.6.2

Compare Source

Patch Changes

v6.6.1

Compare Source

Patch Changes

v6.6.0

Compare Source

Minor Changes
  • #​14543 9b3241d Thanks @​matthewp! - Enables Netlify's skew protection feature for Astro sites deployed on Netlify. Skew protection ensures that your site's client and server versions stay synchronized during deployments, preventing issues where users might load assets from a newer deployment while the server is still running the older version.

    When you deploy to Netlify, the deployment ID is now automatically included in both asset requests and API calls, allowing Netlify to serve the correct version to every user. These are set for built-in features (Actions, View Transitions, Server Islands, Prefetch). If you are making your own fetch requests to your site, you can include the header manually using the DEPLOY_ID environment variable:

    const response = await fetch('/api/endpoint', {
      headers: {
        'X-Netlify-Deploy-ID': import.meta.env.DEPLOY_ID,
      },
    });
Patch Changes
withastro/starlight (@​astrojs/starlight)

v0.37.0

Compare Source

Minor Changes
  • #​3491 28810f0 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;
    }
  • #​3351 239698c 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.

  • #​3521 ca7b771 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);
    }
  • #​3549 1cf50eb 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';
    }
  • #​3332 f61f99d 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
  • #​3555 547dc30 Thanks @​Its-Just-Nans! - Improves the error message thrown when using a file in the public/ directory with Starlight’s customCss configuration option

  • #​3496 b78fda4 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
  • #​3511 8727df1 Thanks @​astrobot-houston! - Updates the seti:gitlab icon to match latest version from Seti UI Icons

v0.36.2

Compare Source

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

v7.2.2

Compare Source

Patch Changes
  • #​14715 3d55c5d Thanks @​ascorbic! - Adds support for client hydration in getContainerRenderer()

    The getContainerRenderer() function is exported by Astro framework integrations to simplify the process of rendering framework components when using the experimental Container API inside a Vite or Vitest environment. This update adds the client hydration entrypoint to the returned object, enabling client-side interactivity for components rendered using this function. Previously this required users to manually call container.addClientRenderer() with the appropriate client renderer entrypoint.

    See the container-with-vitest demo for a usage example, and the Container API documentation for more information on using framework components with the experimental Container API.

v7.2.1

Compare Source

Patch Changes
eslint/eslint (@​eslint/js)

v9.39.1

Compare Source

v9.39.0

Compare Source

v9.38.0

Compare Source

Features
  • ce40f74 feat: update complexity rule to only highlight function header (#​20048) (Atul Nair)
  • e37e590 feat: correct no-loss-of-precision false positives with e notation (#​20187) (Francesco Trotta)
Bug Fixes
  • 50c3dfd fix: improve type support for isolated dependencies in pnpm (#​20201) (Francesco Trotta)
  • a1f06a3 fix: correct SourceCode typings (#​20114) (Pixel998)
Documentation
  • 462675a docs: improve web accessibility by hiding non-semantic character (#​20205) (루밀LuMir)
  • c070e65 docs: correct formatting in no-irregular-whitespace rule documentation (#​20203) (루밀LuMir)
  • b39e71a docs: Update README (GitHub Actions Bot)
  • cd39983 docs: move custom-formatters type descriptions to nodejs-api (#​20190) (Percy Ma)
Chores
microsoft/playwright (@​playwright/test)

v1.57.0

Compare Source

sveltejs/kit (@​sveltejs/kit)

v2.49.0

Compare Source

Minor Changes
  • feat: stream file uploads inside form remote functions allowing form data to be accessed before large files finish uploading (#​14775)

v2.48.8

Compare Source

Patch Changes
  • breaking: invalid now must be imported from @sveltejs/kit (#​14768)

  • breaking: remove submitter option from experimental form validate() method, always provide default submitter (#​14762)

v2.48.7

Compare Source

Patch Changes
  • fix: allow multiple server-timing headers (#​14700)

  • fix: allow access to root-level issues in schema-less forms (#​14893)

  • fix: allow hosting hash-based apps from non-index.html files (#​14825)

v2.48.6

Compare Source

Patch Changes
  • fix: clear issues upon passing validation (#​14683)

  • fix: don't use fork of unrelated route (#​14947)

  • fix: prevent type errors when optional @opentelemetry/api dependency isn't installed (#​14949)

  • fix: preserve this when invoking standard validator (#​14943)

  • fix: treat client/universal hooks as entrypoints for illegal server import detection (#​14876)

  • fix: correct query .set and .refresh behavior in commands (#​14877)

  • fix: improved the accuracy of the types of the output of field.as('...') (#​14908)

v2.48.5

Compare Source

Patch Changes
  • fix: wait an extra microtask in dev before calling $_init_$ (#​14799)

  • fix: discard preload fork before creating a new one (#​14865)

  • fix: delete RemoteFormAllIssue, add path to RemoteFormIssue (#​14864)

v2.48.4

Compare Source

Patch Changes
  • fix: adjust query's promise implementation to properly allow chaining (#​14859)

  • fix: make prerender cache work, including in development (#​14860)

v2.48.3

Compare Source

Patch Changes
  • fix: include hash when using resolve with hash routing enabled (#​14786)

  • fix: afterNavigate callback not running after hydration when experimental async is enabled (#​14644)
    fix: Snapshot restore method not called after reload when experimental async is enabled

  • fix: expose issue.path in .allIssues() (#​14784)

v2.48.2

Compare Source

Patch Changes
  • fix: update DOM before running navigate callbacks (#​14829)

v2.48.1

Compare Source

Patch Changes
  • fix: wait for commit promise instead of settled (#​14818)

v2.48.0

Compare Source

Minor Changes
  • feat: use experimental fork API when available (#​14793)
Patch Changes
  • fix: await for settled instead of tick in navigate (#​14800)

v2.47.3

Compare Source

Patch Changes
  • fix: avoid hanging when error() is used while streaming promises from a server load function (#​14722)

  • chore: treeshake load function code if we know it's unused (#​14764)

  • fix: RecursiveFormFields type for recursive or unknown schemas (#​14734)

  • fix: rework internal representation of form value to be $state (#​14771)

v2.47.2

Compare Source

Patch Changes
  • fix: streamed promise not resolving when another load function returns a fast resolving promise (#​14753)

  • chore: allow to run preflight validation only (#​14744)

  • fix: update overload to set invalid type to schema input (#​14748)

sveltejs/kit (@​sveltejs/package)

v2.5.7

Compare Source

Patch Changes
  • chore(deps): update dependency chokidar to v5 (#​14986)

v2.5.6

Compare Source

Patch Changes
  • fix: transform .ts extensions to .js in import/export statements of Svelte files when using rewriteRelativeImportExtensions (#​14936)

v2.5.5

Compare Source

Patch Changes
  • fix: resolve aliases before transpiling for rewriteRelativeImportExtensions (#​14673)
testing-library/svelte-testing-library (@​testing-library/svelte)

v5.2.9

Compare Source

Bug Fixes
eslint/eslint (eslint)

v9.39.1

Compare Source

v9.39.0

Compare Source

v9.38.0

Compare Source

Features

  • ce40f74 feat: update complexity rule to only highlight function header (#​20048) (Atul Nair)
  • e37e590 feat: correct no-loss-of-precision false positives with e notation (#​20187) (Francesco Trotta)

Bug Fixes

  • 50c3dfd fix: improve type support for isolated dependencies in pnpm (#​20201) (Francesco Trotta)
  • a1f06a3 fix: correct SourceCode typings (#​20114) (Pixel998)

Documentation

  • 462675a docs: improve web accessibility by hiding non-semantic character (#​20205) (루밀LuMir)
  • c070e65 docs: correct formatting in no-irregular-whitespace rule documentation (#​20203) (루밀LuMir)
  • b39e71a docs: Update README (GitHub Actions Bot)
  • cd39983 docs: move custom-formatters type descriptions to nodejs-api (#​20190) (Percy Ma)

Chores

playwright-community/eslint-plugin-playwright (eslint-plugin-playwright)

v2.3.0

Compare Source

Bug Fixes
Features
sveltejs/eslint-plugin-svelte (eslint-plugin-svelte)

v3.13.0

Compare Source

Minor Changes
Patch Changes

v3.12.5

Compare Source

Patch Changes
sveltejs/esrap (esrap)

v2.2.0

Compare Source

Minor Changes
  • da2f84d: feat: add getLeadingComments & getTrailingComments option for programmatic comment insertion

v2.1.3

Compare Source

Patch Changes
  • 9bf2740: fix: support export class with decorators

v2.1.2

Compare Source

Patch Changes
  • 53b485d: fix: support typescript class decorator

v2.1.1

Compare Source

Patch Changes
  • 9a7693e: fix: support more typescript nodes
sindresorhus/globals (globals)

v16.5.0

Compare Source


capricorn86/happy-dom (happy-dom)

v20.0.11

Compare Source

v20.0.10

Compare Source

v20.0.9

Compare Source

v20.0.8

Compare Source

👷‍♂️ Patch fixes
  • Fixes issue where previousSibling() and nextSibling() didn't work in HTMLSelectElement and HTMLFormElement - By @​capricorn86 in task #​1939
  • Fixes issue where parsing an item without a permitted parent (e.g. <tr>) should be valid inside a <template> element - By @​capricorn86 in task #​1939

v20.0.7

Compare Source

👷‍♂️ Patch fixes

v20.0.6

Compare Source

👷‍♂️ Patch fixes
  • Changes implementation for DOMTokenList.forEach(), Headers.forEach() and NodeList.forEach() to be spec compliant - By @​ikeyan in task #​1858

v20.0.5

Compare Source

👷‍♂️ Patch fixes

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 Oct 24, 2025
@netlify
Copy link

netlify bot commented Oct 24, 2025

Deploy Preview for sheepdog ready!

Name Link
🔨 Latest commit 6b26528
🔍 Latest deploy log https://app.netlify.com/projects/sheepdog/deploys/692a0e3621db46000813ca9e
😎 Deploy Preview https://deploy-preview-356--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 Oct 24, 2025

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

commit: 6b26528

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 16 times, most recently from 0f95d8e to e1044c5 Compare October 31, 2025 19:38
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 17b5ad4 to 306ba68 Compare November 6, 2025 19:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 37a9ab2 to 733c711 Compare November 11, 2025 03:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from d0258e8 to cf7666d Compare November 18, 2025 03:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from ebc952c to b40aa9c Compare November 25, 2025 21:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from 5b80850 to 3d03d2a Compare November 28, 2025 17:56
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Nov 28, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3d03d2a to 6b26528 Compare November 28, 2025 21:03
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.

1 participant