Astro: @astrojs/vercel@7.8.0 Release

Release date:
August 20, 2024
Previous version:
@astrojs/vercel@7.7.2 (released June 24, 2024)
Magnitude:
20,553 Diff Delta
Contributors:
20 total committers
Data confidence:
Commits:

188 Commits in this Release

Ordered by the degree to which they evolved the repo in this version.

Authored August 14, 2024
Authored July 17, 2024
Authored July 18, 2024
Authored July 30, 2024
Authored July 17, 2024
Authored August 15, 2024
Authored July 17, 2024
Authored July 17, 2024
Authored August 15, 2024
Authored June 26, 2024
Authored August 9, 2024
Authored August 8, 2024
Authored August 1, 2024
Authored July 18, 2024
Authored July 3, 2024
Authored August 15, 2024

Top Contributors in @astrojs/vercel@7.8.0

ematipico
bholmesdev
florian-lefebvre
Princesseuh
alexanderniebuhr
billy-le
schpet
JoshuaKGoldberg
zfben
sarah11918

Directory Browser for @astrojs/vercel@7.8.0

We haven't yet finished calculating and confirming the files and directories changed in this release. Please check back soon.

Release Notes Published

Minor Changes

  • #11728 5ea02b1 Thanks @matthewp! - Deprecates the functionPerRoute option

    This option is now deprecated, and will be removed entirely in Astro v5.0. We suggest removing this option from your configuration as soon as you are able to:

    import { defineConfig } from 'astro/config';
    import vercel from '@astrojs/vercel/serverless';
    
    export default defineConfig({
      // ...
      output: 'server',
      adapter: vercel({
    -     functionPerRoute: true,
      }),
    });
    

Patch Changes

  • #11783 fc81b01 Thanks @matthewp! - Prevent race condition with Node 18

    Using Node 18 there can be a race condition where polyfill for the crypto global is not applied in time. This change ensures the polyfills run first.