Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Bump astro from 5.8.1 to 5.14.1 in /web#39

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
Nico8340 merged 2 commits intomainfromdependabot/npm_and_yarn/web/astro-5.14.1
Oct 5, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabotdependabotbot commented on behalf ofgithubOct 5, 2025

Bumpsastro from 5.8.1 to 5.14.1.

Release notes

Sourced fromastro's releases.

astro@5.14.1

Patch Changes

astro@5.14.0

Minor Changes

  • #13520a31edb8 Thanks@​openscript! - Adds a new propertyroutePattern available toGetStaticPathsOptions

    This provides the original, dynamic segment definition in a routing file path (e.g./[...locale]/[files]/[slug]) from the Astro render context that would not otherwise be available within the scope ofgetStaticPaths(). This can be useful to calculate theparams andprops for each page route.

    For example, you can now localize your route segments and return an array of static paths by passingroutePattern to a customgetLocalizedData() helper function. Theparams object will be set with explicit values for each route segment (e.g.locale,files, andslug). Then, these values will be used to generate the routes and can be used in your page template viaAstro.params.

    // src/pages/[...locale]/[files]/[slug].astroimport{getLocalizedData} from "../../../utils/i18n"; export async function getStaticPaths({routePattern}){const response=awaitfetch('...');const data=awaitresponse.json();console.log(routePattern);// [...locale]/[files]/[slug] // Call your custom helper with routePattern to generate the staticpathsreturndata.flatMap((file)=>getLocalizedData(file,routePattern));} const{locale,files,slug} = Astro.params;

    For more information about this advanced routing pattern, see Astro'srouting reference.

  • #13651dcfbd8c Thanks@​ADTC! - Adds a newSvgComponent type

    You can now more easily enforce type safety for your.svg assets by directly importingSVGComponent fromastro/types:

    ---// src/components/Logo.astroimporttype {SvgComponent }from'astro/types';importHomeIconfrom'./Home.svg';interfaceLink {  url:string;  text:string;  icon:SvgComponent;}const links:Link[]= [  {    url:'/',    text:'Home',    icon:HomeIcon,  },];---

... (truncated)

Changelog

Sourced fromastro's changelog.

5.14.1

Patch Changes

5.14.0

Minor Changes

  • #13520a31edb8 Thanks@​openscript! - Adds a new propertyroutePattern available toGetStaticPathsOptions

    This provides the original, dynamic segment definition in a routing file path (e.g./[...locale]/[files]/[slug]) from the Astro render context that would not otherwise be available within the scope ofgetStaticPaths(). This can be useful to calculate theparams andprops for each page route.

    For example, you can now localize your route segments and return an array of static paths by passingroutePattern to a customgetLocalizedData() helper function. Theparams object will be set with explicit values for each route segment (e.g.locale,files, andslug). Then, these values will be used to generate the routes and can be used in your page template viaAstro.params.

    ---// src/pages/[...locale]/[files]/[slug].astroimport {getLocalizedData }from'../../../utils/i18n';exportasyncfunction getStaticPaths({routePattern }) {const response=awaitfetch('...');const data=awaitresponse.json();console.log(routePattern);// [...locale]/[files]/[slug]// Call your custom helper with routePattern to generate the static pathsreturndata.flatMap((file)=>getLocalizedData(file,routePattern));}const { locale, files, slug }=Astro.params;

    For more information about this advanced routing pattern, see Astro'srouting reference.

  • #13651dcfbd8c Thanks@​ADTC! - Adds a newSvgComponent type

    You can now more easily enforce type safety for your.svg assets by directly importingSVGComponent fromastro/types:

    ---// src/components/Logo.astroimporttype {SvgComponent }from'astro/types';importHomeIconfrom'./Home.svg';interfaceLink {  url:string;  text:string;  icon:SvgComponent;

... (truncated)

Commits

Dependabot compatibility score

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from theSecurity Alerts page.

Bumps [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) from 5.8.1 to 5.14.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.14.1/packages/astro)---updated-dependencies:- dependency-name: astro  dependency-version: 5.14.1  dependency-type: direct:production...Signed-off-by: dependabot[bot] <support@github.com>
@dependabotdependabotbot added dependenciesPull requests that update a dependency file javascriptPull requests that update javascript code labelsOct 5, 2025
@cloudflare-workers-and-pagesCloudflare Workers and Pages
Copy link

cloudflare-workers-and-pagesbot commentedOct 5, 2025
edited
Loading

Deploying wiki-multitheftauto-com with  Cloudflare Pages  Cloudflare Pages

Latest commit:e8ce01e
Status: ✅  Deploy successful!
Preview URL:https://007a9aae.wiki-multitheftauto-com.pages.dev
Branch Preview URL:https://dependabot-npm-and-yarn-web-rx78.wiki-multitheftauto-com.pages.dev

View logs

@Nico8340Nico8340 merged commit0b2d50f intomainOct 5, 2025
4 checks passed
@Nico8340Nico8340 deleted the dependabot/npm_and_yarn/web/astro-5.14.1 branchOctober 5, 2025 18:13
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Reviewers
No reviews
Assignees
No one assigned
Labels
dependenciesPull requests that update a dependency filejavascriptPull requests that update javascript code
Projects
None yet
Milestone
No milestone
Development

Successfully merging this pull request may close these issues.

1 participant
@Nico8340

[8]ページ先頭

©2009-2025 Movatter.jp