Skip to content

build(deps): Bump the patch-minor group with 10 updates#658

Merged
evadecker merged 1 commit intomainfrom
dependabot/npm_and_yarn/patch-minor-beb2dd7048
Nov 24, 2025
Merged

build(deps): Bump the patch-minor group with 10 updates#658
evadecker merged 1 commit intomainfrom
dependabot/npm_and_yarn/patch-minor-beb2dd7048

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 24, 2025

Bumps the patch-minor group with 10 updates:

Package From To
@astrojs/db 0.18.2 0.18.3
@astrojs/markdown-remark 6.3.8 6.3.9
@astrojs/mdx 4.3.10 4.3.12
@astrojs/netlify 6.6.0 6.6.2
@astrojs/rss 4.0.13 4.0.14
@types/react 19.2.5 19.2.6
astro 5.15.9 5.16.0
nanostores 1.0.1 1.1.0
@biomejs/biome 2.3.5 2.3.7
sass 1.94.0 1.94.2

Updates @astrojs/db from 0.18.2 to 0.18.3

Release notes

Sourced from @​astrojs/db's releases.

@​astrojs/db@​0.18.3

Patch Changes

Changelog

Sourced from @​astrojs/db's changelog.

0.18.3

Patch Changes

Commits

Updates @astrojs/markdown-remark from 6.3.8 to 6.3.9

Release notes

Sourced from @​astrojs/markdown-remark's releases.

@​astrojs/markdown-remark@​6.3.9

Patch Changes

Changelog

Sourced from @​astrojs/markdown-remark's changelog.

6.3.9

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/markdown-remark since your current version.


Updates @astrojs/mdx from 4.3.10 to 4.3.12

Release notes

Sourced from @​astrojs/mdx's releases.

@​astrojs/mdx@​4.3.12

Patch Changes

@​astrojs/mdx@​4.3.11

Patch Changes

  • Updated dependencies []:
    • @​astrojs/markdown-remark@​6.3.9
Changelog

Sourced from @​astrojs/mdx's changelog.

4.3.12

Patch Changes

4.3.11

Patch Changes

  • Updated dependencies []:
    • @​astrojs/markdown-remark@​6.3.9
Commits

Updates @astrojs/netlify from 6.6.0 to 6.6.2

Release notes

Sourced from @​astrojs/netlify's releases.

@​astrojs/netlify@​6.6.2

Patch Changes

  • #14716 0419985 Thanks @​serhalp! - Upgrades the @netlify/functions dependency to v5. This removes 82 MB and 310 dependencies from the dependency tree

  • Updated dependencies []:

    • @​astrojs/underscore-redirects@​1.0.0

@​astrojs/netlify@​6.6.1

Patch Changes

  • Updated dependencies [9e9c528, 0f75f6b]:
    • @​astrojs/internal-helpers@​0.7.5
    • @​astrojs/underscore-redirects@​1.0.0
Changelog

Sourced from @​astrojs/netlify's changelog.

6.6.2

Patch Changes

  • #14716 0419985 Thanks @​serhalp! - Upgrades the @netlify/functions dependency to v5. This removes 82 MB and 310 dependencies from the dependency tree

  • Updated dependencies []:

    • @​astrojs/underscore-redirects@​1.0.0

6.6.1

Patch Changes

  • Updated dependencies [9e9c528, 0f75f6b]:
    • @​astrojs/internal-helpers@​0.7.5
    • @​astrojs/underscore-redirects@​1.0.0
Commits

Updates @astrojs/rss from 4.0.13 to 4.0.14

Release notes

Sourced from @​astrojs/rss's releases.

@​astrojs/rss@​4.0.14

Patch Changes

Changelog

Sourced from @​astrojs/rss's changelog.

4.0.14

Patch Changes

Commits

Updates @types/react from 19.2.5 to 19.2.6

Commits

Updates astro from 5.15.9 to 5.16.0

Release notes

Sourced from astro's releases.

astro@5.16.0

Minor Changes

  • #13880 1a2ed01 Thanks @​azat-io! - Adds experimental SVGO optimization support for SVG assets

    Astro now supports automatic SVG optimization using SVGO during build time. This experimental feature helps reduce SVG file sizes while maintaining visual quality, improving your site's performance.

    To enable SVG optimization with default settings, add the following to your astro.config.mjs:

    import { defineConfig } from 'astro/config';
    export default defineConfig({
    experimental: {
    svgo: true,
    },
    });

    To customize optimization, pass a SVGO configuration object:

    export default defineConfig({
      experimental: {
        svgo: {
          plugins: [
            'preset-default',
            {
              name: 'removeViewBox',
              active: false,
            },
          ],
        },
      },
    });

    For more information on enabling and using this feature in your project, see the experimental SVG optimization docs.

  • #14810 2e845fe Thanks @​ascorbic! - Adds a hint for code agents to use the --yes flag to skip prompts when running astro add

  • #14698 f42ff9b Thanks @​mauriciabad! - Adds the ActionInputSchema utility type to automatically infer the TypeScript type of an action's input based on its Zod schema

    For example, this type can be used to retrieve the input type of a form action:

    import { type ActionInputSchema, defineAction } from 'astro:actions';
    import { z } from 'astro/zod';
    const action = defineAction({

... (truncated)

Changelog

Sourced from astro's changelog.

5.16.0

Minor Changes

  • #13880 1a2ed01 Thanks @​azat-io! - Adds experimental SVGO optimization support for SVG assets

    Astro now supports automatic SVG optimization using SVGO during build time. This experimental feature helps reduce SVG file sizes while maintaining visual quality, improving your site's performance.

    To enable SVG optimization with default settings, add the following to your astro.config.mjs:

    import { defineConfig } from 'astro/config';
    export default defineConfig({
    experimental: {
    svgo: true,
    },
    });

    To customize optimization, pass a SVGO configuration object:

    export default defineConfig({
      experimental: {
        svgo: {
          plugins: [
            'preset-default',
            {
              name: 'removeViewBox',
              active: false,
            },
          ],
        },
      },
    });

    For more information on enabling and using this feature in your project, see the experimental SVG optimization docs.

  • #14810 2e845fe Thanks @​ascorbic! - Adds a hint for code agents to use the --yes flag to skip prompts when running astro add

  • #14698 f42ff9b Thanks @​mauriciabad! - Adds the ActionInputSchema utility type to automatically infer the TypeScript type of an action's input based on its Zod schema

    For example, this type can be used to retrieve the input type of a form action:

    import { type ActionInputSchema, defineAction } from 'astro:actions';
    import { z } from 'astro/zod';

... (truncated)

Commits

Updates nanostores from 1.0.1 to 1.1.0

Release notes

Sourced from nanostores's releases.

1.1.0

  • Deprecated deepmap() in favor of @nanostores/deepmap (by @​Lifo123).
  • Added mark for better tree-shaking.
Changelog

Sourced from nanostores's changelog.

1.1.0

  • Deprecated deepmap() in favor of @nanostores/deepmap (by @​Lifo123).
  • Added mark for better tree-shaking.
Commits

Updates @biomejs/biome from 2.3.5 to 2.3.7

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.3.7

2.3.7

Patch Changes

  • #8169 7fdcec8 Thanks @​arendjr! - Fixed #7999: Correctly place await after leading comment in auto-fix action from noFloatingPromises rule.

  • #8157 12d5b42 Thanks @​Conaclos! - Fixed #8148. noInvalidUseBeforeDeclaration no longer reports some valid use before declarations.

    The following code is no longer reported as invalid:

    class classA {
      C = C;
    }
    const C = 0;
  • #8178 6ba4157 Thanks @​dyc3! - Fixed #8174, where the HTML parser would parse 2 directives as a single directive because it would not reject whitespace in Vue directives. This would cause the formatter to erroneously merge the 2 directives into one, resulting in broken code.

    - <Component v-else:property="123" />
    + <Component v-else :property="123" />
  • #8088 0eb08e8 Thanks @​db295! - Fixed #7876: The noUnusedImports rule now ignores imports that are used by @​linkcode and @​linkplain (previously supported @​link and @​see).

    The following code will no longer be a false positive:

    import type { a } from "a"
    /**
    
    {@​linkcode a}
    */
    function func() {}
  • #8119 8d64655 Thanks @​ematipico! - Improved the detection of the rule noUnnecessaryConditions. Now the rule isn't triggered for variables that are mutated inside a module.

    This logic deviates from the original rule, hence noUnnecessaryConditions is now marked as "inspired".

    In the following example, hey starts as false, but then it's assigned to a string. The rule isn't triggered inside the if check.

    let hey = false;
    function test() {
    hey = "string";

  • ... (truncated)

    Changelog

    Sourced from @​biomejs/biome's changelog.

    2.3.7

    Patch Changes

    • #8169 7fdcec8 Thanks @​arendjr! - Fixed #7999: Correctly place await after leading comment in auto-fix action from noFloatingPromises rule.

    • #8157 12d5b42 Thanks @​Conaclos! - Fixed #8148. noInvalidUseBeforeDeclaration no longer reports some valid use before declarations.

      The following code is no longer reported as invalid:

      class classA {
        C = C;
      }
      const C = 0;
    • #8178 6ba4157 Thanks @​dyc3! - Fixed #8174, where the HTML parser would parse 2 directives as a single directive because it would not reject whitespace in Vue directives. This would cause the formatter to erroneously merge the 2 directives into one, resulting in broken code.

      - <Component v-else:property="123" />
      + <Component v-else :property="123" />
    • #8088 0eb08e8 Thanks @​db295! - Fixed #7876: The noUnusedImports rule now ignores imports that are used by @​linkcode and @​linkplain (previously supported @​link and @​see).

      The following code will no longer be a false positive:

      import type { a } from "a"
      /**
      
      {@​linkcode a}
      */
      function func() {}
  • #8119 8d64655 Thanks @​ematipico! - Improved the detection of the rule noUnnecessaryConditions. Now the rule isn't triggered for variables that are mutated inside a module.

    This logic deviates from the original rule, hence noUnnecessaryConditions is now marked as "inspired".

    In the following example, hey starts as false, but then it's assigned to a string. The rule isn't triggered inside the if check.

    let hey = false;
    function test() {
    hey = "string";
    }

  • ... (truncated)

    Commits
    Maintainer changes

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


    Updates sass from 1.94.0 to 1.94.2

    Release notes

    Sourced from sass's releases.

    Dart Sass 1.94.2

    To install Sass 1.94.2, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

    Changes

    Command-Line Interface

    • Using --fatal-deprecation <version> no longer emits warnings about deprecations that are obsolete.

    Dart API

    • Deprecation.forVersion now excludes obsolete deprecations from the set it returns.

    JS API

    • Excludes obsolete deprecations from fatalDeprecations when a Version is passed.

    Node.js Embedded Host

    • Fix a bug where a variable could be used before it was initialized during async compilation.

    See the full changelog for changes in earlier releases.

    Dart Sass 1.94.1

    To install Sass 1.94.1, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

    Changes

    • No user-visible changes.

    See the full changelog for changes in earlier releases.

    Changelog

    Sourced from sass's changelog.

    1.94.2

    Command-Line Interface

    • Using --fatal-deprecation <version> no longer emits warnings about deprecations that are obsolete.

    Dart API

    • Deprecation.forVersion now excludes obsolete deprecations from the set it returns.

    JS API

    • Excludes obsolete deprecations from fatalDeprecations when a Version is passed.

    Node.js Embedded Host

    • Fix a bug where a variable could be used before it was initialized during async compilation.

    1.94.1

    • No user-visible changes.
    Commits

    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-minor group with 10 updates:
    
    | Package | From | To |
    | --- | --- | --- |
    | [@astrojs/db](https://github.com/withastro/astro/tree/HEAD/packages/db) | `0.18.2` | `0.18.3` |
    | [@astrojs/markdown-remark](https://github.com/withastro/astro/tree/HEAD/packages/markdown/remark) | `6.3.8` | `6.3.9` |
    | [@astrojs/mdx](https://github.com/withastro/astro/tree/HEAD/packages/integrations/mdx) | `4.3.10` | `4.3.12` |
    | [@astrojs/netlify](https://github.com/withastro/astro/tree/HEAD/packages/integrations/netlify) | `6.6.0` | `6.6.2` |
    | [@astrojs/rss](https://github.com/withastro/astro/tree/HEAD/packages/astro-rss) | `4.0.13` | `4.0.14` |
    | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.2.5` | `19.2.6` |
    | [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `5.15.9` | `5.16.0` |
    | [nanostores](https://github.com/nanostores/nanostores) | `1.0.1` | `1.1.0` |
    | [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.3.5` | `2.3.7` |
    | [sass](https://github.com/sass/dart-sass) | `1.94.0` | `1.94.2` |
    
    
    Updates `@astrojs/db` from 0.18.2 to 0.18.3
    - [Release notes](https://github.com/withastro/astro/releases)
    - [Changelog](https://github.com/withastro/astro/blob/main/packages/db/CHANGELOG.md)
    - [Commits](https://github.com/withastro/astro/commits/@astrojs/db@0.18.3/packages/db)
    
    Updates `@astrojs/markdown-remark` from 6.3.8 to 6.3.9
    - [Release notes](https://github.com/withastro/astro/releases)
    - [Changelog](https://github.com/withastro/astro/blob/main/packages/markdown/remark/CHANGELOG.md)
    - [Commits](https://github.com/withastro/astro/commits/@astrojs/markdown-remark@6.3.9/packages/markdown/remark)
    
    Updates `@astrojs/mdx` from 4.3.10 to 4.3.12
    - [Release notes](https://github.com/withastro/astro/releases)
    - [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/mdx/CHANGELOG.md)
    - [Commits](https://github.com/withastro/astro/commits/@astrojs/mdx@4.3.12/packages/integrations/mdx)
    
    Updates `@astrojs/netlify` from 6.6.0 to 6.6.2
    - [Release notes](https://github.com/withastro/astro/releases)
    - [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/netlify/CHANGELOG.md)
    - [Commits](https://github.com/withastro/astro/commits/@astrojs/netlify@6.6.2/packages/integrations/netlify)
    
    Updates `@astrojs/rss` from 4.0.13 to 4.0.14
    - [Release notes](https://github.com/withastro/astro/releases)
    - [Changelog](https://github.com/withastro/astro/blob/main/packages/astro-rss/CHANGELOG.md)
    - [Commits](https://github.com/withastro/astro/commits/@astrojs/rss@4.0.14/packages/astro-rss)
    
    Updates `@types/react` from 19.2.5 to 19.2.6
    - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
    - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)
    
    Updates `astro` from 5.15.9 to 5.16.0
    - [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.0/packages/astro)
    
    Updates `nanostores` from 1.0.1 to 1.1.0
    - [Release notes](https://github.com/nanostores/nanostores/releases)
    - [Changelog](https://github.com/nanostores/nanostores/blob/main/CHANGELOG.md)
    - [Commits](nanostores/nanostores@1.0.1...1.1.0)
    
    Updates `@biomejs/biome` from 2.3.5 to 2.3.7
    - [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.7/packages/@biomejs/biome)
    
    Updates `sass` from 1.94.0 to 1.94.2
    - [Release notes](https://github.com/sass/dart-sass/releases)
    - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
    - [Commits](sass/dart-sass@1.94.0...1.94.2)
    
    ---
    updated-dependencies:
    - dependency-name: "@astrojs/db"
      dependency-version: 0.18.3
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: patch-minor
    - dependency-name: "@astrojs/markdown-remark"
      dependency-version: 6.3.9
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: patch-minor
    - dependency-name: "@astrojs/mdx"
      dependency-version: 4.3.12
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: patch-minor
    - dependency-name: "@astrojs/netlify"
      dependency-version: 6.6.2
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: patch-minor
    - dependency-name: "@astrojs/rss"
      dependency-version: 4.0.14
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: patch-minor
    - dependency-name: "@types/react"
      dependency-version: 19.2.6
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: patch-minor
    - dependency-name: astro
      dependency-version: 5.16.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: patch-minor
    - dependency-name: nanostores
      dependency-version: 1.1.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: patch-minor
    - dependency-name: "@biomejs/biome"
      dependency-version: 2.3.7
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: patch-minor
    - dependency-name: sass
      dependency-version: 1.94.2
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: patch-minor
    ...
    
    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 Nov 24, 2025
    @netlify
    Copy link

    netlify bot commented Nov 24, 2025

    Deploy Preview for eva-town ready!

    Name Link
    🔨 Latest commit abeb83e
    🔍 Latest deploy log https://app.netlify.com/projects/eva-town/deploys/6924118639f3b40008bef071
    😎 Deploy Preview https://deploy-preview-658--eva-town.netlify.app
    📱 Preview on mobile
    Toggle QR Code...

    QR Code

    Use your smartphone camera to open QR code link.
    Lighthouse
    Lighthouse
    1 paths audited
    Performance: 93
    Accessibility: 100
    Best Practices: 100
    SEO: 100
    PWA: 70
    View the detailed breakdown and full score reports

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

    @evadecker evadecker merged commit 5146df9 into main Nov 24, 2025
    8 checks passed
    @evadecker evadecker deleted the dependabot/npm_and_yarn/patch-minor-beb2dd7048 branch November 24, 2025 19:27
    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