Astro: @astrojs/[email protected] Release

Release date:
August 11, 2023
Previous version:
@astrojs/[email protected] (released August 1, 2023)
Magnitude:
4,418 Diff Delta
Contributors:
15 total committers
Data confidence:
Commits:

102 Commits in this Release

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

Authored August 10, 2023
Authored August 11, 2023
Authored August 4, 2023
Authored August 7, 2023
Authored August 3, 2023
Authored August 7, 2023
Authored August 10, 2023
Authored August 9, 2023
Authored August 1, 2023
Authored July 31, 2023
Authored August 4, 2023

Top Contributors in @astrojs/[email protected]

ematipico
Princesseuh
belluzj
ElianCodes
paperclover
JuanM04
andremralves
doodlemarks
ottomated
thisistonydang

Directory Browser for @astrojs/[email protected]

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

  • #7975 f974c95a2 Thanks @lilnasy! - If you are using Netlify's On-demand Builders, you can now specify how long your pages should remain cached. By default, all pages will be rendered on first visit and reused on every subsequent visit until a redeploy. To set a custom revalidation time, call the runtime.setBuildersTtl() local in either your frontmatter or middleware.

    ---
    import Layout from '../components/Layout.astro';
    
    if (import.meta.env.PROD) {
      // revalidates every 45 seconds
      Astro.locals.runtime.setBuildersTtl(45);
    }
    ---
    
    <Layout title="Astro on Netlify">
      {new Date(Date.now())}
    </Layout>
    

Patch Changes