Skip to content

chore(lapis-docs): bump the minorandpatch group across 1 directory with 6 updates - #1840

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/lapis-docs/minorandpatch-6b438d6dc0
Closed

chore(lapis-docs): bump the minorandpatch group across 1 directory with 6 updates#1840
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/lapis-docs/minorandpatch-6b438d6dc0

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

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

Updates @astrojs/starlight from 0.41.7 to 0.42.0

Release notes

Sourced from @​astrojs/starlight's releases.

@​astrojs/starlight@​0.42.0

Minor Changes

  • #3572 292fb17 Thanks @​HiDeoo! - Distributes package as JavaScript files with dedicated type declaration files instead of TypeScript source files.

  • #4121 2623ae6 Thanks @​delucis! - Simplifies markup for Starlight’s mobile menu toggle

    ⚠️ Potentially breaking change: If you use a theme plugin, custom styles, or component overrides targeting the MobileMenuToggle button or PageFrame components, you may need to adjust these for the new markup. The button is no longer wrapped in a <starlight-menu-button> custom element and no longer uses the aria-expanded attribute. Instead, you can use the .sl-menu-button class name to target the button and the :popover-open pseudo-class to style the menu open state specifically.

    In the following example, custom styles for the menu button are updated for the new approach:

    - starlight-menu-button button {
    + .sl-menu-button {
      color: var(--sl-color-text);
    }
    
    starlight-menu-button[aria-expanded='true'] button {
    
    
    .sl-menu-button:has(~ :popover-open) {
    color: var(--sl-color-text-accent-high);
    }

See MobileMenuToggle.astro and PageFrame.astro on GitHub for the full source code of the updated components.

  • #3572 292fb17 Thanks @​HiDeoo! - Removes the tagline configuration option, which was never used.

    If your configuration included a tagline option, you can safely remove it without any replacement.

  • #4134 6135f01 Thanks @​HiDeoo! - Updates internal @astrojs/mdx, @astrojs/markdown-satteri, and satteri dependencies.

    ⚠️ BREAKING CHANGE: The following minimum versions are now required:

    • astro v7.2.10 or later
    • @astrojs/markdown-satteri 0.4.0 or later (if you use it)
    • @astrojs/markdown-remark 7.3.0 or later (if you use it)

    Please update Starlight and Astro together:

    npx @astrojs/upgrade
  • #4121 2623ae6 Thanks @​delucis! - Refactors Starlight’s mobile menu toggle to work when JavaScript fails or is disabled

    ⚠️ BREAKING CHANGE: This release drops official support for Chromium-based browsers prior to version 116 (released August 2023), Safari-based browsers prior to version 17.0 (released September 2023), and Firefox prior to version 125 (released April 2024). You can find a list of currently supported browsers and their versions using this browserslist query.

    This change also removes the data-mobile-menu-expanded attribute, which was previously added to <body> while the mobile menu is open. If you have custom code that was depending on this attribute, you will need to update it to use a new selector to check if the mobile menu is open.

    In the following example, a custom background colour for the site header while the menu is open is updated for the new approach:

  • ... (truncated)

    Changelog

    Sourced from @​astrojs/starlight's changelog.

    0.42.0

    Minor Changes

    • #3572 292fb17 Thanks @​HiDeoo! - Distributes package as JavaScript files with dedicated type declaration files instead of TypeScript source files.

    • #4121 2623ae6 Thanks @​delucis! - Simplifies markup for Starlight’s mobile menu toggle

      ⚠️ Potentially breaking change: If you use a theme plugin, custom styles, or component overrides targeting the MobileMenuToggle button or PageFrame components, you may need to adjust these for the new markup. The button is no longer wrapped in a <starlight-menu-button> custom element and no longer uses the aria-expanded attribute. Instead, you can use the .sl-menu-button class name to target the button and the :popover-open pseudo-class to style the menu open state specifically.

      In the following example, custom styles for the menu button are updated for the new approach:

      - starlight-menu-button button {
      + .sl-menu-button {
        color: var(--sl-color-text);
      }
      
      starlight-menu-button[aria-expanded='true'] button {
      
      
      .sl-menu-button:has(~ :popover-open) {
      color: var(--sl-color-text-accent-high);
      }

    See MobileMenuToggle.astro and PageFrame.astro on GitHub for the full source code of the updated components.

  • #3572 292fb17 Thanks @​HiDeoo! - Removes the tagline configuration option, which was never used.

    If your configuration included a tagline option, you can safely remove it without any replacement.

  • #4134 6135f01 Thanks @​HiDeoo! - Updates internal @astrojs/mdx, @astrojs/markdown-satteri, and satteri dependencies.

    ⚠️ BREAKING CHANGE: The following minimum versions are now required:

    • astro v7.2.10 or later
    • @astrojs/markdown-satteri 0.4.0 or later (if you use it)
    • @astrojs/markdown-remark 7.3.0 or later (if you use it)

    Please update Starlight and Astro together:

    npx @astrojs/upgrade
  • #4121 2623ae6 Thanks @​delucis! - Refactors Starlight’s mobile menu toggle to work when JavaScript fails or is disabled

    ⚠️ BREAKING CHANGE: This release drops official support for Chromium-based browsers prior to version 116 (released August 2023), Safari-based browsers prior to version 17.0 (released September 2023), and Firefox prior to version 125 (released April 2024). You can find a list of currently supported browsers and their versions using this browserslist query.

    This change also removes the data-mobile-menu-expanded attribute, which was previously added to <body> while the mobile menu is open. If you have custom code that was depending on this attribute, you will need to update it to use a new selector to check if the mobile menu is open.

  • ... (truncated)

    Commits

    Updates astro from 7.2.2 to 7.3.1

    Release notes

    Sourced from astro's releases.

    astro@7.3.1

    Patch Changes

    astro@7.3.0

    Minor Changes

    • #17767 ce7c91f Thanks @​astro-factory! - Adds --ignore-lock flag to astro preview, allowing multiple preview servers to run simultaneously on different ports. This is useful for E2E testing workflows (e.g., Playwright) that need to run several preview servers at once.

    • #17818 c0b6581 Thanks @​florian-lefebvre! - Adds a logger parameter to image services hooks

      Custom image services now receive Astro's runtime logger as an extra argument. Messages logged with it are routed through the destination configured in logger and respect your log level, instead of being written straight to the console:

      import type { LocalImageService } from 'astro';
      const service: LocalImageService = {
      // ...
      async transform(inputBuffer, transform, imageConfig, logger) {
      logger.warn(Could not optimize &quot;${transform.src}&quot;. Passing it through unchanged.);
      return { data: inputBuffer, format: 'png' };
      },
      };

      Astro's built-in Sharp service now uses this logger for the warnings it emits when it encounters an unexpected or unsupported source format.

    • #17818 c0b6581 Thanks @​florian-lefebvre! - Adds logger to the context object passed to cache providers

      Custom cache providers now receive Astro's runtime logger on the context passed to onRequest(). Messages logged with it are routed through the destination configured in logger and respect your log level, instead of being written straight to the console:

      import type { CacheProvider } from 'astro';
      const provider: CacheProvider = {
      name: 'my-cache',
      async onRequest({ request, url, logger }, next) {
      logger.warn(Skipping cache for ${url.pathname} because the response sets a cookie.);
      return next();
      },
      // ...
      };

      Astro's built-in memoryCache() provider now uses this logger for the warnings it emits when it skips caching a response that sets cookies, and when a background revalidation fails.

    Patch Changes

    • #17818 c0b6581 Thanks @​florian-lefebvre! - Updates Astro's remaining internal warnings and errors to be written through the configured logger instead of directly to the console, when possible

    ... (truncated)

    Changelog

    Sourced from astro's changelog.

    7.3.1

    Patch Changes

    7.3.0

    Minor Changes

    • #17767 ce7c91f Thanks @​astro-factory! - Adds --ignore-lock flag to astro preview, allowing multiple preview servers to run simultaneously on different ports. This is useful for E2E testing workflows (e.g., Playwright) that need to run several preview servers at once.

    • #17818 c0b6581 Thanks @​florian-lefebvre! - Adds a logger parameter to image services hooks

      Custom image services now receive Astro's runtime logger as an extra argument. Messages logged with it are routed through the destination configured in logger and respect your log level, instead of being written straight to the console:

      import type { LocalImageService } from 'astro';
      const service: LocalImageService = {
      // ...
      async transform(inputBuffer, transform, imageConfig, logger) {
      logger.warn(Could not optimize &quot;${transform.src}&quot;. Passing it through unchanged.);
      return { data: inputBuffer, format: 'png' };
      },
      };

      Astro's built-in Sharp service now uses this logger for the warnings it emits when it encounters an unexpected or unsupported source format.

    • #17818 c0b6581 Thanks @​florian-lefebvre! - Adds logger to the context object passed to cache providers

      Custom cache providers now receive Astro's runtime logger on the context passed to onRequest(). Messages logged with it are routed through the destination configured in logger and respect your log level, instead of being written straight to the console:

      import type { CacheProvider } from 'astro';
      const provider: CacheProvider = {
      name: 'my-cache',
      async onRequest({ request, url, logger }, next) {
      logger.warn(Skipping cache for ${url.pathname} because the response sets a cookie.);
      return next();
      },
      // ...
      };

      Astro's built-in memoryCache() provider now uses this logger for the warnings it emits when it skips caching a response that sets cookies, and when a background revalidation fails.

    Patch Changes

    ... (truncated)

    Commits

    Updates daisyui from 5.7.17 to 5.7.28

    Release notes

    Sourced from daisyui's releases.

    v5.7.28

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

    📦 Install this update:

    npm i -D daisyui@5.7.28

    💚 Thank you for using daisyUI!

    v5.7.27

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

    📦 Install this update:

    npm i -D daisyui@5.7.27

    💚 Thank you for using daisyUI!

    v5.7.26

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

    📦 Install this update:

    npm i -D daisyui@5.7.26

    💚 Thank you for using daisyUI!

    v5.7.25

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

    📦 Install this update:

    npm i -D daisyui@5.7.25

    💚 Thank you for using daisyUI!

    v5.7.24

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

    📦 Install this update:

    npm i -D daisyui@5.7.24

    💚 Thank you for using daisyUI!

    ... (truncated)

    Changelog

    Sourced from daisyui's changelog.

    5.7.28 (2026-09-03)

    Bug Fixes

    • breadcrumbs item focus ring being cropped (#4724) (cc339e7)

    5.7.27 (2026-09-01)

    Bug Fixes

    • join item border overlap when there's a wrapper (#4719) (96fd80a)

    5.7.26 (2026-09-01)

    Bug Fixes

    5.7.25 (2026-09-01)

    Bug Fixes

    • checkbox - add style for aria-checked="mixed" like :indeterminate (#4713) (5e5b8b4)

    5.7.24 (2026-09-01)

    Bug Fixes

    5.7.23 (2026-08-31)

    Bug Fixes

    • menu-paged summary hides children (badge, icon, etc) when details is open (#4710) (4929505)

    5.7.22 (2026-08-24)

    Bug Fixes

    5.7.21 (2026-08-23)

    Bug Fixes

    • FAB selector style leack for fab-flower actions (#4683) (e4e6419)

    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

    ... (truncated)

    Commits

    Updates sharp from 0.35.3 to 0.35.4

    Release notes

    Sourced from sharp's releases.

    v0.35.4

    https://github.com/lovell/sharp-libvips/releases/tag/v1.3.3

    v0.35.4-rc.0

    Commits
    • 7f1a0a2 Release v0.35.4
    • f927818 Upgrade to sharp-libvips v1.3.3
    • e802092 Prerelease v0.35.4-rc.0
    • e13eb2f CI: Fix wasm32 build (#4589)
    • a82a0b3 Upgrade to libvips v8.18.6
    • 8044fe4 Bound resize dimensions to coordinate limit
    • 147f859 Docs: changelog entries for #4578 #4584
    • ee5bfb8 Tests: use yauzl directly rather than via extract-zip wrapper
    • 7a77889 Bump uraimo/run-on-arch-action from 3.1.0 to 3.2.0 (#4588)
    • ea5bef2 Improve support for input Streams finishing before output is requested (#4584)
    • Additional commits viewable in compare view

    Updates swagger-ui from 5.32.13 to 5.32.15

    Release notes

    Sourced from swagger-ui's releases.

    v5.32.15

    5.32.15 (2026-09-04)

    Bug Fixes

    • oas32: include query in default supportedSubmitMethods (#11021) (c26e573)
    • use scoped DOMPurify instance to avoid mutating global (#11029) (182fb83)

    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
    • eb37d16 chore(release): cut the 5.32.15 release
    • 09de8cd chore(deps-dev): bump browserslist from 4.28.1 to 4.28.8 (#11032)
    • c0ebd36 chore(deps-dev): bump fast-uri from 3.1.5 to 3.1.7 (#11031)
    • 4a28782 chore(deps): bump postcss-selector-parser from 7.1.0 to 7.1.5 (#11030)
    • 182fb83 fix: use scoped DOMPurify instance to avoid mutating global (#11029)
    • d715d6c refactor(deep-linking): convert layout to TypeScript and fix license issue (#...
    • 7757ca4 chore(deps): bump immutable from 4.3.9 to 5.1.9 (#11025)
    • c26e573 fix(oas32): include query in default supportedSubmitMethods (#11021)
    • 0c10b51 chore(deps-dev): bump cypress from 15.20.0 to 15.20.1 (#11012)
    • f341af5 chore(deps): bump nginx from 1.31.3-alpine to 1.31.4-alpine (#11020)
    • Additional commits viewable in compare view

    Updates swagger-ui-react from 5.32.13 to 5.32.15

    Release notes

    Sourced from swagger-ui-react's releases.

    v5.32.15

    5.32.15 (2026-09-04)

    Bug Fixes

    • oas32: include query in default supportedSubmitMethods (#11021) (c26e573)
    • use scoped DOMPurify instance to avoid mutating global (#11029) (182fb83)

    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
    • eb37d16 chore(release): cut the 5.32.15 release
    • 09de8cd chore(deps-dev): bump browserslist from 4.28.1 to 4.28.8 (#11032)
    • c0ebd36 chore(deps-dev): bump fast-uri from 3.1.5 to 3.1.7 (#11031)
    • 4a28782 chore(deps): bump postcss-selector-parser from 7.1.0 to 7.1.5 (#11030)
    • 182fb83 fix: use scoped DOMPurify instance to avoid mutating global (#11029)
    • d715d6c refactor(deep-linking): convert layout to TypeScript and fix license issue (#...
    • 7757ca4 chore(deps): bump immutable from 4.3.9 to 5.1.9 (#11025)
    • c26e573 fix(oas32): include query in default supportedSubmitMethods (#11021)
    • 0c10b51 chore(deps-dev): bump cypress from 15.20.0 to 15.20.1 (#11012)
    • f341af5 chore(deps): bump nginx from 1.31.3-alpine to 1.31.4-alpine (#11020)
    • Additional commits viewable in compare view

    @dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Aug 31, 2026
    @vercel

    vercel Bot commented Aug 31, 2026

    Copy link
    Copy Markdown

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

    Project Deployment Actions Updated
    lapis Error Error Sep 7, 2026 7:55pm UTC

    Request Review

    …th 6 updates
    
    Bumps the minorandpatch group with 4 updates in the /lapis-docs directory: [@astrojs/starlight](https://github.com/withastro/starlight/tree/HEAD/packages/starlight), [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 `@astrojs/starlight` from 0.41.7 to 0.42.0
    - [Release notes](https://github.com/withastro/starlight/releases)
    - [Changelog](https://github.com/withastro/starlight/blob/main/packages/starlight/CHANGELOG.md)
    - [Commits](https://github.com/withastro/starlight/commits/@astrojs/starlight@0.42.0/packages/starlight)
    
    Updates `astro` from 7.2.2 to 7.3.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@7.3.1/packages/astro)
    
    Updates `daisyui` from 5.7.17 to 5.7.28
    - [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.28/packages/daisyui)
    
    Updates `sharp` from 0.35.3 to 0.35.4
    - [Release notes](https://github.com/lovell/sharp/releases)
    - [Commits](lovell/sharp@v0.35.3...v0.35.4)
    
    Updates `swagger-ui` from 5.32.13 to 5.32.15
    - [Release notes](https://github.com/swagger-api/swagger-ui/releases)
    - [Commits](swagger-api/swagger-ui@v5.32.13...v5.32.15)
    
    Updates `swagger-ui-react` from 5.32.13 to 5.32.15
    - [Release notes](https://github.com/swagger-api/swagger-ui/releases)
    - [Commits](swagger-api/swagger-ui@v5.32.13...v5.32.15)
    
    ---
    updated-dependencies:
    - dependency-name: "@astrojs/starlight"
      dependency-version: 0.41.10
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: minorandpatch
    - dependency-name: astro
      dependency-version: 7.2.9
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: minorandpatch
    - dependency-name: daisyui
      dependency-version: 5.7.22
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: minorandpatch
    - dependency-name: sharp
      dependency-version: 0.35.4
      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 force-pushed the dependabot/npm_and_yarn/lapis-docs/minorandpatch-6b438d6dc0 branch from 6f602a4 to 73e0963 Compare September 7, 2026 19:55
    @dependabot @github

    dependabot Bot commented on behalf of github Sep 8, 2026

    Copy link
    Copy Markdown
    Contributor Author

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

    @dependabot dependabot Bot closed this Sep 8, 2026
    @dependabot
    dependabot Bot deleted the dependabot/npm_and_yarn/lapis-docs/minorandpatch-6b438d6dc0 branch September 8, 2026 11:42
    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.

    0 participants