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

chore(deps): bump the npm-dependencies group across 1 directory with 17 updates #851

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 10, 2025

Bumps the npm-dependencies group with 17 updates in the / directory:

Package From To
@astrojs/partytown 2.1.3 2.1.4
@astrojs/starlight 0.30.6 0.32.2
@astrojs/tailwind 5.1.5 6.0.0
@expressive-code/plugin-collapsible-sections 0.38.3 0.40.2
astro 5.1.1 5.4.2
hast-util-select 6.0.3 6.0.4
hastscript 9.0.0 9.0.1
marked 15.0.6 15.0.7
remark-svgbob 1.1.1 2.0.0
starlight-links-validator 0.14.1 0.14.3
tailwindcss 3.4.17 4.0.12
tree-sitter 0.22.1 0.22.4
typescript 5.7.3 5.8.2
lint-staged 15.4.2 15.4.3
playwright 1.50.0 1.51.0
prettier 3.4.2 3.5.3
vitest 2.1.9 3.0.8

Updates @astrojs/partytown from 2.1.3 to 2.1.4

Release notes

Sourced from @​astrojs/partytown's releases.

@​astrojs/partytown@​2.1.4

Patch Changes

  • #13109 5c0e0ea Thanks @​arnottferels! - Adds support for config.lib, which allows changing the destination of the files:

    export default defineConfig({
    	integrations: [partytown({
    		config: {
    +			lib: '/assets/lib/~partytown/';
    		}
    	})]
    })
Changelog

Sourced from @​astrojs/partytown's changelog.

2.1.4

Patch Changes

  • #13109 5c0e0ea Thanks @​arnottferels! - Adds support for config.lib, which allows changing the destination of the files:

    export default defineConfig({
    	integrations: [partytown({
    		config: {
    +			lib: '/assets/lib/~partytown/';
    		}
    	})]
    })
Commits

Updates @astrojs/starlight from 0.30.6 to 0.32.2

Release notes

Sourced from @​astrojs/starlight's releases.

@​astrojs/starlight@​0.32.2

Patch Changes

@​astrojs/starlight@​0.32.1

Patch Changes

@​astrojs/starlight@​0.32.0

Minor Changes

  • #2390 f493361 Thanks @​delucis! - Moves route data to Astro.locals instead of passing it down via component props

    ⚠️ Breaking change: Previously, all of Starlight’s templating components, including user or plugin overrides, had access to a data object for the current route via Astro.props. This data is now available as Astro.locals.starlightRoute instead.

    To update, refactor any component overrides you have:

    • Remove imports of @astrojs/starlight/props, which is now deprecated.
    • Update code that accesses Astro.props to use Astro.locals.starlightRoute instead.
    • Remove any spreading of {...Astro.props} into child components, which is no longer required.

    In the following example, a custom override for Starlight’s LastUpdated component is updated for the new style:

    ---
    import Default from '@astrojs/starlight/components/LastUpdated.astro';
    - import type { Props } from '@astrojs/starlight/props';
    
    const { lastUpdated } = Astro.props;
    
    
    const { lastUpdated } = Astro.locals.starlightRoute;
    
    const updatedThisYear = lastUpdated?.getFullYear() === new Date().getFullYear();
    {updatedThisYear && (
    
    <Default {...Astro.props}><slot /></Default>
    
    
    <Default><slot /></Default>
    )}

Community Starlight plugins may also need to be manually updated to work with Starlight 0.32. If you encounter any issues, please reach out to the plugin author to see if it is a known issue or if an updated version is being worked on.

  • #2578 f895f75 Thanks @​HiDeoo! - Deprecates the Starlight plugin setup hook in favor of the new config:setup hook which provides the same functionality.

  • ... (truncated)

    Changelog

    Sourced from @​astrojs/starlight's changelog.

    0.32.2

    Patch Changes

    0.32.1

    Patch Changes

    0.32.0

    Minor Changes

    • #2390 f493361 Thanks @​delucis! - Moves route data to Astro.locals instead of passing it down via component props

      ⚠️ Breaking change: Previously, all of Starlight’s templating components, including user or plugin overrides, had access to a data object for the current route via Astro.props. This data is now available as Astro.locals.starlightRoute instead.

      To update, refactor any component overrides you have:

      • Remove imports of @astrojs/starlight/props, which is now deprecated.
      • Update code that accesses Astro.props to use Astro.locals.starlightRoute instead.
      • Remove any spreading of {...Astro.props} into child components, which is no longer required.

      In the following example, a custom override for Starlight’s LastUpdated component is updated for the new style:

      ---
      import Default from '@astrojs/starlight/components/LastUpdated.astro';
      - import type { Props } from '@astrojs/starlight/props';
      
      const { lastUpdated } = Astro.props;
      
      
      const { lastUpdated } = Astro.locals.starlightRoute;
      
      const updatedThisYear = lastUpdated?.getFullYear() === new Date().getFullYear();
      {updatedThisYear && (
      
      <Default {...Astro.props}><slot /></Default>
      
      
      <Default><slot /></Default>
      )}

    Community Starlight plugins may also need to be manually updated to work with Starlight 0.32. If you encounter any issues, please reach out to the plugin author to see if it is a known issue or if an updated version is being worked on.

    ... (truncated)

    Commits

    Updates @astrojs/tailwind from 5.1.5 to 6.0.0

    Release notes

    Sourced from @​astrojs/tailwind's releases.

    @​astrojs/tailwind@​6.0.0

    Major Changes

    • #13049 2ed4bd9 Thanks @​florian-lefebvre! - Deprecates the integration

      Tailwind CSS now offers a Vite plugin which is the preferred way to use Tailwind 4 in Astro. Please uninstall @astrojs/tailwind and follow the Tailwind documentation for manual installation.

      This updated major version is only provided as a convenience for existing projects until they are able to migrate to the new plugin. It offers no additional functionality and is no longer recommended, but may continue to be used in your projects until it is removed entirely.

    Changelog

    Sourced from @​astrojs/tailwind's changelog.

    6.0.0

    Major Changes

    • #13049 2ed4bd9 Thanks @​florian-lefebvre! - Deprecates the integration

      Tailwind CSS now offers a Vite plugin which is the preferred way to use Tailwind 4 in Astro. Please uninstall @astrojs/tailwind and follow the Tailwind documentation for manual installation.

      This updated major version is only provided as a convenience for existing projects until they are able to migrate to the new plugin. It offers no additional functionality and is no longer recommended, but may continue to be used in your projects until it is removed entirely.

    Commits

    Updates @expressive-code/plugin-collapsible-sections from 0.38.3 to 0.40.2

    Release notes

    Sourced from @​expressive-code/plugin-collapsible-sections's releases.

    @​expressive-code/plugin-collapsible-sections@​0.40.2

    Patch Changes

    • Updated dependencies [1734d73]
      • @​expressive-code/core@​0.40.2

    @​expressive-code/plugin-collapsible-sections@​0.40.1

    Patch Changes

    • Updated dependencies [ecf6ca1]
      • @​expressive-code/core@​0.40.1

    @​expressive-code/plugin-collapsible-sections@​0.40.0

    Minor Changes

    • 4eed5d0: Adds new collapseStyle prop to @expressive-code/plugin-collapsible-sections. Thank you @​nerdymomocat!

      The new prop allows selecting one of the following collapsible section styles:

      • github: The default style, similar to the one used by GitHub. A summary line with an expand icon and the default text X collapsed lines is shown. When expanded, the summary line is replaced by the section's code lines. It is not possible to re-collapse the section.
      • collapsible-start: When collapsed, the summary line looks like the github style. However, when expanded, it remains visible above the expanded code lines, making it possible to re-collapse the section.
      • collapsible-end: Same as collapsible-start, but the summary line remains visible below the expanded code lines.
      • collapsible-auto: Automatically selects collapsible-start or collapsible-end based on the location of the collapsible section in the code block. Uses collapsible-start unless the section ends at the bottom of the code block, in which case collapsible-end is used.

    Patch Changes

    • @​expressive-code/core@​0.40.0

    @​expressive-code/plugin-collapsible-sections@​0.39.0

    Patch Changes

    • @​expressive-code/core@​0.39.0
    Changelog

    Sourced from @​expressive-code/plugin-collapsible-sections's changelog.

    0.40.2

    Patch Changes

    • Updated dependencies [1734d73]
      • @​expressive-code/core@​0.40.2

    0.40.1

    Patch Changes

    • Updated dependencies [ecf6ca1]
      • @​expressive-code/core@​0.40.1

    0.40.0

    Minor Changes

    • 4eed5d0: Adds new collapseStyle prop to @expressive-code/plugin-collapsible-sections. Thank you @​nerdymomocat!

      The new prop allows selecting one of the following collapsible section styles:

      • github: The default style, similar to the one used by GitHub. A summary line with an expand icon and the default text X collapsed lines is shown. When expanded, the summary line is replaced by the section's code lines. It is not possible to re-collapse the section.
      • collapsible-start: When collapsed, the summary line looks like the github style. However, when expanded, it remains visible above the expanded code lines, making it possible to re-collapse the section.
      • collapsible-end: Same as collapsible-start, but the summary line remains visible below the expanded code lines.
      • collapsible-auto: Automatically selects collapsible-start or collapsible-end based on the location of the collapsible section in the code block. Uses collapsible-start unless the section ends at the bottom of the code block, in which case collapsible-end is used.

    Patch Changes

    • @​expressive-code/core@​0.40.0

    0.39.0

    Patch Changes

    • @​expressive-code/core@​0.39.0
    Commits

    Updates astro from 5.1.1 to 5.4.2

    Release notes

    Sourced from astro's releases.

    astro@5.4.2

    Patch Changes

    astro@5.4.1

    Patch Changes

    • #13336 8f632ef Thanks @​ematipico! - Fixes a regression where some asset utilities were move across monorepo, and not re-exported anymore.

    • #13320 b5dabe9 Thanks @{! - Adds support for typing experimental session data

      You can add optional types to your session data by creating a src/env.d.ts file in your project that extends the global App.SessionData interface. For example:

      declare namespace App {
        interface SessionData {
        id: string;
        email: string;
      };
      lastLogin: Date;
      
      }
      }

      Any keys not defined in this interface will be treated as any.

      Then when you access Astro.session in your components, any defined keys will be typed correctly:

      ---
      const user = await Astro.session.get('user');
      //    ^? const: user: { id: string; email: string; } | undefined
      const something = await Astro.session.get('something');
      //    ^? const: something: any
      Astro.session.set('user', 1);
      //    ^? Argument of type 'number' is not assignable to parameter of type '{ id: string; email: string; }'.

      See the experimental session docs for more information.

    • #13330 5e7646e Thanks @​ematipico! - Fixes an issue with the conditional rendering of scripts.

    ... (truncated)

    Changelog

    Sourced from astro's changelog.

    5.4.2

    Patch Changes

    5.4.1

    Patch Changes

    • #13336 8f632ef Thanks @​ematipico! - Fixes a regression where some asset utilities were move across monorepo, and not re-exported anymore.

    • #13320 b5dabe9 Thanks @{! - Adds support for typing experimental session data

      You can add optional types to your session data by creating a src/env.d.ts file in your project that extends the global App.SessionData interface. For example:

      declare namespace App {
        interface SessionData {
        id: string;
        email: string;
      };
      lastLogin: Date;
      
      }
      }

      Any keys not defined in this interface will be treated as any.

      Then when you access Astro.session in your components, any defined keys will be typed correctly:

      ---
      const user = await Astro.session.get('user');
      //    ^? const: user: { id: string; email: string; } | undefined
      const something = await Astro.session.get('something');
      //    ^? const: something: any
      Astro.session.set('user', 1);
      //    ^? Argument of type 'number' is not assignable to parameter of type '{ id: string; email: string; }'.

      See the experimental session docs for more information.

    ... (truncated)

    Commits

    Updates hast-util-select from 6.0.3 to 6.0.4

    Release notes

    Sourced from hast-util-select's releases.

    6.0.4

    • acd5eb0 Update property-information

    Full Changelog: syntax-tree/hast-util-select@6.0.3...6.0.4

    Commits

    Updates hastscript from 9.0.0 to 9.0.1

    Release notes

    Sourced from hastscript's releases.

    9.0.1

    • 91f71e3 Update property-information

    Full Changelog: syntax-tree/hastscript@9.0.0...9.0.1

    Commits

    Updates marked from 15.0.6 to 15.0.7

    Release notes

    Sourced from marked's releases.

    v15.0.7

    15.0.7 (2025-02-10)

    Bug Fixes

    Commits
    • bf4952f chore: fix pkg repository (#3613)
    • 2b99692 chore(release): 15.0.7 [skip ci]
    • 9ae87de fix: fix table rendered as heading (#3612)
    • a1113e0 chore: Update dingus.js import json (#3611)
    • eb61090 chore(deps-dev): Bump rollup from 4.32.0 to 4.34.1 (#3606)
    • 00576d2 chore(deps-dev): Bump @​markedjs/eslint-config from 1.0.9 to 1.0.10 (#3605)
    • 570450c chore(deps-dev): Bump eslint from 9.18.0 to 9.19.0 (#3600)
    • 5fccfb2 chore(deps-dev): Bump rollup from 4.31.0 to 4.32.0 (#3601)
    • b114f21 chore(deps-dev): Bump undici from 6.19.7 to 6.21.1 (#3596)
    • 29cf001 chore(deps-dev): Bump rollup from 4.30.1 to 4.31.0 (#3595)
    • Additional commits viewable in compare view

    Updates remark-svgbob from 1.1.1 to 2.0.0

    Updates starlight-links-validator from 0.14.1 to 0.14.3

    Release notes

    Sourced from starlight-links-validator's releases.

    starlight-links-validator@0.14.3

    Patch Changes

    • #91 1ef31b8 Thanks @​DaniFoldi! - Moves mdast-util-mdx-jsx package to non-dev dependencies to prevent issues in monorepos with hoisting disabled.

    starlight-links-validator@0.14.2

    Patch Changes

    Changelog

    Sourced from starlight-links-validator's changelog.

    0.14.3

    Patch Changes

    • #91 1ef31b8 Thanks @​DaniFoldi! - Moves mdast-util-mdx-jsx package to non-dev dependencies to prevent issues in monorepos with hoisting disabled.

    0.14.2

    Patch Changes

    Commits

    Updates tailwindcss from 3.4.17 to 4.0.12

    Release notes

    Sourced from tailwindcss's releases.

    v4.0.12

    Fixed

    • Vite: Fix url(…) rebasing in transitively imported CSS files (#16965)
    • PostCSS: Rebase url(…)s in imported CSS files (#16965)
    • Ensure utilities are sorted based on their actual property order (#16995)
    • Ensure strings in Pug and Slim templates are handled correctly (#17000)
    • Ensure classes between } and { are properly extracted (#17001)
    • Fix razor/cshtml pre-processing (#17027)
    • Ensure extracting candidates from JS embedded in a PHP string works as expected (#17031)

    v4.0.11

    Fixed

    • Ensure classes containing -- are extracted correctly (#16972)
    • Ensure classes containing numbers followed by dash or underscore are extracted correctly (#16980)
    • Ensure arbitrary container queries are extracted correctly (#16984)
    • Ensure classes ending in [ are extracted in Slim templating language (#16985)
    • Ensure arbitrary variables with data types are extracted correctly (#16986)

    v4.0.10

    Added

    • Add col-<number> and row-<number> utilities for grid-column and grid-row (#15183)

    Fixed

    • Ensure not-* does not remove :is(…) from variants (#16825)
    • Ensure @keyframes are correctly emitted when using a prefix (#16850)
    • Don't swallow @utility declarations when @apply is used in nested rules (#16940)
    • Ensure outline-hidden behaves like outline-none outside of forced colors mode (#16943)
    • Allow !important on CSS variables again (#16873)
    • Vite: Do not crash when encountering an .svg file with # or ? in the filename (#16957)
    • Ensure utilities are properly detected within square brackets (#16306)
    • Ensure utilities are properly detected using Angular's conditional class binding syntax (#16306)
    • Ensure utilities starting with numbers are properly extracted from Slim templates (#16306)
    • Discard arbitrary property candidates that have guaranteed-invalid property names (#16306)

    Changed

    • Removed max-w-auto and max-h-auto utilities as they generate invalid CSS (#16917)
    • Replaced the existing candidate extractor with a brand new extractor to improve maintainability, correctness, and performance (#16306)

    v4.0.9

    Fixed

    • Make JS APIs available to plugins and configs in the Standalone CLI (#15934)
    • Vite: Don't crash when importing a virtual module from JavaScript that ends in .css (#16780)
    • Fix an issue where @reference "…" would sometimes omit keyframe animations (#16774)
    • Ensure z-*! utilities are properly marked as !important (#16795)

    ... (truncated)

    Changelog

    Sourced from tailwindcss's changelog.

    [4.0.12] - 2025-03-07

    Fixed

    • Vite: Fix url(…) rebasing in transitively imported CSS files (#16965)
    • PostCSS: Rebase url(…)s in imported CSS files (#16965)
    • Ensure utilities are sorted based on their actual property order (#16995)
    • Ensure strings in Pug and Slim templates are handled correctly (#17000)
    • Ensure classes between } and { are properly extracted (#17001)
    • Fix razor/cshtml pre-processing (#17027)
    • Ensure extracting candidates from JS embedded in a PHP string works as expected (#17031)

    [4.0.11] - 2025-03-06

    Fixed

    • Ensure classes containing -- are extracted correctly (#16972)
    • Ensure classes containing numbers followed by dash or underscore are extracted correctly (#16980)
    • Ensure arbitrary container queries are extracted correctly (#16984)
    • Ensure classes ending in [ are extracted in Slim templating language (#16985)
    • Ensure arbitrary variables with data types are extracted correctly (#16986)

    [4.0.10] - 2025-03-05

    Added

    • Add col-<number> and row-<number> utilities for grid-column and grid-row (#15183)

    Fixed

    • Ensure not-* does not remove :is(…) from variants (#16825)
    • Ensure @keyframes are correctly emitted when using a prefix (#16850)
    • Don't swallow @utility declarations when @apply is used in nested rules (#16940)
    • Ensure outline-hidden behaves like outline-none outside of forced colors mode (#16943)
    • Allow !important on CSS variables again (#16873)
    • Vite: Do not crash when encountering an .svg file with # or ? in the filename (#16957)
    • Ensure utilities are properly detected within square brackets (#16306)
    • Ensure utilities are properly detected using Angular's conditional class binding syntax (#16306)
    • Ensure utilities starting with numbers are properly extracted from Slim templates (#16306)
    • Discard arbitrary property candidates that have guaranteed-invalid property names (#16306)

    Changed

    • Removed max-w-auto and max-h-auto utilities as they generate invalid CSS (#16917)
    • Replaced the existing candidate extractor with a brand new extractor to improve maintainability, correctness, and performance (#16306)

    [4.0.9] - 2025-02-25

    Fixed

    ... (truncated)

    Commits

    Updates tree-sitter from 0.22.1 to 0.22.4

    Release notes

    Sourced from tree-sitter's releases.

    v0.22.4

    Full Changelog: tree-sitter/node-tree-sitter@v0.22.3...v0.22.4

    Commits

    Updates typescript from 5.7.3 to 5.8.2

    Release notes

    Sourced from typescript's releases.

    TypeScript 5.8

    For release notes, check out the release announcement.

    Downloads are available on:

    TypeScript 5.8 RC

    For release notes, check out the release announcement.

    Downloads are available on:

    TypeScript 5.8 Beta

    For release notes, check out the release announcement.

    …17 updates
    
    Bumps the npm-dependencies group with 17 updates in the / directory:
    
    | Package | From | To |
    | --- | --- | --- |
    | [@astrojs/partytown](https://github.com/withastro/astro/tree/HEAD/packages/integrations/partytown) | `2.1.3` | `2.1.4` |
    | [@astrojs/starlight](https://github.com/withastro/starlight/tree/HEAD/packages/starlight) | `0.30.6` | `0.32.2` |
    | [@astrojs/tailwind](https://github.com/withastro/astro/tree/HEAD/packages/integrations/tailwind) | `5.1.5` | `6.0.0` |
    | [@expressive-code/plugin-collapsible-sections](https://github.com/expressive-code/expressive-code/tree/HEAD/packages/@expressive-code/plugin-collapsible-sections) | `0.38.3` | `0.40.2` |
    | [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `5.1.1` | `5.4.2` |
    | [hast-util-select](https://github.com/syntax-tree/hast-util-select) | `6.0.3` | `6.0.4` |
    | [hastscript](https://github.com/syntax-tree/hastscript) | `9.0.0` | `9.0.1` |
    | [marked](https://github.com/markedjs/marked) | `15.0.6` | `15.0.7` |
    | remark-svgbob | `1.1.1` | `2.0.0` |
    | [starlight-links-validator](https://github.com/HiDeoo/starlight-links-validator/tree/HEAD/packages/starlight-links-validator) | `0.14.1` | `0.14.3` |
    | [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `3.4.17` | `4.0.12` |
    | [tree-sitter](https://github.com/tree-sitter/node-tree-sitter) | `0.22.1` | `0.22.4` |
    | [typescript](https://github.com/microsoft/TypeScript) | `5.7.3` | `5.8.2` |
    | [lint-staged](https://github.com/lint-staged/lint-staged) | `15.4.2` | `15.4.3` |
    | [playwright](https://github.com/microsoft/playwright) | `1.50.0` | `1.51.0` |
    | [prettier](https://github.com/prettier/prettier) | `3.4.2` | `3.5.3` |
    | [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `2.1.9` | `3.0.8` |
    
    
    
    Updates `@astrojs/partytown` from 2.1.3 to 2.1.4
    - [Release notes](https://github.com/withastro/astro/releases)
    - [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/partytown/CHANGELOG.md)
    - [Commits](https://github.com/withastro/astro/commits/@astrojs/partytown@2.1.4/packages/integrations/partytown)
    
    Updates `@astrojs/starlight` from 0.30.6 to 0.32.2
    - [Release notes](https://github.com/withastro/starlight/releases)
    - [Changelog](https://github.com/withastro/starlight/blob/main/packages/starlight/CHANGELOG.md)
    - [Commits](https://github.com/withastro/starlight/commits/@astrojs/starlight@0.32.2/packages/starlight)
    
    Updates `@astrojs/tailwind` from 5.1.5 to 6.0.0
    - [Release notes](https://github.com/withastro/astro/releases)
    - [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/tailwind/CHANGELOG.md)
    - [Commits](https://github.com/withastro/astro/commits/@astrojs/tailwind@6.0.0/packages/integrations/tailwind)
    
    Updates `@expressive-code/plugin-collapsible-sections` from 0.38.3 to 0.40.2
    - [Release notes](https://github.com/expressive-code/expressive-code/releases)
    - [Changelog](https://github.com/expressive-code/expressive-code/blob/main/packages/@expressive-code/plugin-collapsible-sections/CHANGELOG.md)
    - [Commits](https://github.com/expressive-code/expressive-code/commits/@expressive-code/plugin-collapsible-sections@0.40.2/packages/@expressive-code/plugin-collapsible-sections)
    
    Updates `astro` from 5.1.1 to 5.4.2
    - [Release notes](https://github.com/withastro/astro/releases)
    - [Changelog](https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md)
    - [Commits](https://github.com/withastro/astro/commits/astro@5.4.2/packages/astro)
    
    Updates `hast-util-select` from 6.0.3 to 6.0.4
    - [Release notes](https://github.com/syntax-tree/hast-util-select/releases)
    - [Commits](syntax-tree/hast-util-select@6.0.3...6.0.4)
    
    Updates `hastscript` from 9.0.0 to 9.0.1
    - [Release notes](https://github.com/syntax-tree/hastscript/releases)
    - [Commits](syntax-tree/hastscript@9.0.0...9.0.1)
    
    Updates `marked` from 15.0.6 to 15.0.7
    - [Release notes](https://github.com/markedjs/marked/releases)
    - [Changelog](https://github.com/markedjs/marked/blob/master/.releaserc.json)
    - [Commits](markedjs/marked@v15.0.6...v15.0.7)
    
    Updates `remark-svgbob` from 1.1.1 to 2.0.0
    
    Updates `starlight-links-validator` from 0.14.1 to 0.14.3
    - [Release notes](https://github.com/HiDeoo/starlight-links-validator/releases)
    - [Changelog](https://github.com/HiDeoo/starlight-links-validator/blob/main/packages/starlight-links-validator/CHANGELOG.md)
    - [Commits](https://github.com/HiDeoo/starlight-links-validator/commits/starlight-links-validator@0.14.3/packages/starlight-links-validator)
    
    Updates `tailwindcss` from 3.4.17 to 4.0.12
    - [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
    - [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.0.12/packages/tailwindcss)
    
    Updates `tree-sitter` from 0.22.1 to 0.22.4
    - [Release notes](https://github.com/tree-sitter/node-tree-sitter/releases)
    - [Commits](tree-sitter/node-tree-sitter@v0.22.1...v0.22.4)
    
    Updates `typescript` from 5.7.3 to 5.8.2
    - [Release notes](https://github.com/microsoft/TypeScript/releases)
    - [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
    - [Commits](microsoft/TypeScript@v5.7.3...v5.8.2)
    
    Updates `lint-staged` from 15.4.2 to 15.4.3
    - [Release notes](https://github.com/lint-staged/lint-staged/releases)
    - [Changelog](https://github.com/lint-staged/lint-staged/blob/main/CHANGELOG.md)
    - [Commits](lint-staged/lint-staged@v15.4.2...v15.4.3)
    
    Updates `playwright` from 1.50.0 to 1.51.0
    - [Release notes](https://github.com/microsoft/playwright/releases)
    - [Commits](microsoft/playwright@v1.50.0...v1.51.0)
    
    Updates `prettier` from 3.4.2 to 3.5.3
    - [Release notes](https://github.com/prettier/prettier/releases)
    - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
    - [Commits](prettier/prettier@3.4.2...3.5.3)
    
    Updates `vitest` from 2.1.9 to 3.0.8
    - [Release notes](https://github.com/vitest-dev/vitest/releases)
    - [Commits](https://github.com/vitest-dev/vitest/commits/v3.0.8/packages/vitest)
    
    ---
    updated-dependencies:
    - dependency-name: "@astrojs/partytown"
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: npm-dependencies
    - dependency-name: "@astrojs/starlight"
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: npm-dependencies
    - dependency-name: "@astrojs/tailwind"
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: npm-dependencies
    - dependency-name: "@expressive-code/plugin-collapsible-sections"
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: npm-dependencies
    - dependency-name: astro
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: npm-dependencies
    - dependency-name: hast-util-select
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: npm-dependencies
    - dependency-name: hastscript
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: npm-dependencies
    - dependency-name: marked
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: npm-dependencies
    - dependency-name: remark-svgbob
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: npm-dependencies
    - dependency-name: starlight-links-validator
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: npm-dependencies
    - dependency-name: tailwindcss
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: npm-dependencies
    - dependency-name: tree-sitter
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: npm-dependencies
    - dependency-name: typescript
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: npm-dependencies
    - dependency-name: lint-staged
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: npm-dependencies
    - dependency-name: playwright
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: npm-dependencies
    - dependency-name: prettier
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: npm-dependencies
    - dependency-name: vitest
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: npm-dependencies
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    @dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Mar 10, 2025
    Copy link

    cloudflare-workers-and-pages bot commented Mar 10, 2025

    Deploying ratatui with  Cloudflare Pages  Cloudflare Pages

    Latest commit: 380abe8
    Status:🚫  Build failed.

    View logs

    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 file javascript Pull requests that update Javascript code
    Projects
    None yet
    Development

    Successfully merging this pull request may close these issues.

    0 participants