⬆️ Bump the minor-updates group across 1 directory with 7 updates
Type: Pull Request
State: Merged
![dependabot[bot]](https://github.com/dependabot.png)
Association: Contributor
Comments: 0
(4 months ago)
(3 months ago)
(3 months ago)
by Schneegans
dependencies javascript
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.2Patch Changes
Commits
3632dda
[ci] release (#13840)- See full diff in compare view
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.4Patch Changes
#3205
95d124a
Thanks@sgalcheung
! - Fixes an issue preventing to use the<StarlightPage>
component when thedocs
content collection that Starlight uses does not exist.#3206
e6ea584
Thanks@HiDeoo
! - Fixes a text selection issue for heading with a clickable anchor link when using double click to select text in Chrome and Safari.#3233
3064c40
Thanks@torn4dom4n
! - Updates Vietnamese UI translations.#3248
16c1239
Thanks@HiDeoo
! - Prevents icons in the<Card>
component from being shrunk in some narrow viewports.#3225
21b93b8
Thanks@randomguy-2650
! - Updates German UI translations
Changelog
Sourced from @astrojs/starlight
's changelog.
0.34.4
Patch Changes
#3205
95d124a
Thanks@sgalcheung
! - Fixes an issue preventing to use the<StarlightPage>
component when thedocs
content collection that Starlight uses does not exist.#3206
e6ea584
Thanks@HiDeoo
! - Fixes a text selection issue for heading with a clickable anchor link when using double click to select text in Chrome and Safari.#3233
3064c40
Thanks@torn4dom4n
! - Updates Vietnamese UI translations.#3248
16c1239
Thanks@HiDeoo
! - Prevents icons in the<Card>
component from being shrunk in some narrow viewports.#3225
21b93b8
Thanks@randomguy-2650
! - Updates German UI translations
Commits
fc6f311
[ci] release (#3249)e6ea584
Fix double click selection issues for heading with a clickable anchor link (#...16c1239
Prevent\<Card>
icon from being shrunk (#3248)3064c40
i18n(vi): update Vietnamese translations (#3233)21b93b8
i18n(de): Add missing translations forde.json
(#3225)c4ce908
[ci] format95d124a
fix userCollections?.docs (#3205)dbe5e37
Fix E2E tests compatibility with Node.js 23+ (#3200)- See full diff in compare view
Updates @fontsource/neucha
from 5.2.5 to 5.2.6
Commits
- See full diff in compare view
Updates @iconify-json/simple-icons
from 1.2.34 to 1.2.38
Commits
- See full diff in compare view
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) onlyChanges 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
headercontent-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 calledexperimentalStaticHeaders
to allow your adapter to receive theHeaders
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 ofMap<IntegrationResolvedRoute, Headers>
where theHeaders
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 wheni18n.routing.fallbackType
isrewrite
.
... (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) onlyChanges 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
headercontent-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 calledexperimentalStaticHeaders
to allow your adapter to receive theHeaders
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 ofMap<IntegrationResolvedRoute, Headers>
where theHeaders
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 wheni18n.routing.fallbackType
isrewrite
.
... (truncated)
Commits
0644b40
[ci] release (#13925)337ace6
[ci] format953a249
feat(csp): add static header adapter function (#13926)af83b85
fix: fallback and rewrite dynamic route pattern matching (#13697)77ceb42
[ci] formata9ac5ed
refactor(csp): change CSP behaviour (#13923)1cd8c3b
fix: isPrerendered now set correctly in static configured redirects. (#13924)4d96bda
[ci] release (#13915)d002995
[ci] format423fe60
fix(csp): quotes and resources (#13919)- Additional commits viewable in compare view
Updates sharp
from 0.34.1 to 0.34.2
Commits
6d04b7c
Release v0.34.2d4b30b7
Docs: Update pnpm settings documentation URLs7f03502
Docs: upgrade to latest Astro Starlight63b0a11
Tests: remove a possible race conditionc4d6aec
Docs: Highlight that Windows ARM64 support is experimentale75ae97
Ensure PDF scale-on-load optimisation uses background #4398956d72d
Prerelease v0.34.2-rc.000e66ef
Bump depsdb3a452
Simplify 94481a9d36fd50
Prefer use ofbandjoin_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
1
2
+234
-300
Package Dependencies
@iconify-json/simple-icons
npm
1.2.34 → 1.2.38
Patch
Technical Details
ID: | 2776123 |
UUID: | 2595567795 |
Node ID: | PR_kwDONQPqfM6atTiz |
Host: | GitHub |
Repository: | kando-menu/kando-menu.github.io |
Merge State: | Unknown |