An open index of dependabot pull requests across open source projects.

⬆️ Bump the minor-updates group across 1 directory with 7 updates

Merged
Number: #34
Type: Pull Request
State: Merged
Author: dependabot[bot] dependabot[bot]
Association: Contributor
Comments: 0
Created: June 16, 2025 at 12:23 PM UTC
(4 months ago)
Updated: July 03, 2025 at 04:21 AM UTC
(3 months ago)
Merged: July 03, 2025 at 04:21 AM UTC
(3 months ago)
by Schneegans
Time to Close: 17 days
Labels:
dependencies javascript
Description:

Bumps the minor-updates group with 7 updates in the / directory:

Package From To
@astrojs/markdown-remark 6.3.1 6.3.2
@astrojs/starlight 0.34.3 0.34.4
@fontsource/neucha 5.2.5 5.2.6
@iconify-json/simple-icons 1.2.34 1.2.38
astro 5.7.13 5.9.3
sharp 0.34.1 0.34.2
sass-embedded 1.89.0 1.89.2

Updates @astrojs/markdown-remark from 6.3.1 to 6.3.2

Release notes

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

@​astrojs/markdown-remark@​6.3.2

Patch Changes

  • Updated dependencies [3c3b492]:
    • @​astrojs/prism@​3.3.0
Changelog

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

6.3.2

Patch Changes

  • Updated dependencies [3c3b492]:
    • @​astrojs/prism@​3.3.0
Commits
Maintainer changes

This version was pushed to npm by matthewp, a new releaser for @​astrojs/markdown-remark since your current version.


Updates @astrojs/starlight from 0.34.3 to 0.34.4

Release notes

Sourced from @​astrojs/starlight's releases.

@​astrojs/starlight@​0.34.4

Patch Changes

Changelog

Sourced from @​astrojs/starlight's changelog.

0.34.4

Patch Changes

Commits

Updates @fontsource/neucha from 5.2.5 to 5.2.6

Commits

Updates @iconify-json/simple-icons from 1.2.34 to 1.2.38

Commits

Updates astro from 5.7.13 to 5.9.3

Release notes

Sourced from astro's releases.

astro@5.9.3

Patch Changes

  • #13923 a9ac5ed Thanks @​ematipico! - BREAKING CHANGE to the experimental Content Security Policy (CSP) only

    Changes the behavior of experimental Content Security Policy (CSP) to now serve hashes differently depending on whether or not a page is prerendered:

    • Via the <meta> element for static pages.
    • Via the Response header content-security-policy for on-demand rendered pages.

    This new strategy allows you to add CSP content that is not supported in a <meta> element (e.g. report-uri, frame-ancestors, and sandbox directives) to on-demand rendered pages.

    No change to your project code is required as this is an implementation detail. However, this will result in a different HTML output for pages that are rendered on demand. Please check your production site to verify that CSP is working as intended.

    To keep up to date with this developing feature, or to leave feedback, visit the CSP Roadmap proposal.

  • #13926 953a249 Thanks @​ematipico! - Adds a new Astro Adapter Feature called experimentalStaticHeaders to allow your adapter to receive the Headers for rendered static pages.

    Adapters that enable support for this feature can access header values directly, affecting their handling of some Astro features such as Content Security Policy (CSP). For example, Astro will no longer serve the CSP <meta http-equiv="content-security-policy"> element in static pages to adapters with this support.

    Astro will serve the value of the header inside a map that can be retrieved from the hook astro:build:generated. Adapters can read this mapping and use their hosting headers capabilities to create a configuration file.

    A new field called experimentalRouteToHeaders will contain a map of Map<IntegrationResolvedRoute, Headers> where the Headers type contains the headers emitted by the rendered static route.

    To enable support for this experimental Astro Adapter Feature, add it to your adapterFeatures in your adapter config:

    // my-adapter.mjs
    export default function createIntegration() {
      return {
        name: '@example/my-adapter',
        hooks: {
          'astro:config:done': ({ setAdapter }) => {
            setAdapter({
              name: '@example/my-adapter',
              serverEntrypoint: '@example/my-adapter/server.js',
              adapterFeatures: {
                experimentalStaticHeaders: true,
              },
            });
          },
        },
      };
    }
    

    See the Adapter API docs for more information about providing adapter features.

  • #13697 af83b85 Thanks @​benosmac! - Fixes issues with fallback route pattern matching when i18n.routing.fallbackType is rewrite.

... (truncated)

Changelog

Sourced from astro's changelog.

5.9.3

Patch Changes

  • #13923 a9ac5ed Thanks @​ematipico! - BREAKING CHANGE to the experimental Content Security Policy (CSP) only

    Changes the behavior of experimental Content Security Policy (CSP) to now serve hashes differently depending on whether or not a page is prerendered:

    • Via the <meta> element for static pages.
    • Via the Response header content-security-policy for on-demand rendered pages.

    This new strategy allows you to add CSP content that is not supported in a <meta> element (e.g. report-uri, frame-ancestors, and sandbox directives) to on-demand rendered pages.

    No change to your project code is required as this is an implementation detail. However, this will result in a different HTML output for pages that are rendered on demand. Please check your production site to verify that CSP is working as intended.

    To keep up to date with this developing feature, or to leave feedback, visit the CSP Roadmap proposal.

  • #13926 953a249 Thanks @​ematipico! - Adds a new Astro Adapter Feature called experimentalStaticHeaders to allow your adapter to receive the Headers for rendered static pages.

    Adapters that enable support for this feature can access header values directly, affecting their handling of some Astro features such as Content Security Policy (CSP). For example, Astro will no longer serve the CSP <meta http-equiv="content-security-policy"> element in static pages to adapters with this support.

    Astro will serve the value of the header inside a map that can be retrieved from the hook astro:build:generated. Adapters can read this mapping and use their hosting headers capabilities to create a configuration file.

    A new field called experimentalRouteToHeaders will contain a map of Map<IntegrationResolvedRoute, Headers> where the Headers type contains the headers emitted by the rendered static route.

    To enable support for this experimental Astro Adapter Feature, add it to your adapterFeatures in your adapter config:

    // my-adapter.mjs
    export default function createIntegration() {
      return {
        name: '@example/my-adapter',
        hooks: {
          'astro:config:done': ({ setAdapter }) => {
            setAdapter({
              name: '@example/my-adapter',
              serverEntrypoint: '@example/my-adapter/server.js',
              adapterFeatures: {
                experimentalStaticHeaders: true,
              },
            });
          },
        },
      };
    }
    

    See the Adapter API docs for more information about providing adapter features.

  • #13697 af83b85 Thanks @​benosmac! - Fixes issues with fallback route pattern matching when i18n.routing.fallbackType is rewrite.

... (truncated)

Commits

Updates sharp from 0.34.1 to 0.34.2

Commits
  • 6d04b7c Release v0.34.2
  • d4b30b7 Docs: Update pnpm settings documentation URLs
  • 7f03502 Docs: upgrade to latest Astro Starlight
  • 63b0a11 Tests: remove a possible race condition
  • c4d6aec Docs: Highlight that Windows ARM64 support is experimental
  • e75ae97 Ensure PDF scale-on-load optimisation uses background #4398
  • 956d72d Prerelease v0.34.2-rc.0
  • 00e66ef Bump deps
  • db3a452 Simplify 94481a9
  • d36fd50 Prefer use of bandjoin_const() and list-initialization
  • Additional commits viewable in compare view

Updates sass-embedded from 1.89.0 to 1.89.2

Changelog

Sourced from sass-embedded's changelog.

1.89.2

Embedded Host

  • Fixed a compilation error caused by an outdated buf dependency.

1.89.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
Pull Request Statistics
Commits:
1
Files Changed:
2
Additions:
+234
Deletions:
-300
Package Dependencies
Package:
astro
Ecosystem:
npm
Version Change:
5.7.13 → 5.9.3
Update Type:
Minor
Package:
sharp
Ecosystem:
npm
Version Change:
0.34.1 → 0.34.2
Update Type:
Patch
Ecosystem:
npm
Version Change:
1.89.0 → 1.89.2
Update Type:
Patch
Ecosystem:
npm
Version Change:
6.3.1 → 6.3.2
Update Type:
Patch
Ecosystem:
npm
Version Change:
0.34.3 → 0.34.4
Update Type:
Patch
Ecosystem:
npm
Version Change:
1.2.34 → 1.2.38
Update Type:
Patch
Ecosystem:
npm
Version Change:
5.2.5 → 5.2.6
Update Type:
Patch
Technical Details
ID: 2776123
UUID: 2595567795
Node ID: PR_kwDONQPqfM6atTiz
Host: GitHub
Repository: kando-menu/kando-menu.github.io
Merge State: Unknown