Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps the astro group with 3 updates: @astrojs/preact, @astrojs/rss and astro.

Updates @astrojs/preact from 4.1.2 to 4.1.3

Release notes

Sourced from @​astrojs/preact's releases.

@​astrojs/preact@​4.1.3

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.

Changelog

Sourced from @​astrojs/preact's changelog.

4.1.3

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.

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 astro from 5.15.9 to 5.16.0

Release notes

Sourced from astro's releases.

[email protected]

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

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

@dependabot dependabot bot added the Type: Maintenance Repository Maintenance label Nov 24, 2025
@vercel
Copy link

vercel bot commented Nov 24, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Comments Updated (UTC)
vgmo Ready Ready Preview Comment Dec 2, 2025 2:36am

@codecov
Copy link

codecov bot commented Nov 24, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 77.03%. Comparing base (8cd541e) to head (9a55f5e).
⚠️ Report is 4 commits behind head on main.
✅ All tests successful. No failed tests found.

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #110   +/-   ##
=======================================
  Coverage   77.03%   77.03%           
=======================================
  Files           4        4           
  Lines         357      357           
  Branches       40       40           
=======================================
  Hits          275      275           
  Misses         82       82           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@codecov
Copy link

codecov bot commented Nov 24, 2025

Bundle Report

Changes will increase total bundle size by 141 bytes (0.1%) ⬆️. This is within the configured threshold ✅

Detailed changes
Bundle name Size Change
vgmo-web-server-esm 124.97kB 141 bytes (0.11%) ⬆️

Affected Assets, Files, and Routes:

view changes for bundle: vgmo-web-server-esm

Assets Changed:

Asset Name Size Change Total Size Change (%)
chunks/astro/server_BY431UJJ.mjs (New) 69.05kB 69.05kB 100.0% 🚀
chunks/MainLayout_D008BXbE.mjs (New) 8.42kB 8.42kB 100.0% 🚀
manifest_CaQUDS6H.mjs (New) 5.01kB 5.01kB 100.0% 🚀
pages/concert/_slug_.astro.mjs 20 bytes 3.3kB 0.61%
pages/about.astro.mjs 20 bytes 2.25kB 0.9%
pages/index.astro.mjs 20 bytes 1.82kB 1.11%
chunks/astro_B81qMlmP.mjs (New) 96 bytes 96 bytes 100.0% 🚀
chunks/astro/server_sW8vuDCy.mjs (Deleted) -69.03kB 0 bytes -100.0% 🗑️
chunks/MainLayout_CMRqYQj8.mjs (Deleted) -8.4kB 0 bytes -100.0% 🗑️
manifest_CYbfS-x6.mjs (Deleted) -4.99kB 0 bytes -100.0% 🗑️
chunks/astro_BUyuZn_j.mjs (Deleted) -76 bytes 0 bytes -100.0% 🗑️

App Routes Affected:

App Route Size Change Total Size Change (%)
/ 20 bytes 1.82kB 1.11%
/about 20 bytes 2.25kB 0.9%
/concert/[slug] 20 bytes 3.3kB 0.61%

@9renpoto
Copy link
Owner

9renpoto commented Dec 2, 2025

@dependabot rebase

Bumps the astro group with 3 updates: [@astrojs/preact](https://github.com/withastro/astro/tree/HEAD/packages/integrations/preact), [@astrojs/rss](https://github.com/withastro/astro/tree/HEAD/packages/astro-rss) and [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro).


Updates `@astrojs/preact` from 4.1.2 to 4.1.3
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/preact/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/[email protected]/packages/integrations/preact)

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/[email protected]/packages/astro-rss)

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/[email protected]/packages/astro)

---
updated-dependencies:
- dependency-name: "@astrojs/preact"
  dependency-version: 4.1.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: astro
- dependency-name: "@astrojs/rss"
  dependency-version: 4.0.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: astro
- dependency-name: astro
  dependency-version: 5.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: astro
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/astro-1e17f88e7a branch from 7ec4b6b to 9a55f5e Compare December 2, 2025 02:36
@9renpoto 9renpoto merged commit 9d25fb5 into main Dec 10, 2025
12 checks passed
@9renpoto 9renpoto deleted the dependabot/npm_and_yarn/astro-1e17f88e7a branch December 10, 2025 06:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Type: Maintenance Repository Maintenance

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants