Astro: @astrojs/[email protected] Release

Release date:
September 17, 2025
Previous version:
@astrojs/[email protected] (released September 8, 2025)
Magnitude:
950 Diff Delta
Contributors:
3 total committers
Data confidence:
Commits:

13 Commits in this Release

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

Authored September 12, 2025
Authored September 11, 2025
Authored September 12, 2025
Authored September 9, 2025
Authored September 16, 2025
Authored September 12, 2025
Authored September 11, 2025

Top Contributors in @astrojs/[email protected]

ematipico
florian-lefebvre
louisescher

Directory Browser for @astrojs/[email protected]

All files are compared to previous version, @astrojs/[email protected]. Click here to browse diffs between other versions.

Loading File Browser...

Release Notes Published

Minor Changes

  • #14204 d71448e Thanks @Adammatthiesen! - Adds a new libSQL web driver to support environments that require a non-Node.js libSQL client such as Cloudflare or Deno. Also adds a new mode configuration option to allow you to set your client connection type: node (default) or web.

    The default db node driver mode is identical to the previous AstroDB functionality. No changes have been made to how AstroDB works in Node.js environments, and this is still the integration's default behavior. If you are currently using AstroDB, no changes to your project code are required and setting a mode is not required.

    However, if you have previously been unable to use AstroDB because you required a non-Node.js libSQL client, you can now install and configure the libSQL web driver by setting mode: 'web' in your db configuration:

    import db from '@astrojs/db';
    import { defineConfig } from 'astro/config';
    
    // https://astro.build/config
    export default defineConfig({
      integrations: [db({ mode: 'web' })],
    });
    

    For more information, see the @astrojs/db documentation.