Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 3, 2025

This PR contains the following updates:

Package Type Update Change Age Confidence
lockFileMaintenance All locks refreshed
@alpinejs/collapse (source) dependencies patch ^3.15.1 -> ^3.15.2 age confidence
@astrojs/mdx (source) dependencies patch ^4.3.10 -> ^4.3.12 age confidence
@astrojs/node (source) dependencies patch ^9.5.0 -> ^9.5.1 age confidence
@astrojs/starlight (source) dependencies minor ^0.36.2 -> ^0.37.0 age confidence
@astrojs/ts-plugin (source) dependencies patch ^1.10.5 -> ^1.10.6 age confidence
@eslint/eslintrc devDependencies patch ^3.3.1 -> ^3.3.3 age confidence
@eslint/js (source) devDependencies patch ^9.38.0 -> ^9.39.1 age confidence
@playwright/test (source) devDependencies patch ^1.56.0 -> ^1.57.0 age confidence
@rollup/rollup-linux-arm64-gnu (source) optionalDependencies minor 4.52.4 -> 4.53.3 age confidence
@tailwindcss/vite (source) dependencies patch ^4.1.14 -> ^4.1.17 age confidence
@types/node (source) devDependencies patch ^24.9.2 -> ^24.10.1 age confidence
@typescript-eslint/eslint-plugin (source) devDependencies patch ^8.46.2 -> ^8.48.1 age confidence
@typescript-eslint/parser (source) devDependencies patch ^8.46.2 -> ^8.48.1 age confidence
alpinejs (source) dependencies patch ^3.15.1 -> ^3.15.2 age confidence
astro (source) dependencies patch ^5.15.6 -> ^5.16.4 age confidence
eslint (source) devDependencies patch ^9.38.0 -> ^9.39.1 age confidence
eslint-plugin-astro (source) devDependencies patch ^1.4.0 -> ^1.5.0 age confidence
globals devDependencies patch ^16.4.0 -> ^16.5.0 age confidence
lenis dependencies patch ^1.3.13 -> ^1.3.15 age confidence
lint-staged devDependencies patch ^16.2.4 -> ^16.2.7 age confidence
lucide-astro (source) dependencies minor ^0.545.0 -> ^0.556.0 age confidence
markdownlint-cli devDependencies minor ^0.45.0 -> ^0.46.0 age confidence
mermaid dependencies patch ^11.12.1 -> ^11.12.2 age confidence
nanostores dependencies patch ^1.0.1 -> ^1.1.0 age confidence
octokit dependencies patch ^5.0.4 -> ^5.0.5 age confidence
prettier (source) devDependencies patch ^3.6.2 -> ^3.7.4 age confidence
prettier-plugin-tailwindcss devDependencies patch ^0.7.1 -> ^0.7.2 age confidence
tailwindcss (source) dependencies patch ^4.1.16 -> ^4.1.17 age confidence
zod (source) dependencies patch ^4.1.12 -> ^4.1.13 age confidence

🔧 This Pull Request updates lock files to use the latest dependency versions.


Release Notes

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.

rollup/rollup (@​rollup/rollup-linux-arm64-gnu)

v4.53.3

Compare Source

2025-11-19

Bug Fixes
  • Fix an error where too many modules where flagged for having an unused external import (#​6182)
  • Fix an error where an assignment was wrongly tree-shaken when mutating it (#​6183)
Pull Requests

v4.53.2

Compare Source

2025-11-10

Bug Fixes
  • Do not throw when using invalid escape sequences in template literals (#​6177)
Pull Requests

v4.53.1

Compare Source

2025-11-07

Bug Fixes
Pull Requests

v4.53.0

Compare Source

2025-11-07

Features
  • Improve rendering performance by caching generated variable names (#​5947)
Pull Requests

v4.52.5

Compare Source

2025-10-18

Bug Fixes
  • Always produce valid UUIDs as debugIds in sourcemaps (#​6144)
Pull Requests
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v8.48.1

Compare Source

🩹 Fixes
  • eslint-plugin: [restrict-template-expressions] check base types in allow list (#​11764, #​11759)
  • eslint-plugin: honor ignored base types on generic classes (#​11767)
  • eslint-plugin: [consistent-type-exports] check value flag before resolving alias (#​11769)
❤️ Thank You

You can read about our versioning strategy and releases on our website.

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v8.48.1

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

withastro/astro (astro)

v5.16.4

Compare Source

Patch Changes
  • #​14940 2cf79c2 Thanks @​ematipico! - Fixes a bug where Astro didn't properly combine CSP resources from the csp configuration with those added using the runtime API (Astro.csp.insertDirective()) to form grammatically correct CSP headers

    Now Astro correctly deduplicate CSP resources. For example, if you have a global resource in the configuration file, and then you add a
    a new one using the runtime APIs.

dzeiocom/lucide-astro (lucide-astro)

v0.556.0

Compare Source

v0.555.0

Compare Source

v0.554.0

Compare Source

v0.553.0

Compare Source

v0.552.0

Compare Source

v0.548.0

Compare Source

v0.547.0

Compare Source

v0.546.0

Compare Source

igorshubovych/markdownlint-cli (markdownlint-cli)

v0.46.0

Compare Source

  • Replace glob dependency with tinyglobby (smaller and fewer dependencies)
  • Update markdownlint dependency to 0.39.0
    • Add MD060/table-column-style
    • Improve MD001/MD007/MD009/MD010/MD029/MD033/MD037/MD059
  • Update all dependencies via Dependabot
mermaid-js/mermaid (mermaid)

v11.12.2

Compare Source

Patch Changes
prettier/prettier (prettier)

v3.7.4

Compare Source

diff

LWC: Avoid quote around interpolations (#​18383 by @​kovsu)
<!-- Input -->
<div foo={bar}>   </div>

<!-- Prettier 3.7.3 (--embedded-language-formatting off) -->
<div foo="{bar}"></div>

<!-- Prettier 3.7.4 (--embedded-language-formatting off) -->
<div foo={bar}></div>
TypeScript: Fix comment inside union type gets duplicated (#​18393 by @​fisker)
// Input
type Foo = (/** comment */ a | b) | c;

// Prettier 3.7.3
type Foo = /** comment */ (/** comment */ a | b) | c;

// Prettier 3.7.4
type Foo = /** comment */ (a | b) | c;
TypeScript: Fix unstable comment print in union type comments (#​18395 by @​fisker)
// Input
type X = (A | B) & (
  // comment
  A | B
);

// Prettier 3.7.3 (first format)
type X = (A | B) &
  (// comment
  A | B);

// Prettier 3.7.3 (second format)
type X = (
  | A
  | B // comment
) &
  (A | B);

// Prettier 3.7.4
type X = (A | B) &
  // comment
  (A | B);
tailwindlabs/prettier-plugin-tailwindcss (prettier-plugin-tailwindcss)

v0.7.2

Compare Source

Fixed
  • Load compatible plugins sequentially to work around race conditions in Node.js (#​412)
  • Fix compatibility with prettier-plugin-svelte when using Prettier v3.7+ (#​418)

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 is behind base branch, 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 force-pushed the renovate/npm-dependencies branch 30 times, most recently from 80ab62c to 96e53ac Compare November 10, 2025 07:02
@renovate renovate bot force-pushed the renovate/npm-dependencies branch 19 times, most recently from 00d09f2 to ea9e203 Compare December 3, 2025 10:04
@renovate renovate bot force-pushed the renovate/npm-dependencies branch 8 times, most recently from 9f3ff04 to 9cf73ec Compare December 5, 2025 20:40
@renovate renovate bot force-pushed the renovate/npm-dependencies branch from 9cf73ec to 1928dc6 Compare December 8, 2025 08:00
@ronggur ronggur closed this Dec 8, 2025
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.

2 participants