Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 7, 2026

Bumps the patch-updates group with 10 updates in the / directory:

Package From To
@astrojs/sitemap 3.6.0 3.6.1
@astrojs/svelte 7.2.2 7.2.5
@expressive-code/core 0.41.3 0.41.5
@expressive-code/plugin-collapsible-sections 0.41.3 0.41.5
@expressive-code/plugin-line-numbers 0.41.3 0.41.5
@iconify-json/material-symbols 1.2.49 1.2.50
astro 5.16.4 5.16.7
astro-expressive-code 0.41.3 0.41.5
tailwindcss 3.4.18 3.4.19
@biomejs/biome 2.3.8 2.3.11

Updates @astrojs/sitemap from 3.6.0 to 3.6.1

Release notes

Sourced from @​astrojs/sitemap's releases.

@​astrojs/sitemap@​3.6.1

Patch Changes

@​astrojs/sitemap@​3.6.1-alpha.1

Patch Changes

@​astrojs/sitemap@​3.6.1-alpha.0

Patch Changes

Changelog

Sourced from @​astrojs/sitemap's changelog.

3.6.1

Patch Changes

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​astrojs/sitemap since your current version.


Updates @astrojs/svelte from 7.2.2 to 7.2.5

Release notes

Sourced from @​astrojs/svelte's releases.

@​astrojs/svelte@​7.2.5

Patch Changes

@​astrojs/svelte@​7.2.4

Patch Changes

  • #15004 16f3994 Thanks @​antonyfaris! - Fixes an issue where Svelte components used in Astro files would incorrectly report type errors when using client:* directives.

@​astrojs/svelte@​7.2.3

Patch Changes

  • #14934 4264a36 Thanks @​antonyfaris! - Fixes an issue where Svelte 5 components used in Astro files would not have proper type checking and IntelliSense.
Changelog

Sourced from @​astrojs/svelte's changelog.

7.2.5

Patch Changes

7.2.4

Patch Changes

  • #15004 16f3994 Thanks @​antonyfaris! - Fixes an issue where Svelte components used in Astro files would incorrectly report type errors when using client:* directives.

7.2.3

Patch Changes

  • #14934 4264a36 Thanks @​antonyfaris! - Fixes an issue where Svelte 5 components used in Astro files would not have proper type checking and IntelliSense.
Commits

Updates @expressive-code/core from 0.41.3 to 0.41.5

Release notes

Sourced from @​expressive-code/core's releases.

@​expressive-code/core@​0.41.5

No release notes provided.

@​expressive-code/core@​0.41.4

No release notes provided.

Changelog

Sourced from @​expressive-code/core's changelog.

0.41.5

0.41.4

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​expressive-code/core since your current version.


Updates @expressive-code/plugin-collapsible-sections from 0.41.3 to 0.41.5

Release notes

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

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

Patch Changes

  • @​expressive-code/core@​0.41.5

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

Patch Changes

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

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

0.41.5

Patch Changes

  • @​expressive-code/core@​0.41.5

0.41.4

Patch Changes

  • @​expressive-code/core@​0.41.4
Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​expressive-code/plugin-collapsible-sections since your current version.


Updates @expressive-code/plugin-line-numbers from 0.41.3 to 0.41.5

Release notes

Sourced from @​expressive-code/plugin-line-numbers's releases.

@​expressive-code/plugin-line-numbers@​0.41.5

Patch Changes

  • @​expressive-code/core@​0.41.5

@​expressive-code/plugin-line-numbers@​0.41.4

Patch Changes

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

Sourced from @​expressive-code/plugin-line-numbers's changelog.

0.41.5

Patch Changes

  • @​expressive-code/core@​0.41.5

0.41.4

Patch Changes

  • @​expressive-code/core@​0.41.4
Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​expressive-code/plugin-line-numbers since your current version.


Updates @iconify-json/material-symbols from 1.2.49 to 1.2.50

Commits

Updates astro from 5.16.4 to 5.16.7

Release notes

Sourced from astro's releases.

astro@5.16.7

Patch Changes

  • #15122 b137946 Thanks @​florian-lefebvre! - Improves JSDoc annotations for AstroGlobal, AstroSharedContext and APIContext types

  • #15123 3f58fa2 Thanks @​43081j! - Improves rendering performance by grouping render chunks when emitting from async iterables to avoid encoding costs

  • #14954 7bec4bd Thanks @​volpeon! - Fixes remote images Etag header handling by disabling internal cache

  • #15052 b2bcd5a Thanks @​Princesseuh! - Fixes images not working in development when using setups with port forwarding

  • #15028 87b19b8 Thanks @​Princesseuh! - Fixes certain aliases not working when using images in JSON files with the content layer

  • #15118 cfa382b Thanks @​florian-lefebvre! - BREAKING CHANGE to the experimental Fonts API only

    Removes the defineAstroFontProvider() type helper.

    If you are building a custom font provider, remove any occurrence of defineAstroFontProvider() and use the FontProvider type instead:

    -import { defineAstroFontProvider } from 'astro/config';
    -export function myProvider() {
    
    return defineAstroFontProvider({
    
       entrypoint: new URL('./implementation.js', import.meta.url)
    
    
    });
    -};
    
    +import type { FontProvider } from 'astro';
    +export function myProvider(): FontProvider {
    
    return {
    
       entrypoint: new URL('./implementation.js', import.meta.url)
    
    
    },
    +}
  • #15055 4e28db8 Thanks @​delucis! - Reduces Astro’s install size by around 8 MB

  • #15088 a19140f Thanks @​martrapp! - Enables the ClientRouter to preserve the original hash part of the target URL during server side redirects.

  • #15117 b1e8e32 Thanks @​florian-lefebvre! - BREAKING CHANGE to the experimental Fonts API only

    Changes the font format downloaded by default when using the experimental Fonts API. Additionally, adds a new formats configuration option to specify which font formats to download.

    Previously, Astro was opinionated about which font sources would be kept for usage, mainly keeping woff2 and woff files.

    You can now specify what font formats should be downloaded (if available). Only woff2 files are downloaded by default.

    What should I do?

  • ... (truncated)

    Changelog

    Sourced from astro's changelog.

    5.16.7

    Patch Changes

    • #15122 b137946 Thanks @​florian-lefebvre! - Improves JSDoc annotations for AstroGlobal, AstroSharedContext and APIContext types

    • #15123 3f58fa2 Thanks @​43081j! - Improves rendering performance by grouping render chunks when emitting from async iterables to avoid encoding costs

    • #14954 7bec4bd Thanks @​volpeon! - Fixes remote images Etag header handling by disabling internal cache

    • #15052 b2bcd5a Thanks @​Princesseuh! - Fixes images not working in development when using setups with port forwarding

    • #15028 87b19b8 Thanks @​Princesseuh! - Fixes certain aliases not working when using images in JSON files with the content layer

    • #15118 cfa382b Thanks @​florian-lefebvre! - BREAKING CHANGE to the experimental Fonts API only

      Removes the defineAstroFontProvider() type helper.

      If you are building a custom font provider, remove any occurrence of defineAstroFontProvider() and use the FontProvider type instead:

      -import { defineAstroFontProvider } from 'astro/config';
      -export function myProvider() {
      
      return defineAstroFontProvider({
      
         entrypoint: new URL('./implementation.js', import.meta.url)
      
      
      });
      -};
      
      +import type { FontProvider } from 'astro';
      +export function myProvider(): FontProvider {
      
      return {
      
         entrypoint: new URL('./implementation.js', import.meta.url)
      
      
      },
      +}
  • #15055 4e28db8 Thanks @​delucis! - Reduces Astro’s install size by around 8 MB

  • #15088 a19140f Thanks @​martrapp! - Enables the ClientRouter to preserve the original hash part of the target URL during server side redirects.

  • #15117 b1e8e32 Thanks @​florian-lefebvre! - BREAKING CHANGE to the experimental Fonts API only

    Changes the font format downloaded by default when using the experimental Fonts API. Additionally, adds a new formats configuration option to specify which font formats to download.

    Previously, Astro was opinionated about which font sources would be kept for usage, mainly keeping woff2 and woff files.

    You can now specify what font formats should be downloaded (if available). Only woff2 files are downloaded by default.

  • ... (truncated)

    Commits

    Updates astro-expressive-code from 0.41.3 to 0.41.5

    Release notes

    Sourced from astro-expressive-code's releases.

    astro-expressive-code@0.41.5

    Patch Changes

    • 03bd507: Adds fish to the terminal languages group. Thank you @​kj!
    • 24cb221: Fixes partially missing styles in the <Code> component when using the addStyles plugin API function. When custom styles are added to an individual code block group, they are now correctly output after the group's base styles.
    • 24cb221: Fixes missing <Code> component styles when using emitExternalStylesheet: false. Thank you @​delucis!
    • 24cb221: Fixes order of base styles and group-level styles, ensuring that base styles are output first to prevent cascading issues.
    • Updated dependencies [03bd507]
    • Updated dependencies [24cb221]
      • rehype-expressive-code@0.41.5

    astro-expressive-code@0.41.4

    Patch Changes

    • 1c8807c: Fixes an import in component type definitions
      • rehype-expressive-code@0.41.4
    Changelog

    Sourced from astro-expressive-code's changelog.

    0.41.5

    Patch Changes

    • 03bd507: Adds fish to the terminal languages group. Thank you @​kj!
    • 24cb221: Fixes partially missing styles in the <Code> component when using the addStyles plugin API function. When custom styles are added to an individual code block group, they are now correctly output after the group's base styles.
    • 24cb221: Fixes missing <Code> component styles when using emitExternalStylesheet: false. Thank you @​delucis!
    • 24cb221: Fixes order of base styles and group-level styles, ensuring that base styles are output first to prevent cascading issues.
    • Updated dependencies [03bd507]
    • Updated dependencies [24cb221]
      • rehype-expressive-code@0.41.5

    0.41.4

    Patch Changes

    • 1c8807c: Fixes an import in component type definitions
      • rehype-expressive-code@0.41.4
    Commits
    Maintainer changes

    This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for astro-expressive-code since your current version.


    Updates tailwindcss from 3.4.18 to 3.4.19

    Release notes

    Sourced from tailwindcss's releases.

    v3.4.19

    Fixed

    • Don’t break sibling-*() functions when used inside calc(…) (#19335)
    Changelog

    Sourced from tailwindcss's changelog.

    [3.4.19] - 2025-12-10

    Fixed

    • Don’t break sibling-*() functions when used inside calc(…) (#19335)

    [4.1.17] - 2025-11-06

    Fixed

    • Substitute @variant inside legacy JS APIs (#19263)
    • Prevent occasional crash on Windows when loaded into a worker thread (#19242)

    [4.1.16] - 2025-10-23

    Fixed

    • Discard candidates with an empty data type (#19172)
    • Fix canonicalization of arbitrary variants with attribute selectors (#19176)
    • Fix invalid colors due to nested & (#19184)
    • Improve canonicalization for & > :pseudo and & :pseudo arbitrary variants (#19178)

    [4.1.15] - 2025-10-20

    Fixed

    • Fix Safari devtools rendering issue due to color-mix fallback (#19069)
    • Suppress Lightning CSS warnings about :deep, :slotted, and :global (#19094)
    • Fix resolving theme keys when starting with the name of another theme key in JS configs and plugins (#19097)
    • Allow named groups in combination with not-*, has-*, and in-* (#19100)
    • Prevent important utilities from affecting other utilities (#19110)
    • Don’t index into strings with the theme(…) function (#19111)
    • Fix parsing issue when \t is used in at-rules (#19130)
    • Upgrade: Canonicalize utilities containing 0 values (#19095)
    • Upgrade: Migrate deprecated break-words to wrap-break-word (#19157)

    Changed

    [4.1.14] - 2025-10-01

    Fixed

    • Handle ' syntax in ClojureScript when extracting classes (#18888)
    • Handle @variant inside @custom-variant (#18885)
    • Merge suggestions when using @utility (#18900)
    • Ensure that file system watchers created when using the CLI are always cleaned up (#18905)
    • Do not generate grid-column utilities when configuring grid-column-start or grid-column-end (#18907)
    • Do not generate grid-row utilities when configuring grid-row-start or grid-row-end (#18907)

    ... (truncated)

    Commits

    Updates @biomejs/biome from 2.3.8 to 2.3.11

    Release notes

    Sourced from @​biomejs/biome's releases.

    Biome CLI v2.3.11

    2.3.11

    Patch Changes

    • #8583 83be210 Thanks @​dyc3! - Added the new nursery rule useVueValidTemplateRoot.

      This rule validates only root-level \<template> elements in Vue single-file components. If the \<template> has a src attribute, it must be empty. Otherwise, it must contain content.

      Invalid examples:

      \<template src="./foo.html">content</template>
      \<template></template>

      Valid examples:

      \<template>content</template>
      \<template src="./foo.html"></template>
    • #8586 df8fe06 Thanks @​dyc3! - Added a new nursery rule useVueConsistentVBindStyle. Enforces consistent v-bind style (:prop shorthand vs v-bind:prop longhand). Default prefers shorthand; configurable via rule options.

    • #8587 9a8c98d Thanks @​dyc3! - Added the rule useVueVForKey, which enforces that any element using v-for also specifies a key.

      Invalid

      <li v-for="item in items">{{ item }}</li>

      Valid

      <li v-for="item in items" :key="item.id">{{ item }}</li>
    • #8586 df8fe06 Thanks @​dyc3! - Added a new nursery rule useVueConsistentVOnStyle. Enforces consistent v-on style (@event shorthand vs v-on:event longhand). Default prefers shorthand; configurable via rule options.

    • #8583 83be210 Thanks @​dyc3! - Added the new nursery rule useVueValidVOnce. Enforces that usages of the v-once directive in Vue.js SFC are valid.

    ... (truncated)

    Changelog

    Sourced from @​biomejs/biome's changelog.

    2.3.11

    Patch Changes

    • #8583 83be210 Thanks @​dyc3! - Added the new nursery rule useVueValidTemplateRoot.

      This rule validates only root-level \<template> elements in Vue single-file components. If the \<template> has a src attribute, it must be empty. Otherwise, it must contain content.

      Invalid examples:

      \<template src="./foo.html">content</template>
      \<template></template>

      Valid examples:

      \<template>content</template>
      \<template src="./foo.html"></template>
    • #8586 df8fe06 Thanks @​dyc3! - Added a new nursery rule useVueConsistentVBindStyle. Enforces consistent v-bind style (:prop shorthand vs v-bind:prop longhand). Default prefers shorthand; configurable via rule options.

    • #8587 9a8c98d Thanks @​dyc3! - Added the rule useVueVForKey, which enforces that any element using v-for also specifies a key.

      Invalid

      <li v-for="item in items">{{ item }}</li>

      Valid

      <li v-for="item in items" :key="item.id">{{ item }}</li>
    • #8586 df8fe06 Thanks @​dyc3! - Added a new nursery rule useVueConsistentVOnStyle. Enforces consistent v-on style (@event shorthand vs v-on:event longhand). Default prefers shorthand; configurable via rule options.

    • #8583 83be210 Thanks @​dyc3! - Added the new nursery rule useVueValidVOnce. Enforces that usages of the v-once directive in Vue.js SFC are valid.

      <!-- Valid -->

    ... (truncated)

    Commits
    • 1550e73 ci: release (#8507)
    • a3a27a7 feat(analyze/html/vue): add useVueVapor rule (#8644)
    • 9a8c98d feat(analyze/html/vue): add useVueVForKey (#8587)
    • ab9af9a feat: no-jsx-props-bind (#7410)
    • df8fe06 feat(analyze/html/vue): add v-bind/v-on style rules (#8586)
    • 83be210 feat(analyze/html/vue): add a few more simple vue lint rules (#8583)
    • a3a1ad2 feat(biome_js_analyze): port noBeforeInteractiveScriptOutsideDocument from ...
    • 9dd9ca7 feat(graphql_analyze): implement useUniqueArgumentNames (#8591)
    • 5e85d43 feat(graphql_analyze): implement useUniqueFieldDefinitionNames (#8598)
    • a5f59cd feat(graphql_analyze): implement useUniqueInputFieldNames (#8592)
    • Additional commits viewable in compare view

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
    • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
    • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
    • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
    • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
    • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

    Bumps the patch-updates group with 10 updates in the / directory:
    
    | Package | From | To |
    | --- | --- | --- |
    | [@astrojs/sitemap](https://github.com/withastro/astro/tree/HEAD/packages/integrations/sitemap) | `3.6.0` | `3.6.1` |
    | [@astrojs/svelte](https://github.com/withastro/astro/tree/HEAD/packages/integrations/svelte) | `7.2.2` | `7.2.5` |
    | [@expressive-code/core](https://github.com/expressive-code/expressive-code/tree/HEAD/packages/@expressive-code/core) | `0.41.3` | `0.41.5` |
    | [@expressive-code/plugin-collapsible-sections](https://github.com/expressive-code/expressive-code/tree/HEAD/packages/@expressive-code/plugin-collapsible-sections) | `0.41.3` | `0.41.5` |
    | [@expressive-code/plugin-line-numbers](https://github.com/expressive-code/expressive-code/tree/HEAD/packages/@expressive-code/plugin-line-numbers) | `0.41.3` | `0.41.5` |
    | [@iconify-json/material-symbols](https://github.com/iconify/icon-sets) | `1.2.49` | `1.2.50` |
    | [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `5.16.4` | `5.16.7` |
    | [astro-expressive-code](https://github.com/expressive-code/expressive-code/tree/HEAD/packages/astro-expressive-code) | `0.41.3` | `0.41.5` |
    | [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `3.4.18` | `3.4.19` |
    | [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.3.8` | `2.3.11` |
    
    
    
    Updates `@astrojs/sitemap` from 3.6.0 to 3.6.1
    - [Release notes](https://github.com/withastro/astro/releases)
    - [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/sitemap/CHANGELOG.md)
    - [Commits](https://github.com/withastro/astro/commits/@astrojs/sitemap@3.6.1/packages/integrations/sitemap)
    
    Updates `@astrojs/svelte` from 7.2.2 to 7.2.5
    - [Release notes](https://github.com/withastro/astro/releases)
    - [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/svelte/CHANGELOG.md)
    - [Commits](https://github.com/withastro/astro/commits/@astrojs/svelte@7.2.5/packages/integrations/svelte)
    
    Updates `@expressive-code/core` from 0.41.3 to 0.41.5
    - [Release notes](https://github.com/expressive-code/expressive-code/releases)
    - [Changelog](https://github.com/expressive-code/expressive-code/blob/main/packages/@expressive-code/core/CHANGELOG.md)
    - [Commits](https://github.com/expressive-code/expressive-code/commits/@expressive-code/core@0.41.5/packages/@expressive-code/core)
    
    Updates `@expressive-code/plugin-collapsible-sections` from 0.41.3 to 0.41.5
    - [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.41.5/packages/@expressive-code/plugin-collapsible-sections)
    
    Updates `@expressive-code/plugin-line-numbers` from 0.41.3 to 0.41.5
    - [Release notes](https://github.com/expressive-code/expressive-code/releases)
    - [Changelog](https://github.com/expressive-code/expressive-code/blob/main/packages/@expressive-code/plugin-line-numbers/CHANGELOG.md)
    - [Commits](https://github.com/expressive-code/expressive-code/commits/@expressive-code/plugin-line-numbers@0.41.5/packages/@expressive-code/plugin-line-numbers)
    
    Updates `@iconify-json/material-symbols` from 1.2.49 to 1.2.50
    - [Commits](https://github.com/iconify/icon-sets/commits)
    
    Updates `astro` from 5.16.4 to 5.16.7
    - [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.16.7/packages/astro)
    
    Updates `astro-expressive-code` from 0.41.3 to 0.41.5
    - [Release notes](https://github.com/expressive-code/expressive-code/releases)
    - [Changelog](https://github.com/expressive-code/expressive-code/blob/main/packages/astro-expressive-code/CHANGELOG.md)
    - [Commits](https://github.com/expressive-code/expressive-code/commits/astro-expressive-code@0.41.5/packages/astro-expressive-code)
    
    Updates `tailwindcss` from 3.4.18 to 3.4.19
    - [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/v3.4.19/packages/tailwindcss)
    
    Updates `@biomejs/biome` from 2.3.8 to 2.3.11
    - [Release notes](https://github.com/biomejs/biome/releases)
    - [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
    - [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.3.11/packages/@biomejs/biome)
    
    ---
    updated-dependencies:
    - dependency-name: "@astrojs/sitemap"
      dependency-version: 3.6.1
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: patch-updates
    - dependency-name: "@astrojs/svelte"
      dependency-version: 7.2.5
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: patch-updates
    - dependency-name: "@expressive-code/core"
      dependency-version: 0.41.5
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: patch-updates
    - dependency-name: "@expressive-code/plugin-collapsible-sections"
      dependency-version: 0.41.5
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: patch-updates
    - dependency-name: "@expressive-code/plugin-line-numbers"
      dependency-version: 0.41.5
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: patch-updates
    - dependency-name: "@iconify-json/material-symbols"
      dependency-version: 1.2.50
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: patch-updates
    - dependency-name: astro
      dependency-version: 5.16.7
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: patch-updates
    - dependency-name: astro-expressive-code
      dependency-version: 0.41.5
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: patch-updates
    - dependency-name: tailwindcss
      dependency-version: 3.4.19
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: patch-updates
    - dependency-name: "@biomejs/biome"
      dependency-version: 2.3.11
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: patch-updates
    ...
    
    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 Jan 7, 2026
    @dependabot @github
    Copy link
    Contributor Author

    dependabot bot commented on behalf of github Jan 16, 2026

    Looks like these dependencies are updatable in another way, so this is no longer needed.

    @dependabot dependabot bot closed this Jan 16, 2026
    @dependabot dependabot bot deleted the dependabot-npm_and_yarn-patch-updates-fb8f721972 branch January 16, 2026 14:48
    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.

    1 participant