Bump the npm group with 33 updates
Type: Pull Request
State: Open
Association: Unknown
Comments: 2
(30 days ago)
(29 days ago)
Bumps the npm group with 33 updates:
Updates astro from 6.2.1 to 6.2.2
Release notes
Sourced from astro's releases.
astro@6.2.2
Patch Changes
#16292
00f48eeThanks@p-linnane! - Fixes head metadata propagation in dev for adapters that load modules in theprerenderVite environment, such as@astrojs/cloudflare. Theastro:head-metadataplugin previously only tracked thessrenvironment, somaybeRenderHead()could fire inside an unrelated component's\<template>element, trapping subsequent hoisted<style>blocks.#16451
778865fThanks@maximslo! - Fixes build crash when processing animated AVIF images. Sharp now gracefully passes through unsupported image formats instead of crashing during the build.#16548
7214d3eThanks@senutpal! - Fixes scoped styles applying to the wrong element whenvite.css.transformeris set to'lightningcss'and a selector uses a nested&inside:where(...), such as Tailwind v4'sspace-x-*,space-y-*, anddivide-*utilities.#16566
9ac96b4Thanks@web-dev0521! - Fixesdata-astro-prefetch="tap"not triggering when clicking nested elements (e.g.<span>,<img>,<svg>) inside an anchor tag.#15994
1e70d18Thanks@ossaidqadri! - Fix<style>compilation failure when importing Astro components via tsconfig path aliases#16144
1cd6650Thanks@fkatsuhiro! - Fixed a regression where.htmlwas unexpectedly stripped from dynamic route parameters on non-page routes (.tsendpoints and redirects). This caused endpoints like/some/[...id].tsreturningid: 'file.html'ongetStaticPathsto not serve that file because the generated route (/some/file.html) would get matched asid: filethat is not part of the list returned bygetStaticPaths.#16415
559c0fdThanks@0xbejaxer! - Fix CSS traversal boundaries so pages withexport const partial = truestill contribute styles when imported as components by other pages.#16516
17f1867Thanks@fkatsuhiro! - Fixes an issue where the index route would return a 404 error when using a custombasepath combined withtrailingSlash: 'never'. This ensures that the home page and internal rewrites are correctly matched under these configurations.#16515
280ec88Thanks@jp-knj! - Fixes an issue wherei18n.fallbackpages withfallbackType: 'rewrite'were emitted with empty bodies duringastro build.#16565
7959798Thanks@enjoyandlove! - Fixes session persistence whensession.delete()is the first mutation in a request (no priorget,set,has, orkeys). The session was marked dirty in memory, but persistence skipped the save because#datastayedundefined, so the backing store could still return the deleted key on the next request.#16527
86fd80dThanks@enjoyandlove! - Prevents script deduplication state from being consumed while rendering inert\<template>contexts.#16540
e59c637Thanks@ascorbic! - Skips session storage reads when no session cookie is present. Previously, callingsession.get()on a request without a session cookie would initialize the storage driver and make a read that was guaranteed to miss. On network-backed drivers this added latency and resource usage to every anonymous request.#16517
6ab0b3cThanks@adamchal! - Removes inline CSS for prerendered routes from the SSR manifest. The static HTML on disk already inlines those styles, and the SSR worker never renders prerendered routes, so the data was dead weight. Builds with many prerendered routes andbuild.inlineStylesheets: "always"(or"auto"with small stylesheets) will see a smaller SSR entry chunk, which reduces cold-start parse time on platforms like Cloudflare Workers.#16509
d3d3557Thanks@cyphercodes! - Fix conditional named slot callbacks receiving arguments fromAstro.slots.render().#16236
c6b068eThanks@fkatsuhiro! - Fixes thepositionprop on<Image />and<Picture />components to correctly applyobject-positionstyles#16018
d14f47cThanks@felmonon! - FixdefineLiveCollection()soLiveLoaderdata types declared as interfaces are accepted.
Changelog
Sourced from astro's changelog.
6.2.2
Patch Changes
#16292
00f48eeThanks@p-linnane! - Fixes head metadata propagation in dev for adapters that load modules in theprerenderVite environment, such as@astrojs/cloudflare. Theastro:head-metadataplugin previously only tracked thessrenvironment, somaybeRenderHead()could fire inside an unrelated component's\<template>element, trapping subsequent hoisted<style>blocks.#16451
778865fThanks@maximslo! - Fixes build crash when processing animated AVIF images. Sharp now gracefully passes through unsupported image formats instead of crashing during the build.#16548
7214d3eThanks@senutpal! - Fixes scoped styles applying to the wrong element whenvite.css.transformeris set to'lightningcss'and a selector uses a nested&inside:where(...), such as Tailwind v4'sspace-x-*,space-y-*, anddivide-*utilities.#16566
9ac96b4Thanks@web-dev0521! - Fixesdata-astro-prefetch="tap"not triggering when clicking nested elements (e.g.<span>,<img>,<svg>) inside an anchor tag.#15994
1e70d18Thanks@ossaidqadri! - Fix<style>compilation failure when importing Astro components via tsconfig path aliases#16144
1cd6650Thanks@fkatsuhiro! - Fixed a regression where.htmlwas unexpectedly stripped from dynamic route parameters on non-page routes (.tsendpoints and redirects). This caused endpoints like/some/[...id].tsreturningid: 'file.html'ongetStaticPathsto not serve that file because the generated route (/some/file.html) would get matched asid: filethat is not part of the list returned bygetStaticPaths.#16415
559c0fdThanks@0xbejaxer! - Fix CSS traversal boundaries so pages withexport const partial = truestill contribute styles when imported as components by other pages.#16516
17f1867Thanks@fkatsuhiro! - Fixes an issue where the index route would return a 404 error when using a custombasepath combined withtrailingSlash: 'never'. This ensures that the home page and internal rewrites are correctly matched under these configurations.#16515
280ec88Thanks@jp-knj! - Fixes an issue wherei18n.fallbackpages withfallbackType: 'rewrite'were emitted with empty bodies duringastro build.#16565
7959798Thanks@enjoyandlove! - Fixes session persistence whensession.delete()is the first mutation in a request (no priorget,set,has, orkeys). The session was marked dirty in memory, but persistence skipped the save because#datastayedundefined, so the backing store could still return the deleted key on the next request.#16527
86fd80dThanks@enjoyandlove! - Prevents script deduplication state from being consumed while rendering inert\<template>contexts.#16540
e59c637Thanks@ascorbic! - Skips session storage reads when no session cookie is present. Previously, callingsession.get()on a request without a session cookie would initialize the storage driver and make a read that was guaranteed to miss. On network-backed drivers this added latency and resource usage to every anonymous request.#16517
6ab0b3cThanks@adamchal! - Removes inline CSS for prerendered routes from the SSR manifest. The static HTML on disk already inlines those styles, and the SSR worker never renders prerendered routes, so the data was dead weight. Builds with many prerendered routes andbuild.inlineStylesheets: "always"(or"auto"with small stylesheets) will see a smaller SSR entry chunk, which reduces cold-start parse time on platforms like Cloudflare Workers.#16509
d3d3557Thanks@cyphercodes! - Fix conditional named slot callbacks receiving arguments fromAstro.slots.render().#16236
c6b068eThanks@fkatsuhiro! - Fixes thepositionprop on<Image />and<Picture />components to correctly applyobject-positionstyles#16018
d14f47cThanks@felmonon! - FixdefineLiveCollection()soLiveLoaderdata types declared as interfaces are accepted.
Commits
3f67b84[ci] release (#16545)7711e47[ci] format17f1867fix: route mismatch using trail slash never (#16516)7959798fix(astro): persist session delete without prior get/set (#16565)9ac96b4fix(prefetch): trigger tap strategy when clicking nested child elements (#16566)6ab0b3cfix(build): exclude prerendered route styles from SSR manifest (#16517)a595623[ci] formatc6b068efix : astro image position prop bug (#16236)9f4eee0Fixes @_@ not being stripped from CSS file names (#16264)7214d3efix(css): preserve scope on nested & with lightningcss transformer (#16548)- Additional commits viewable in compare view
Updates eslint from 10.2.1 to 10.3.0
Release notes
Sourced from eslint's releases.
v10.3.0
Features
Bug Fixes
b6ae5cffix: handle unavailable require cache (#20812) (Simon Podlipsky)6fb3685fix: rule suggestions cause continuation in class body (#20787) (Milos Djermanovic)Documentation
32cc7abdocs: fix typos in docs and comments (#20809) (Tanuj Kanti)7f47937docs: Update README (GitHub Actions Bot)Chores
d32235eci: use pnpm ineslint-flat-config-utilstype integration test (#20826) (Francesco Trotta)3ffb14echore: clean up typos in comments and JSDoc (#20821) (Pixel998)22eb58achore: add missing continue-on-error to ecosystem-tests.yml (#20818) (Josh Goldberg ✨)88bf002ci: bump pnpm/action-setup from 6.0.1 to 6.0.3 (#20815) (dependabot[bot])97c8c33chore: update ilshidur/action-discord action to v0.4.0 (#20811) (renovate[bot])2f58136chore: pin peter-evans/create-pull-request action to 5f6978f (#20810) (renovate[bot])77add7fchore: add initial ecosystem plugin tests workflow (#19643) (Josh Goldberg ✨)4023b55test: Add unit tests for SuppressionsService.prune() (#20797) (kuldeep kumar)54080datest: add unit tests for ForkContext (#20778) (kuldeep kumar)f0e2bcctest: add unit tests for SuppressionsService.suppress() method (#20765) (kuldeep kumar)a7f0b94chore: update dependency prettier to v3.8.3 (#20782) (renovate[bot])7bf93d9chore: update TypeScript to v6 (#20677) (sethamus)b42dd72ci: bump pnpm/action-setup from 6.0.0 to 6.0.1 (#20781) (dependabot[bot])2b252betest: add unit tests for IdGenerator (#20775) (kuldeep kumar)
Commits
788920410.3.05b69b4fBuild: changelog update for 10.3.0d32235eci: use pnpm ineslint-flat-config-utilstype integration test (#20826)b6ae5cffix: handle unavailable require cache (#20812)3ffb14echore: clean up typos in comments and JSDoc (#20821)6fb3685fix: rule suggestions cause continuation in class body (#20787)22eb58achore: add missing continue-on-error to ecosystem-tests.yml (#20818)88bf002ci: bump pnpm/action-setup from 6.0.1 to 6.0.3 (#20815)379571afeat: add suggestions for no-unused-private-class-members (#20773)97c8c33chore: update ilshidur/action-discord action to v0.4.0 (#20811)- Additional commits viewable in compare view
Updates @rollup/rollup-android-arm-eabi from 4.60.2 to 4.60.3
Changelog
Sourced from @rollup/rollup-android-arm-eabi's changelog.
4.60.3
2026-05-04
Bug Fixes
- Ensure nested "exports" variables are not renamed (#6360)
Pull Requests
- #6360: fix: do not rename nested "exports" bindings that do not conflict (
@tariqrafique,@lukastaegert)- #6364: chore(deps): update msys2/setup-msys2 digest to e989830 (
@renovate[bot])- #6365: fix(deps): update minor/patch updates (
@renovate[bot])- #6366: fix(deps): update swc monorepo (major) (
@renovate[bot])- #6367: chore(deps): lock file maintenance (
@renovate[bot],@lukastaegert)- #6368: docs: add missing backticks in
plugin-development(@lumirlumir,@lukastaegert)
Commits
b47bdab4.60.315c5f33Add again some unneeded dev dependencies, to make some builds succeed12195dcfix: do not rename nested "exports" bindings that do not conflict (#6360)b74aa39Migrate instructions to AGENTS.mdaa5a377fix(deps): update minor/patch updates (#6365)197e68bchore(deps): update msys2/setup-msys2 digest to e989830 (#6364)cded70afix(deps): update swc monorepo (major) (#6366)bb2b8a5docs: add missing backticks inplugin-development(#6368)20af1c4chore(deps): lock file maintenance (#6367)- See full diff in compare view
Updates @rollup/rollup-android-arm64 from 4.60.2 to 4.60.3
Changelog
Sourced from @rollup/rollup-android-arm64's changelog.
4.60.3
2026-05-04
Bug Fixes
- Ensure nested "exports" variables are not renamed (#6360)
Pull Requests
- #6360: fix: do not rename nested "exports" bindings that do not conflict (
@tariqrafique,@lukastaegert)- #6364: chore(deps): update msys2/setup-msys2 digest to e989830 (
@renovate[bot])- #6365: fix(deps): update minor/patch updates (
@renovate[bot])- #6366: fix(deps): update swc monorepo (major) (
@renovate[bot])- #6367: chore(deps): lock file maintenance (
@renovate[bot],@lukastaegert)- #6368: docs: add missing backticks in
plugin-development(@lumirlumir,@lukastaegert)
Commits
b47bdab4.60.315c5f33Add again some unneeded dev dependencies, to make some builds succeed12195dcfix: do not rename nested "exports" bindings that do not conflict (#6360)b74aa39Migrate instructions to AGENTS.mdaa5a377fix(deps): update minor/patch updates (#6365)197e68bchore(deps): update msys2/setup-msys2 digest to e989830 (#6364)cded70afix(deps): update swc monorepo (major) (#6366)bb2b8a5docs: add missing backticks inplugin-development(#6368)20af1c4chore(deps): lock file maintenance (#6367)- See full diff in compare view
Updates @rollup/rollup-darwin-arm64 from 4.60.2 to 4.60.3
Changelog
Sourced from @rollup/rollup-darwin-arm64's changelog.
4.60.3
2026-05-04
Bug Fixes
- Ensure nested "exports" variables are not renamed (#6360)
Pull Requests
- #6360: fix: do not rename nested "exports" bindings that do not conflict (
@tariqrafique,@lukastaegert)- #6364: chore(deps): update msys2/setup-msys2 digest to e989830 (
@renovate[bot])- #6365: fix(deps): update minor/patch updates (
@renovate[bot])- #6366: fix(deps): update swc monorepo (major) (
@renovate[bot])- #6367: chore(deps): lock file maintenance (
@renovate[bot],@lukastaegert)- #6368: docs: add missing backticks in
plugin-development(@lumirlumir,@lukastaegert)
Commits
b47bdab4.60.315c5f33Add again some unneeded dev dependencies, to make some builds succeed12195dcfix: do not rename nested "exports" bindings that do not conflict (#6360)b74aa39Migrate instructions to AGENTS.mdaa5a377fix(deps): update minor/patch updates (#6365)197e68bchore(deps): update msys2/setup-msys2 digest to e989830 (#6364)cded70afix(deps): update swc monorepo (major) (#6366)bb2b8a5docs: add missing backticks inplugin-development(#6368)20af1c4chore(deps): lock file maintenance (#6367)- See full diff in compare view
Updates @rollup/rollup-darwin-x64 from 4.60.2 to 4.60.3
Changelog
Sourced from @rollup/rollup-darwin-x64's changelog.
4.60.3
2026-05-04
Bug Fixes
- Ensure nested "exports" variables are not renamed (#6360)
Pull Requests
- #6360: fix: do not rename nested "exports" bindings that do not conflict (
@tariqrafique,@lukastaegert)- #6364: chore(deps): update msys2/setup-msys2 digest to e989830 (
@renovate[bot])- #6365: fix(deps): update minor/patch updates (
@renovate[bot])- #6366: fix(deps): update swc monorepo (major) (
@renovate[bot])- #6367: chore(deps): lock file maintenance (
@renovate[bot],@lukastaegert)- #6368: docs: add missing backticks in
plugin-development(@lumirlumir,@lukastaegert)
Commits
b47bdab4.60.315c5f33Add again some unneeded dev dependencies, to make some builds succeed12195dcfix: do not rename nested "exports" bindings that do not conflict (#6360)b74aa39Migrate instructions to AGENTS.mdaa5a377fix(deps): update minor/patch updates (#6365)197e68bchore(deps): update msys2/setup-msys2 digest to e989830 (#6364)cded70afix(deps): update swc monorepo (major) (#6366)bb2b8a5docs: add missing backticks inplugin-development(#6368)20af1c4chore(deps): lock file maintenance (#6367)- See full diff in compare view
Updates @rollup/rollup-freebsd-arm64 from 4.60.2 to 4.60.3
Changelog
Sourced from @rollup/rollup-freebsd-arm64's changelog.
4.60.3
2026-05-04
Bug Fixes
- Ensure nested "exports" variables are not renamed (#6360)
Pull Requests
- #6360: fix: do not rename nested "exports" bindings that do not conflict (
@tariqrafique,@lukastaegert)- #6364: chore(deps): update msys2/setup-msys2 digest to e989830 (
@renovate[bot])- #6365: fix(deps): update minor/patch updates (
@renovate[bot])- #6366: fix(deps): update swc monorepo (major) (
@renovate[bot])- #6367: chore(deps): lock file maintenance (
@renovate[bot],@lukastaegert)- #6368: docs: add missing backticks in
plugin-development(@lumirlumir,@lukastaegert)
Commits
b47bdab4.60.315c5f33Add again some unneeded dev dependencies, to make some builds succeed12195dcfix: do not rename nested "exports" bindings that do not conflict (#6360)b74aa39Migrate instructions to AGENTS.mdaa5a377fix(deps): update minor/patch updates (#6365)197e68bchore(deps): update msys2/setup-msys2 digest to e989830 (#6364)cded70afix(deps): update swc monorepo (major) (#6366)bb2b8a5docs: add missing backticks inplugin-development(#6368)20af1c4chore(deps): lock file maintenance (#6367)- See full diff in compare view
Updates @rollup/rollup-freebsd-x64 from 4.60.2 to 4.60.3
Changelog
Sourced from @rollup/rollup-freebsd-x64's changelog.
4.60.3
2026-05-04
Bug Fixes
- Ensure nested "exports" variables are not renamed (#6360)
Pull Requests
- #6360: fix: do not rename nested "exports" bindings that do not conflict (
@tariqrafique,@lukastaegert)- #6364: chore(deps): update msys2/setup-msys2 digest to e989830 (
@renovate[bot])- #6365: fix(deps): update minor/patch updates (
@renovate[bot])- #6366: fix(deps): update swc monorepo (major) (
@renovate[bot])- #6367: chore(deps): lock file maintenance (
@renovate[bot],@lukastaegert)- #6368: docs: add missing backticks in
plugin-development(@lumirlumir,@lukastaegert)
Commits
b47bdab4.60.315c5f33Add again some unneeded dev dependencies, to make some builds succeed12195dcfix: do not rename nested "exports" bindings that do not conflict (#6360)b74aa39Migrate instructions to AGENTS.mdaa5a377fix(deps): update minor/patch updates (#6365)197e68bchore(deps): update msys2/setup-msys2 digest to e989830 (#6364)cded70afix(deps): update swc monorepo (major) (#6366)bb2b8a5docs: add missing backticks inplugin-development(#6368)20af1c4chore(deps): lock file maintenance (#6367)- See full diff in compare view
Updates @rollup/rollup-linux-arm-gnueabihf from 4.60.2 to 4.60.3
Changelog
Sourced from @rollup/rollup-linux-arm-gnueabihf's changelog.
4.60.3
2026-05-04
Bug Fixes
- Ensure nested "exports" variables are not renamed (#6360)
Pull Requests
- #6360: fix: do not rename nested "exports" bindings that do not conflict (
@tariqrafique,@lukastaegert)- #6364: chore(deps): update msys2/setup-msys2 digest to e989830 (
@renovate[bot])- #6365: fix(deps): update minor/patch updates (
@renovate[bot])- #6366: fix(deps): update swc monorepo (major) (
@renovate[bot])- #6367: chore(deps): lock file maintenance (
@renovate[bot],@lukastaegert)- #6368: docs: add missing backticks in
plugin-development(@lumirlumir,@lukastaegert)
Commits
b47bdab4.60.315c5f33Add again some unneeded dev dependencies, to make some builds succeed12195dcfix: do not rename nested "exports" bindings that do not conflict (#6360)b74aa39Migrate instructions to AGENTS.mdaa5a377fix(deps): update minor/patch updates (#6365)197e68bchore(deps): update msys2/setup-msys2 digest to e989830 (#6364)cded70afix(deps): update swc monorepo (major) (#6366)bb2b8a5docs: add missing backticks inplugin-development(#6368)20af1c4chore(deps): lock file maintenance (#6367)- See full diff in compare view
Updates @rollup/rollup-linux-arm-musleabihf from 4.60.2 to 4.60.3
Changelog
Sourced from @rollup/rollup-linux-arm-musleabihf's changelog.
4.60.3
2026-05-04
Bug Fixes
- Ensure nested "exports" variables are not renamed (#6360)
Pull Requests
- #6360: fix: do not rename nested "exports" bindings that do not conflict (
@tariqrafique,@lukastaegert)- #6364: chore(deps): update msys2/setup-msys2 digest to e989830 (
@renovate[bot])- #6365: fix(deps): update minor/patch updates (
@renovate[bot])- #6366: fix(deps): update swc monorepo (major) (
@renovate[bot])- #6367: chore(deps): lock file maintenance (
@renovate[bot],@lukastaegert)- #6368: docs: add missing backticks in
plugin-development(@lumirlumir,@lukastaegert)
Commits
b47bdab4.60.315c5f33Add again some unneeded dev dependencies, to make some builds succeed12195dcfix: do not rename nested "exports" bindings that do not conflict (#6360)b74aa39Migrate instructions to AGENTS.mdaa5a377fix(deps): update minor/patch updates (#6365)197e68bchore(deps): update msys2/setup-msys2 digest to e989830 (#6364)cded70afix(deps): update swc monorepo (major) (#6366)bb2b8a5docs: add missing backticks inplugin-development(#6368)20af1c4chore(deps): lock file maintenance (#6367)- See full diff in compare view
Updates @rollup/rollup-linux-arm64-gnu from 4.60.2 to 4.60.3
Changelog
Sourced from @rollup/rollup-linux-arm64-gnu's changelog.
4.60.3
2026-05-04
Bug Fixes
- Ensure nested "exports" variables are not renamed (#6360)
Pull Requests
- #6360: fix: do not rename nested "exports" bindings that do not...
Description has been truncated
Package Dependencies
@rollup/rollup-linux-x64-gnu
npm
4.60.2 → 4.60.3
Patch
@rollup/rollup-linux-x64-musl
npm
4.60.2 → 4.60.3
Patch
@rollup/rollup-android-arm-eabi
npm
4.60.2 → 4.60.3
Patch
@rollup/rollup-android-arm64
npm
4.60.2 → 4.60.3
Patch
@rollup/rollup-darwin-arm64
npm
4.60.2 → 4.60.3
Patch
@rollup/rollup-darwin-x64
npm
4.60.2 → 4.60.3
Patch
@rollup/rollup-freebsd-arm64
npm
4.60.2 → 4.60.3
Patch
@rollup/rollup-freebsd-x64
npm
4.60.2 → 4.60.3
Patch
@rollup/rollup-linux-arm-gnueabihf
npm
4.60.2 → 4.60.3
Patch
@rollup/rollup-linux-arm-musleabihf
npm
4.60.2 → 4.60.3
Patch
@rollup/rollup-linux-arm64-gnu
npm
4.60.2 → 4.60.3
Patch
@rollup/rollup-linux-arm64-musl
npm
4.60.2 → 4.60.3
Patch
@rollup/rollup-linux-riscv64-gnu
npm
4.60.2 → 4.60.3
Patch
@rollup/rollup-linux-riscv64-musl
npm
4.60.2 → 4.60.3
Patch
@rollup/rollup-linux-s390x-gnu
npm
4.60.2 → 4.60.3
Patch
@rollup/rollup-win32-arm64-msvc
npm
4.60.2 → 4.60.3
Patch
@rollup/rollup-win32-ia32-msvc
npm
4.60.2 → 4.60.3
Patch
@rollup/rollup-win32-x64-msvc
npm
4.60.2 → 4.60.3
Patch
@rollup/rollup-linux-ppc64-gnu
npm
4.60.2 → 4.60.3
Patch
@rollup/rollup-openharmony-arm64
npm
4.60.2 → 4.60.3
Patch
baseline-browser-mapping
npm
2.10.24 → 2.10.27
Patch
@rollup/rollup-linux-loong64-gnu
npm
4.60.2 → 4.60.3
Patch
@rollup/rollup-win32-x64-gnu
npm
4.60.2 → 4.60.3
Patch
@rollup/rollup-linux-loong64-musl
npm
4.60.2 → 4.60.3
Patch
@rollup/rollup-linux-ppc64-musl
npm
4.60.2 → 4.60.3
Patch
@rollup/rollup-openbsd-x64
npm
4.60.2 → 4.60.3
Patch
Technical Details
| ID: | 15661512 |
| UUID: | 4377885872 |
| Node ID: | PR_kwDOKSIIAM7YE1wa |
| Host: | GitHub |
| Repository: | poad/astro-solid-example |