Skip to content

chore(lapis-docs): bump the minorandpatch group in /lapis-docs with 4 updates - #1829

Open
dependabot[bot] wants to merge 2 commits into
mainfrom
dependabot/npm_and_yarn/lapis-docs/minorandpatch-e76ad47812
Open

chore(lapis-docs): bump the minorandpatch group in /lapis-docs with 4 updates#1829
dependabot[bot] wants to merge 2 commits into
mainfrom
dependabot/npm_and_yarn/lapis-docs/minorandpatch-e76ad47812

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 24, 2026

Copy link
Copy Markdown
Contributor

Bumps the minorandpatch group in /lapis-docs with 4 updates: astro, daisyui, swagger-ui and swagger-ui-react.

Updates astro from 7.2.2 to 7.2.4

Release notes

Sourced from astro's releases.

astro@7.2.4

Patch Changes

  • #17747 a90ff66 Thanks @​Princesseuh! - Fixes builds hanging when an image file is malformed

  • #17701 05763a0 Thanks @​matthewp! - Fixes base path stripping to respect path-segment boundaries. With a configured base such as /docs, a request like /docs-archive/page is no longer treated as being under the base, so routing and context.url.pathname now agree on the same pathname.

  • #17742 70b449d Thanks @​Kjubikstronk! - Fixes astro build throwing TypeError: Missing parameter for dynamic routes when build.format: 'preserve' and trailingSlash: 'always' are used together. Stripping the framework-injected .html suffix dropped the trailing slash that the compiled route pattern requires, so the route no longer matched itself and its params resolved as empty.

  • #17703 771b0a9 Thanks @​astrobot-houston! - Fixes Astro.site always being undefined when rendering components via the Container API, even when site is set in astroConfig

  • Updated dependencies [05763a0, bc171af]:

    • @​astrojs/internal-helpers@​0.10.4
    • @​astrojs/markdown-satteri@​0.3.7
    • @​astrojs/markdown-remark@​7.2.4

astro@7.2.3

Patch Changes

  • #17724 97140b2 Thanks @​ematipico! - Fixes an issue where Astro could run out of memory when experimental.collectionStorage is set to chunked and there are multiple concurrent updates to the same collection.

  • #17636 51723b1 Thanks @​matthewp! - Fixes the dev server sometimes matching against stale routes after pages were added, removed, or renamed, requiring a dev server restart to pick up the change

  • #17636 51723b1 Thanks @​matthewp! - Fixes the composable request helpers (astro/fetch) throwing an error when used on a request that had been rewritten with Astro.rewrite() or next()

  • #17636 51723b1 Thanks @​matthewp! - Refactors Astro's internal server-side request handling. This is an internal change: all documented public APIs, including App and NodeApp, keep their existing signatures and behavior.

    The undocumented internal app.pipeline property and the AppPipeline export from astro/app have been removed. Adapters that used app.pipeline.getLogger() to wait for the configured log destination can call the new app.getLogger() instead.

    As a result of this refactor, new FetchState(request) from astro/fetch now works anywhere inside a built Astro server — including custom src/fetch.ts entrypoints — without the request needing to first pass through app.render(). Previously this threw an error, breaking patterns like the Cloudflare adapter's advanced custom-worker setup.

  • #17723 c3b9aed Thanks @​florian-lefebvre! - Fixes a link in font providers JSDoc annotations

  • #17699 e28d227 Thanks @​ArmandPhilippot! - Fixes several documentation issues related to the JSDoc for configuration options.

    • When hovering over the server and fonts options, the JSDoc for the nested options was displayed instead of the JSDoc for the top-level property.
    • Two i18n configuration options were being used incorrectly in the examples.
    • The indentation of some code blocks was broken on hover.
  • #17572 2066f39 Thanks @​matthewp! - Fixes a crash when a request arrives with a malformed port in the Host header (for example example.com:65536 or example.com:8080:8080). Such a host made the constructed request URL invalid, and the fallback that was meant to recover reused the same invalid host and threw again. The request URL now degrades to a host the server controls when the incoming host cannot be parsed, so the request is handled instead of erroring.

  • #17685 9f15609 Thanks @​astrobot-houston! - Fixes a dev server error where an SSR full reload triggered by a third-party Vite plugin (such as @tailwindcss/vite) could fail with Failed to load url astro:server-app.js

  • #17636 51723b1 Thanks @​matthewp! - Improves error handling for custom log destinations. When the configured logger fails to load, Astro now reports the error and continues with the default console logger instead of failing the first request.

  • #17631 cf29bec Thanks @​matthewp! - Fixes getCollection() and getEntry() throwing DataCloneError when a collection schema transform returns a Temporal.PlainDate or other class instance.

  • Updated dependencies [8c193f6]:

    • @​astrojs/internal-helpers@​0.10.3
    • @​astrojs/markdown-remark@​7.2.3

... (truncated)

Changelog

Sourced from astro's changelog.

7.2.4

Patch Changes

  • #17747 a90ff66 Thanks @​Princesseuh! - Fixes builds hanging when an image file is malformed

  • #17701 05763a0 Thanks @​matthewp! - Fixes base path stripping to respect path-segment boundaries. With a configured base such as /docs, a request like /docs-archive/page is no longer treated as being under the base, so routing and context.url.pathname now agree on the same pathname.

  • #17742 70b449d Thanks @​Kjubikstronk! - Fixes astro build throwing TypeError: Missing parameter for dynamic routes when build.format: 'preserve' and trailingSlash: 'always' are used together. Stripping the framework-injected .html suffix dropped the trailing slash that the compiled route pattern requires, so the route no longer matched itself and its params resolved as empty.

  • #17703 771b0a9 Thanks @​astrobot-houston! - Fixes Astro.site always being undefined when rendering components via the Container API, even when site is set in astroConfig

  • Updated dependencies [05763a0, bc171af]:

    • @​astrojs/internal-helpers@​0.10.4
    • @​astrojs/markdown-satteri@​0.3.7
    • @​astrojs/markdown-remark@​7.2.4

7.2.3

Patch Changes

  • #17724 97140b2 Thanks @​ematipico! - Fixes an issue where Astro could run out of memory when experimental.collectionStorage is set to chunked and there are multiple concurrent updates to the same collection.

  • #17636 51723b1 Thanks @​matthewp! - Fixes the dev server sometimes matching against stale routes after pages were added, removed, or renamed, requiring a dev server restart to pick up the change

  • #17636 51723b1 Thanks @​matthewp! - Fixes the composable request helpers (astro/fetch) throwing an error when used on a request that had been rewritten with Astro.rewrite() or next()

  • #17636 51723b1 Thanks @​matthewp! - Refactors Astro's internal server-side request handling. This is an internal change: all documented public APIs, including App and NodeApp, keep their existing signatures and behavior.

    The undocumented internal app.pipeline property and the AppPipeline export from astro/app have been removed. Adapters that used app.pipeline.getLogger() to wait for the configured log destination can call the new app.getLogger() instead.

    As a result of this refactor, new FetchState(request) from astro/fetch now works anywhere inside a built Astro server — including custom src/fetch.ts entrypoints — without the request needing to first pass through app.render(). Previously this threw an error, breaking patterns like the Cloudflare adapter's advanced custom-worker setup.

  • #17723 c3b9aed Thanks @​florian-lefebvre! - Fixes a link in font providers JSDoc annotations

  • #17699 e28d227 Thanks @​ArmandPhilippot! - Fixes several documentation issues related to the JSDoc for configuration options.

    • When hovering over the server and fonts options, the JSDoc for the nested options was displayed instead of the JSDoc for the top-level property.
    • Two i18n configuration options were being used incorrectly in the examples.
    • The indentation of some code blocks was broken on hover.
  • #17572 2066f39 Thanks @​matthewp! - Fixes a crash when a request arrives with a malformed port in the Host header (for example example.com:65536 or example.com:8080:8080). Such a host made the constructed request URL invalid, and the fallback that was meant to recover reused the same invalid host and threw again. The request URL now degrades to a host the server controls when the incoming host cannot be parsed, so the request is handled instead of erroring.

  • #17685 9f15609 Thanks @​astrobot-houston! - Fixes a dev server error where an SSR full reload triggered by a third-party Vite plugin (such as @tailwindcss/vite) could fail with Failed to load url astro:server-app.js

  • #17636 51723b1 Thanks @​matthewp! - Improves error handling for custom log destinations. When the configured logger fails to load, Astro now reports the error and continues with the default console logger instead of failing the first request.

  • #17631 cf29bec Thanks @​matthewp! - Fixes getCollection() and getEntry() throwing DataCloneError when a collection schema transform returns a Temporal.PlainDate or other class instance.

  • Updated dependencies [8c193f6]:

... (truncated)

Commits
  • 8a31cba [ci] release (#17739)
  • aeda810 [ci] format
  • a90ff66 fix(assets): harden vendored image-size box and entry checks (#17747)
  • 05763a0 Respect path-segment boundaries when stripping the configured base (#17701)
  • 70b449d fix(routing): keep the trailing slash when stripping an injected .html (#17742)
  • 771b0a9 fix(container): wire astroConfig.site through to the SSR manifest so Astro.si...
  • 52e6c34 [ci] release (#17691)
  • 97140b2 fix(collections): chunk writing of collections (#17724)
  • e28d227 docs: fix the code snippets in the JSDoc for the configuration options (#17699)
  • c3b9aed chore: remove unifont workaround (#17723)
  • Additional commits viewable in compare view

Updates daisyui from 5.7.17 to 5.7.20

Release notes

Sourced from daisyui's releases.

v5.7.20

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

📦 Install this update:

npm i -D daisyui@5.7.20

💚 Thank you for using daisyUI!

v5.7.19

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

📦 Install this update:

npm i -D daisyui@5.7.19

💚 Thank you for using daisyUI!

v5.7.18

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

📦 Install this update:

npm i -D daisyui@5.7.18

💚 Thank you for using daisyUI!

Changelog

Sourced from daisyui's changelog.

5.7.20 (2026-08-20)

Bug Fixes

  • text-rotate - selector targets direct children, to avoid style leaking (#4682) (44856dc)

5.7.19 (2026-08-19)

Bug Fixes

5.7.18 (2026-08-18)

Bug Fixes

  • don't force dock layout onto script/style/template children (#4679) (b5a1209)
Commits
  • 2fed4ee chore(release): 5.7.20
  • 44856dc fix: text-rotate - selector targets direct children, to avoid style leaking (...
  • 44dd5f5 Bun 1.4 compatibility
  • 6681c97 chore(release): 5.7.19
  • 3b99c0c fix: alert grid (#4684)
  • f6752f8 chore(release): 5.7.18
  • b5a1209 fix: don't force dock layout onto script/style/template children (#4679)
  • See full diff in compare view

Updates swagger-ui from 5.32.13 to 5.32.14

Release notes

Sourced from swagger-ui's releases.

v5.32.14

5.32.14 (2026-08-18)

Bug Fixes

  • a11y: add accessible names for buttons (d5a04d5)
  • build: include license and source map in dist (#10979) (7fb32b5), closes #8317
  • dark-mode: indicate dark color-scheme for native browser controls (#10844) (7cf5114)

Huge thanks to our contributors who made this release happen: @​moskvin, @​tstarling, and @​yogeshwaran-c

Commits
  • 6e8ce24 chore(release): cut the 5.32.14 release
  • fefb1df chore(build): add TypeScript support to toolchain (#11000)
  • 050e996 chore(docs): consolidate swagger-client naming (#11015)
  • 7cf5114 fix(dark-mode): indicate dark color-scheme for native browser controls (#10844)
  • 1b556c9 chore(deps): bump aquasecurity/trivy-action (#11014)
  • be2e4b0 chore(deps): bump swagger-client to 3.38.0 (#11009)
  • 3d9d091 chore(deps-dev): bump cypress, @​pmmmwh/react-refresh-webpack-plugin (#11008)
  • 2e906d5 chore(deps): bump react-redux from 9.2.0 to 9.3.0 (#11005)
  • d5a04d5 fix(a11y): add accessible names for buttons
  • 0828bda chore(deps-dev): bump autoprefixer from 10.4.21 to 10.5.4 (#11004)
  • Additional commits viewable in compare view

Updates swagger-ui-react from 5.32.13 to 5.32.14

Release notes

Sourced from swagger-ui-react's releases.

v5.32.14

5.32.14 (2026-08-18)

Bug Fixes

  • a11y: add accessible names for buttons (d5a04d5)
  • build: include license and source map in dist (#10979) (7fb32b5), closes #8317
  • dark-mode: indicate dark color-scheme for native browser controls (#10844) (7cf5114)

Huge thanks to our contributors who made this release happen: @​moskvin, @​tstarling, and @​yogeshwaran-c

Commits
  • 6e8ce24 chore(release): cut the 5.32.14 release
  • fefb1df chore(build): add TypeScript support to toolchain (#11000)
  • 050e996 chore(docs): consolidate swagger-client naming (#11015)
  • 7cf5114 fix(dark-mode): indicate dark color-scheme for native browser controls (#10844)
  • 1b556c9 chore(deps): bump aquasecurity/trivy-action (#11014)
  • be2e4b0 chore(deps): bump swagger-client to 3.38.0 (#11009)
  • 3d9d091 chore(deps-dev): bump cypress, @​pmmmwh/react-refresh-webpack-plugin (#11008)
  • 2e906d5 chore(deps): bump react-redux from 9.2.0 to 9.3.0 (#11005)
  • d5a04d5 fix(a11y): add accessible names for buttons
  • 0828bda chore(deps-dev): bump autoprefixer from 10.4.21 to 10.5.4 (#11004)
  • 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 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 minorandpatch group in /lapis-docs with 4 updates: [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro), [daisyui](https://github.com/saadeghi/daisyui/tree/HEAD/packages/daisyui), [swagger-ui](https://github.com/swagger-api/swagger-ui) and [swagger-ui-react](https://github.com/swagger-api/swagger-ui).


Updates `astro` from 7.2.2 to 7.2.4
- [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@7.2.4/packages/astro)

Updates `daisyui` from 5.7.17 to 5.7.20
- [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.7.20/packages/daisyui)

Updates `swagger-ui` from 5.32.13 to 5.32.14
- [Release notes](https://github.com/swagger-api/swagger-ui/releases)
- [Commits](swagger-api/swagger-ui@v5.32.13...v5.32.14)

Updates `swagger-ui-react` from 5.32.13 to 5.32.14
- [Release notes](https://github.com/swagger-api/swagger-ui/releases)
- [Commits](swagger-api/swagger-ui@v5.32.13...v5.32.14)

---
updated-dependencies:
- dependency-name: astro
  dependency-version: 7.2.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: daisyui
  dependency-version: 5.7.20
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: swagger-ui
  dependency-version: 5.32.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: swagger-ui-react
  dependency-version: 5.32.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
...

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 Aug 24, 2026
@vercel

vercel Bot commented Aug 24, 2026

Copy link
Copy Markdown

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

Project Deployment Actions Updated (UTC)
lapis Ready Ready Preview Aug 25, 2026 9:13am

Request Review

@fengelniederhammer

Copy link
Copy Markdown
Contributor

@copilot fix formatting

Co-authored-by: fengelniederhammer <92720311+fengelniederhammer@users.noreply.github.com>

Copilot AI commented Aug 25, 2026

Copy link
Copy Markdown

@copilot fix formatting

Fixed in 5a2dedf — ran prettier on package-lock.json.

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