René's URL Explorer Experiment


Title: Bump astro from 4.16.7 to 5.7.6 by dependabot[bot] · Pull Request #355 · emeraldjava/emeraldjava.github.io · GitHub

Open Graph Title: Bump astro from 4.16.7 to 5.7.6 by dependabot[bot] · Pull Request #355 · emeraldjava/emeraldjava.github.io

X Title: Bump astro from 4.16.7 to 5.7.6 by dependabot[bot] · Pull Request #355 · emeraldjava/emeraldjava.github.io

Description: Bumps astro from 4.16.7 to 5.7.6. Release notes Sourced from astro's releases. astro@5.7.6 Patch Changes #13703 659904b Thanks @​ascorbic! - Fixes a bug where empty fallbacks could not be provided when using the experimental fonts API #13680 18e1b97 Thanks @​florian-lefebvre! - Improves the UnsupportedExternalRedirect error message to include more details such as the concerned destination #13703 659904b Thanks @​ascorbic! - Simplifies styles for experimental responsive images ⚠️ BREAKING CHANGE FOR EXPERIMENTAL RESPONSIVE IMAGES ONLY ⚠️ The generated styles for image layouts are now simpler and easier to override. Previously the responsive image component used CSS to set the size and aspect ratio of the images, but this is no longer needed. Now the styles just include object-fit and object-position for all images, and sets max-width: 100% for constrained images and width: 100% for full-width images. This is an implementation change only, and most users will see no change. However, it may affect any custom styles you have added to your responsive images. Please check your rendered images to determine whether any change to your CSS is needed. The styles now use the :where() pseudo-class, which has a specificity of 0, meaning that it is easy to override with your own styles. You can now be sure that your own classes will always override the applied styles, as will global styles on img. An exception is Tailwind 4, which uses cascade layers, meaning the rules are always lower specificity. Astro supports browsers that do not support cascade layers, so we cannot use this. If you need to override the styles using Tailwind 4, you must use !important classes. Do check if this is needed though: there may be a layout that is more appropriate for your use case. #13703 659904b Thanks @​ascorbic! - Adds warnings about using local font files in the publicDir when the experimental fonts API is enabled. #13703 659904b Thanks @​ascorbic! - Renames experimental responsive image layout option from "responsive" to "constrained" ⚠️ BREAKING CHANGE FOR EXPERIMENTAL RESPONSIVE IMAGES ONLY ⚠️ The layout option called "responsive" is renamed to "constrained" to better reflect its behavior. The previous name was causing confusion, because it is also the name of the feature. The responsive layout option is specifically for images that are displayed at the requested size, unless they do not fit the width of their container, at which point they would be scaled down to fit. They do not get scaled beyond the intrinsic size of the source image, or the width prop if provided. It became clear from user feedback that many people (understandably) thought that they needed to set layout to responsive if they wanted to use responsive images. They then struggled with overriding styles to make the image scale up for full-width hero images, for example, when they should have been using full-width layout. Renaming the layout to constrained should make it clearer that this layout is for when you want to constrain the maximum size of the image, but allow it to scale-down. Upgrading If you set a default image.experimentalLayout in your astro.config.mjs, or set it on a per-image basis using the layout prop, you will need to change all occurences to constrained: // astro.config.mjs export default { image: { - experimentalLayout: 'responsive', + experimentalLayout: 'constrained', }, } // src/pages/index.astro --- import { Image } from 'astro:assets'; --- ... (truncated) Changelog Sourced from astro's changelog. 5.7.6 Patch Changes #13703 659904b Thanks @​ascorbic! - Fixes a bug where empty fallbacks could not be provided when using the experimental fonts API #13680 18e1b97 Thanks @​florian-lefebvre! - Improves the UnsupportedExternalRedirect error message to include more details such as the concerned destination #13703 659904b Thanks @​ascorbic! - Simplifies styles for experimental responsive images ⚠️ BREAKING CHANGE FOR EXPERIMENTAL RESPONSIVE IMAGES ONLY ⚠️ The generated styles for image layouts are now simpler and easier to override. Previously the responsive image component used CSS to set the size and aspect ratio of the images, but this is no longer needed. Now the styles just include object-fit and object-position for all images, and sets max-width: 100% for constrained images and width: 100% for full-width images. This is an implementation change only, and most users will see no change. However, it may affect any custom styles you have added to your responsive images. Please check your rendered images to determine whether any change to your CSS is needed. The styles now use the :where() pseudo-class, which has a specificity of 0, meaning that it is easy to override with your own styles. You can now be sure that your own classes will always override the applied styles, as will global styles on img. An exception is Tailwind 4, which uses cascade layers, meaning the rules are always lower specificity. Astro supports browsers that do not support cascade layers, so we cannot use this. If you need to override the styles using Tailwind 4, you must use !important classes. Do check if this is needed though: there may be a layout that is more appropriate for your use case. #13703 659904b Thanks @​ascorbic! - Adds warnings about using local font files in the publicDir when the experimental fonts API is enabled. #13703 659904b Thanks @​ascorbic! - Renames experimental responsive image layout option from "responsive" to "constrained" ⚠️ BREAKING CHANGE FOR EXPERIMENTAL RESPONSIVE IMAGES ONLY ⚠️ The layout option called "responsive" is renamed to "constrained" to better reflect its behavior. The previous name was causing confusion, because it is also the name of the feature. The responsive layout option is specifically for images that are displayed at the requested size, unless they do not fit the width of their container, at which point they would be scaled down to fit. They do not get scaled beyond the intrinsic size of the source image, or the width prop if provided. It became clear from user feedback that many people (understandably) thought that they needed to set layout to responsive if they wanted to use responsive images. They then struggled with overriding styles to make the image scale up for full-width hero images, for example, when they should have been using full-width layout. Renaming the layout to constrained should make it clearer that this layout is for when you want to constrain the maximum size of the image, but allow it to scale-down. Upgrading If you set a default image.experimentalLayout in your astro.config.mjs, or set it on a per-image basis using the layout prop, you will need to change all occurences to constrained: // astro.config.mjs export default { image: { - experimentalLayout: 'responsive', + experimentalLayout: 'constrained', }, } // src/pages/index.astro --- import { Image } from 'astro:assets'; ... (truncated) Commits 6a2cfd8 [ci] release (#13702) 659904b Revert "[ci] release (#13676)" (#13703) 34cdd98 [ci] release (#13676) 97eec83 [ci] format 18e1b97 fix: improve external redirects message (#13680) 5f470fd [ci] format 6d0e382 Fonts: fix typing for disabled fallbacks (empty array) (#13681) 6ed8360 [ci] format b16b5ef feat: rename layout and refactor styles (#13677) 2e528cb feat(fonts): warn if local font is in public dir (#13678) 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 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 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)

Open Graph Description: Bumps astro from 4.16.7 to 5.7.6. Release notes Sourced from astro's releases. astro@5.7.6 Patch Changes #13703 659904b Thanks @​ascorbic! - Fixes a bug where empty fallbacks could not be p...

X Description: Bumps astro from 4.16.7 to 5.7.6. Release notes Sourced from astro's releases. astro@5.7.6 Patch Changes #13703 659904b Thanks @​ascorbic! - Fixes a bug where empty fallbacks could not ...

Opengraph URL: https://github.com/emeraldjava/emeraldjava.github.io/pull/355

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:da110d98-568d-94ff-59cb-a0558e65a86d
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-id9DCA:373B32:C3F88C:110C68E:6970F638
html-safe-nonce5cf29f47b6e83454e04c94ca67ad4e5406ccfa42c6591630a8be302bc5ef7dbd
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI5RENBOjM3M0IzMjpDM0Y4OEM6MTEwQzY4RTo2OTcwRjYzOCIsInZpc2l0b3JfaWQiOiI2MjM4NTY4ODAwOTgzMjUwNDg4IiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmace507f12ebc26d4e03dd8418ce7cf15e6007b972c8e3a0d3d831b7f949e5e58cd
hovercard-subject-tagpull_request:2485018728
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/files
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/emeraldjava/emeraldjava.github.io/pull/355/files
twitter:imagehttps://avatars.githubusercontent.com/in/29110?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/in/29110?s=400&v=4
og:image:altBumps astro from 4.16.7 to 5.7.6. Release notes Sourced from astro's releases. astro@5.7.6 Patch Changes #13703 659904b Thanks @​ascorbic! - Fixes a bug where empty fallbacks could not be p...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None1b239ebed690c3053869ff31a3b7597834c25673659d63e7b6fd6a9b5d7853de
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/emeraldjava/emeraldjava.github.io git https://github.com/emeraldjava/emeraldjava.github.io.git
octolytics-dimension-user_id229760
octolytics-dimension-user_loginemeraldjava
octolytics-dimension-repository_id17636941
octolytics-dimension-repository_nwoemeraldjava/emeraldjava.github.io
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id17636941
octolytics-dimension-repository_network_root_nwoemeraldjava/emeraldjava.github.io
turbo-body-classeslogged-out env-production page-responsive full-width
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
releaseaeacfd55297f3de5395c83f200ac35d1f474115e
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/emeraldjava/emeraldjava.github.io/pull/355/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Femeraldjava%2Femeraldjava.github.io%2Fpull%2F355%2Ffiles
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Femeraldjava%2Femeraldjava.github.io%2Fpull%2F355%2Ffiles
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Ffiles&source=header-repo&source_repo=emeraldjava%2Femeraldjava.github.io
Reloadhttps://github.com/emeraldjava/emeraldjava.github.io/pull/355/files
Reloadhttps://github.com/emeraldjava/emeraldjava.github.io/pull/355/files
Reloadhttps://github.com/emeraldjava/emeraldjava.github.io/pull/355/files
emeraldjava https://github.com/emeraldjava
emeraldjava.github.iohttps://github.com/emeraldjava/emeraldjava.github.io
Notifications https://github.com/login?return_to=%2Femeraldjava%2Femeraldjava.github.io
Fork 1 https://github.com/login?return_to=%2Femeraldjava%2Femeraldjava.github.io
Star 0 https://github.com/login?return_to=%2Femeraldjava%2Femeraldjava.github.io
Code https://github.com/emeraldjava/emeraldjava.github.io
Issues 2 https://github.com/emeraldjava/emeraldjava.github.io/issues
Pull requests 36 https://github.com/emeraldjava/emeraldjava.github.io/pulls
Discussions https://github.com/emeraldjava/emeraldjava.github.io/discussions
Actions https://github.com/emeraldjava/emeraldjava.github.io/actions
Projects 0 https://github.com/emeraldjava/emeraldjava.github.io/projects
Wiki https://github.com/emeraldjava/emeraldjava.github.io/wiki
Security Uh oh! There was an error while loading. Please reload this page. https://github.com/emeraldjava/emeraldjava.github.io/security
Please reload this pagehttps://github.com/emeraldjava/emeraldjava.github.io/pull/355/files
Insights https://github.com/emeraldjava/emeraldjava.github.io/pulse
Code https://github.com/emeraldjava/emeraldjava.github.io
Issues https://github.com/emeraldjava/emeraldjava.github.io/issues
Pull requests https://github.com/emeraldjava/emeraldjava.github.io/pulls
Discussions https://github.com/emeraldjava/emeraldjava.github.io/discussions
Actions https://github.com/emeraldjava/emeraldjava.github.io/actions
Projects https://github.com/emeraldjava/emeraldjava.github.io/projects
Wiki https://github.com/emeraldjava/emeraldjava.github.io/wiki
Security https://github.com/emeraldjava/emeraldjava.github.io/security
Insights https://github.com/emeraldjava/emeraldjava.github.io/pulse
Sign up for GitHub https://github.com/signup?return_to=%2Femeraldjava%2Femeraldjava.github.io%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://github.com/login?return_to=%2Femeraldjava%2Femeraldjava.github.io%2Fissues%2Fnew%2Fchoose
dependabothttps://github.com/apps/dependabot
astrohttps://github.com/emeraldjava/emeraldjava.github.io/tree/astro
dependabot/npm_and_yarn/astro-5.7.6https://github.com/emeraldjava/emeraldjava.github.io/tree/dependabot/npm_and_yarn/astro-5.7.6
Conversation 1 https://github.com/emeraldjava/emeraldjava.github.io/pull/355
Commits 1 https://github.com/emeraldjava/emeraldjava.github.io/pull/355/commits
Checks 1 https://github.com/emeraldjava/emeraldjava.github.io/pull/355/checks
Files changed https://github.com/emeraldjava/emeraldjava.github.io/pull/355/files
Please reload this pagehttps://github.com/emeraldjava/emeraldjava.github.io/pull/355/files
Bump astro from 4.16.7 to 5.7.6 https://github.com/emeraldjava/emeraldjava.github.io/pull/355/files#top
Show all changes 1 commit https://github.com/emeraldjava/emeraldjava.github.io/pull/355/files
b46a2ab Bump astro from 4.16.7 to 5.7.6 dependabot[bot] Apr 28, 2025 https://github.com/emeraldjava/emeraldjava.github.io/pull/355/commits/b46a2ab526a696c17386513f09a0f5119027335e
Clear filters https://github.com/emeraldjava/emeraldjava.github.io/pull/355/files
Please reload this pagehttps://github.com/emeraldjava/emeraldjava.github.io/pull/355/files
Please reload this pagehttps://github.com/emeraldjava/emeraldjava.github.io/pull/355/files
package-lock.json https://github.com/emeraldjava/emeraldjava.github.io/pull/355/files#diff-053150b640a7ce75eff69d1a22cae7f0f94ad64ce9a855db544dda0929316519
package.json https://github.com/emeraldjava/emeraldjava.github.io/pull/355/files#diff-7ae45ad102eab3b6d7e7896acd08c427a9b25b346470d7bc6507b6481575d519
Please reload this pagehttps://github.com/emeraldjava/emeraldjava.github.io/pull/355/files
Please reload this pagehttps://github.com/emeraldjava/emeraldjava.github.io/pull/355/files
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.