Astro: astro@7.1.4 Release
Release date:
July 27, 2026
Magnitude:
136
Diff Delta
Contributors:
6 total committers
10 Commits
in this Release
Ordered by the degree to which they evolved the repo in this version.
Browse Other Releases
Latest Pending
Unreleased π
astro@7.2.2
Released August 13, 2026
75 Ξ
astro@7.2.1
Released August 11, 2026
170 Ξ
astro@7.2.0
Released August 6, 2026
0 Ξ
astro@7.1.6
Released July 29, 2026
448 Ξ
astro@7.1.5
Released July 28, 2026
441 Ξ
astro@7.1.4
Released July 27, 2026
136 Ξ
astro@7.1.3
Released July 20, 2026
49 Ξ
astro@7.1.2
Released July 20, 2026
49 Ξ
astro@7.1.1
Released July 17, 2026
97 Ξ
astro@7.1.0
Released July 16, 2026
1,860 Ξ
Top Contributors in astro@7.1.4
Release Notes Published
Patch Changes
#17488 d4f266d Thanks @emerson-d-lopes! - Fixes duplicate CSS files being emitted in server output when a prerendered page and a server-rendered page share the same styles (e.g. a shared layout importing Tailwind). The prerender and SSR environments each emitted their own copy of the same stylesheet (index.X.css and _..Y.css); the SSR build now reuses the CSS asset filename from the prerender build when the stylesheet is backed by the same CSS source modules, so only a single file is emitted.
#17472 4dc590c Thanks @astrobot-houston! - Adds the missing background prop to the <Image /> and <Picture /> component types. The prop already worked at runtime, but was absent from the types, causing astro check to report that background does not exist on the component props
#17292 0fc519d Thanks @astrobot-houston! - Fixes missing scoped styles for child components inside client:only islands in production builds
#17421 f1448de Thanks @iamkaleemsajjad-hue! - Fixes session runtime errors being silently swallowed by console.error instead of routing through Astro's logger
#17421 f1448de Thanks @iamkaleemsajjad-hue! - Fixes a session being left in a partial state after a storage failure during session.regenerate(), preventing unnecessary storage reads on subsequent operations
#17517 82bf7e2 Thanks @Hashim1999164! - Prevents a visible terminal window from popping up on Windows when the dev server runs in background mode. The detached child process is now spawned with windowsHide: true, so console-subsystem grandchildren (such as workerd.exe) no longer get a new focus-stealing window allocated by Windows Terminal.
#17510 eaa1fb0 Thanks @astrobot-houston! - Fixes the glob() loader watcher so negation patterns like !docs/drafts/** correctly exclude files during development, matching the behavior of the initial scan. Previously, negations were treated as independent matchers, causing unrelated files (including .astro/data-store.json) to be ingested as collection entries
#17511 704e570 Thanks @astrobot-houston! - Fixes TypeScript path aliases from tsconfig.json not resolving in astro.config.ts