Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 7, 2025

Bumps the npm group with 4 updates in the / directory: @astrojs/tailwind, astro, sharp and daisyui.

Updates @astrojs/tailwind from 6.0.0 to 6.0.2

Release notes

Sourced from @​astrojs/tailwind's releases.

@​astrojs/tailwind@​6.0.2

Patch Changes

@​astrojs/tailwind@​6.0.1

Patch Changes

Changelog

Sourced from @​astrojs/tailwind's changelog.

6.0.2

Patch Changes

6.0.1

Patch Changes

Commits

Updates astro from 5.2.3 to 5.6.1

Release notes

Sourced from astro's releases.

astro@5.6.1

Patch Changes

astro@5.6.0

Minor Changes

  • #13403 dcb9526 Thanks @​yurynix! - Adds a new optional prerenderedErrorPageFetch option in the Adapter API to allow adapters to provide custom implementations for fetching prerendered error pages.

    Now, adapters can override the default fetch() behavior, for example when fetch() is unavailable or when you cannot call the server from itself.

    The following example provides a custom fetch for 500.html and 404.html, reading them from disk instead of performing an HTTP call:

    return app.render(request, {
      prerenderedErrorPageFetch: async (url: string): Promise<Response> => {
        if (url.includes("/500")) {
            const content = await fs.promises.readFile("500.html", "utf-8");
            return new Response(content, {
              status: 500,
              headers: { "Content-Type": "text/html" },
            });
        }
        const content = await fs.promises.readFile("404.html", "utf-8");
          return new Response(content, {
            status: 404,
            headers: { "Content-Type": "text/html" },
          });
    });

    If no value is provided, Astro will fallback to its default behavior for fetching error pages.

    Read more about this feature in the Adapter API reference.

  • #13482 ff257df Thanks @​florian-lefebvre! - Updates Astro config validation to also run for the Integration API. An error log will specify which integration is failing the validation.

    Now, Astro will first validate the user configuration, then validate the updated configuration after each integration astro:config:setup hook has run. This means updateConfig() calls will no longer accept invalid configuration.

    This fixes a situation where integrations could potentially update a project with a malformed configuration. These issues should now be caught and logged so that you can update your integration to only set valid configurations.

  • #13405 21e7e80 Thanks @​Marocco2! - Adds a new eagerness option for prefetch() when using experimental.clientPrerender

    With the experimental clientPrerender flag enabled, you can use the eagerness option on prefetch() to suggest to the browser how eagerly it should prefetch/prerender link targets.

... (truncated)

Changelog

Sourced from astro's changelog.

5.6.1

Patch Changes

5.6.0

Minor Changes

  • #13403 dcb9526 Thanks @​yurynix! - Adds a new optional prerenderedErrorPageFetch option in the Adapter API to allow adapters to provide custom implementations for fetching prerendered error pages.

    Now, adapters can override the default fetch() behavior, for example when fetch() is unavailable or when you cannot call the server from itself.

    The following example provides a custom fetch for 500.html and 404.html, reading them from disk instead of performing an HTTP call:

    return app.render(request, {
      prerenderedErrorPageFetch: async (url: string): Promise<Response> => {
        if (url.includes("/500")) {
            const content = await fs.promises.readFile("500.html", "utf-8");
            return new Response(content, {
              status: 500,
              headers: { "Content-Type": "text/html" },
            });
        }
        const content = await fs.promises.readFile("404.html", "utf-8");
          return new Response(content, {
            status: 404,
            headers: { "Content-Type": "text/html" },
          });
    });

    If no value is provided, Astro will fallback to its default behavior for fetching error pages.

    Read more about this feature in the Adapter API reference.

  • #13482 ff257df Thanks @​florian-lefebvre! - Updates Astro config validation to also run for the Integration API. An error log will specify which integration is failing the validation.

    Now, Astro will first validate the user configuration, then validate the updated configuration after each integration astro:config:setup hook has run. This means updateConfig() calls will no longer accept invalid configuration.

    This fixes a situation where integrations could potentially update a project with a malformed configuration. These issues should now be caught and logged so that you can update your integration to only set valid configurations.

  • #13405 21e7e80 Thanks @​Marocco2! - Adds a new eagerness option for prefetch() when using experimental.clientPrerender

... (truncated)

Commits

Updates sharp from 0.33.5 to 0.34.0

Commits
  • ddc1eb8 Release v0.34.0 (part 2 - see c26e67c)
  • c26e67c Release v0.34.0
  • a00ee26 Prevent glib assertions and checks #4351
  • 6dfb60c Prevent prebuilt Linux sharp binaries from exporting symbols
  • dbb7606 Prerelease v0.34.0-rc.1
  • 031c808 Expose erode and dilate operations #4243
  • 03e1b19 Allow wide-gamut HEIF output at higher bitdepths #4344
  • 3e41f8b Non-animated GIF output defaults to no-loop #3394
  • 3fd818c Prevent use of linux-x64 binaries with v1 microarchitecture
  • d419aba Docs: add note about electron-forge and Webpack combo
  • Additional commits viewable in compare view

Updates daisyui from 4.12.23 to 5.0.16

Release notes

Sourced from daisyui's releases.

v5.0.16

🌼 Read changelog: https://daisyui.com/docs/changelog/

📦 Install this update:

npm i -D daisyui@5.0.16

💚 Thank you for using daisyUI!

v5.0.15

🌼 Read changelog: https://daisyui.com/docs/changelog/

📦 Install this update:

npm i -D daisyui@5.0.15

💚 Thank you for using daisyUI!

v5.0.14

🌼 Read changelog: https://daisyui.com/docs/changelog/

📦 Install this update:

npm i -D daisyui@5.0.14

💚 Thank you for using daisyUI!

v5.0.13

🌼 Read changelog: https://daisyui.com/docs/changelog/

📦 Install this update:

npm i -D daisyui@5.0.13

💚 Thank you for using daisyUI!

v5.0.12

🌼 Read changelog: https://daisyui.com/docs/changelog/

📦 Install this update:

npm i -D daisyui@5.0.12

💚 Thank you for using daisyUI!

... (truncated)

Changelog

Sourced from daisyui's changelog.

5.0.16 (2025-04-07)

5.0.15 (2025-04-07)

5.0.14 (2025-04-07)

5.0.13 (2025-04-06)

Bug Fixes

  • checkbox style inside tab-content. closes: #3753 (fe16212)

5.0.12 (2025-04-02)

Bug Fixes

  • icon position of date input inside input wrapper on chromium-based (#3725) closes: #3708 (b1560a6)

5.0.11 (2025-04-02)

Bug Fixes

  • card image-full radius color bleed. closes: #3734 (d6fb204)

5.0.10 (2025-04-02)

Bug Fixes

  • :not(:has()) selectors getting prefix. closes: #3739 (771b6eb)

5.0.9 (2025-03-21)

Bug Fixes

5.0.8 (2025-03-21)

Bug Fixes

  • alert unwanted gap if there's one child only. closes: #3702 (6d3eb06)

5.0.7 (2025-03-21)

... (truncated)

Commits
  • edbcfce chore(release): 5.0.16
  • 66c8a71 fix tabs-box render issue on Nuxt. closes: #3724
  • 35f1650 fix: collapse-content transition duplicate, transition typo (#3761)
  • 14b286b chore(release): 5.0.15
  • bbf67d2 dropdown-center RTL, modal gutter, collapse-content animation
  • 4b207ad chore(release): 5.0.14
  • 387dead workaround for lightningcss issue of color mix in &:before. closes: #3758, ...
  • ac1a45c chore(release): 5.0.13
  • fe16212 fix: checkbox style inside tab-content. closes: #3753
  • f59a004 chore(release): 5.0.12
  • 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 npm group with 4 updates in the / directory: [@astrojs/tailwind](https://github.com/withastro/astro/tree/HEAD/packages/integrations/tailwind), [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro), [sharp](https://github.com/lovell/sharp) and [daisyui](https://github.com/saadeghi/daisyui/tree/HEAD/packages/daisyui).


Updates `@astrojs/tailwind` from 6.0.0 to 6.0.2
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/@astrojs/tailwind@6.0.2/packages/integrations/tailwind/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/tailwind@6.0.2/packages/integrations/tailwind)

Updates `astro` from 5.2.3 to 5.6.1
- [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.6.1/packages/astro)

Updates `sharp` from 0.33.5 to 0.34.0
- [Release notes](https://github.com/lovell/sharp/releases)
- [Commits](lovell/sharp@v0.33.5...v0.34.0)

Updates `daisyui` from 4.12.23 to 5.0.16
- [Release notes](https://github.com/saadeghi/daisyui/releases)
- [Changelog](https://github.com/saadeghi/daisyui/blob/master/CHANGELOG.md)
- [Commits](https://github.com/saadeghi/daisyui/commits/v5.0.16/packages/daisyui)

---
updated-dependencies:
- dependency-name: "@astrojs/tailwind"
  dependency-version: 6.0.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: astro
  dependency-version: 5.6.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: sharp
  dependency-version: 0.34.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: daisyui
  dependency-version: 5.0.16
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm
...

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 Apr 7, 2025
@kjy5
Copy link
Member

kjy5 commented Oct 7, 2025

@dependabot rebase

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 7, 2025

Looks like this PR is already up-to-date with main! If you'd still like to recreate it from scratch, overwriting any edits, you can request @dependabot recreate.

@kjy5 kjy5 closed this Oct 7, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 7, 2025

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot dependabot bot deleted the dependabot/npm_and_yarn/npm-8afcfa469c branch October 7, 2025 17:14
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.

2 participants