@astrojs/vercel@11.0.7

withastro/astro@astrojs/vercel@11.0.7Aug 19, 2026by astrobot-houston

AI Summary

This update ensures that Edge Middleware executes correctly alongside ISR, resolving a scenario where middleware was bypassed on cache hits. It also guarantees that query parameters are preserved when forwarding requests to the cached ISR response.

Key Highlights

  • Enables Edge Middleware execution for ISR-backed routes
  • Fixes middleware being skipped during cache hits
  • Preserves query strings when forwarding requests to cached ISR content

Full Release Notes

### Patch Changes

-   [#17687](https://github.com/withastro/astro/pull/17687) [`0a22ff5`](https://github.com/withastro/astro/commit/0a22ff5b7e4600356ccabfe571b7ffdad76064d7) Thanks [@asmyshlyaev177](https://github.com/asmyshlyaev177)! - Fixes `middlewareMode: 'edge'` not running your middleware when `isr` is also enabled

    Previously, enabling both options deployed the edge middleware but never reached it: requests went straight to the ISR function, which skips rendering entirely on a cache hit. Middleware now runs at the edge for ISR-backed routes before the cached response is served, and query strings are preserved when it forwards the request.

-   Updated dependencies \[[`05763a0`](https://github.com/withastro/astro/commit/05763a0884aabb1da78a2749d5bb9d41ae620527)]:
    -   @astrojs/internal-helpers@0.10.4