astro

The web framework for content-driven websites. ⭐️ Star to support our work!

OTHER License

Downloads
8.9M
Stars
43K
Committers
807
astro - @astrojs/[email protected]

Published by astrobot-houston about 1 year ago

Patch Changes

astro - @astrojs/[email protected]

Published by astrobot-houston about 1 year ago

Patch Changes

astro - @astrojs/[email protected]

Published by astrobot-houston about 1 year ago

Patch Changes

astro - [email protected]

Published by astrobot-houston about 1 year ago

Patch Changes

astro - @astrojs/[email protected]

Published by astrobot-houston about 1 year ago

Major Changes

  • #8239 52f0837bd Thanks @matthewp! - Vercel adapter now defaults to functionPerRoute.

    With this change, @astrojs/vercel/serverless now splits each route into its own function. By doing this, the size of each function is reduced and startup time is faster.

    You can disable this option, which will cause the code to be bundled into a single function, by setting functionPerRoute to false.

Patch Changes

astro - @astrojs/[email protected]

Published by astrobot-houston about 1 year ago

Patch Changes

astro - [email protected]

Published by astrobot-houston about 1 year ago

Patch Changes

astro - [email protected]

Published by astrobot-houston about 1 year ago

Patch Changes

astro - @astrojs/[email protected]

Published by astrobot-houston about 1 year ago

Patch Changes

astro - @astrojs/[email protected]

Published by astrobot-houston about 1 year ago

Major Changes

  • #8198 cb95aa5f8 Thanks @bluwy! - Update the rss() default export to return a Response instead of a simple object, which is deprecated in Astro 3.0. If you were directly returning the rss() result from an endpoint before, this breaking change should not affect you.

    You can also import getRssString() to get the RSS string directly and use it to return your own Response:

    // src/pages/rss.xml.js
    import { getRssString } from '@astrojs/rss';
    
    export async function get(context) {
      const rssString = await getRssString({
        title: 'Buzz’s Blog',
        ...
      });
    
      return new Response(rssString, {
        headers: {
          'Content-Type': 'application/xml',
        },
      });
    }
    
astro - [email protected]

Published by astrobot-houston about 1 year ago

Major Changes

  • #8207 e45f30293 Thanks @natemoo-re! - Change the View Transition built-in animation options.

    The transition:animate value morph has been renamed to initial. Also, this is no longer the default animation.

    If no transition:animate directive is specified, your animations will now default to fade.

    Astro also supports a new transition:animate value, none. This value can be used on a page's <html> element to disable animated full-page transitions on an entire page.

Minor Changes

  • #8218 44f7a2872 Thanks @matthewp! - View Transitions unflagged

    View Transition support in Astro is now unflagged. For those who have used the experimental feature you can remove the flag in your Astro config:

    import { defineConfig } from 'astro'
    
    export default defineConfig({
    -  experimental: {
    -    viewTransitions: true,
    -  }
    })
    

    After removing this flag, please also consult the specific upgrade to v3.0 advice as some API features have changed and you may have breaking changes with your existing view transitions.

    See the View Transitions guide to learn how to use the API.

  • #8181 a8f35777e Thanks @matthewp! - Finalize View Transition event names

Patch Changes

  • #8217 c37632a20 Thanks @martrapp! - Specify data-astro-reload (no value) on an anchor element to force the browser to ignore view transitions and fall back to default loading.

    This is helpful when navigating to documents that have different content-types, e.g. application/pdf, where you want to use the build in viewer of the browser.
    Example: <a href='/my.pdf' data-astro-reload>...</a>

  • #8156 acf652fc1 Thanks @kurtextrem! - The scrollend mechanism is a better way to record the scroll position compared to throttling, so we now use it whenever a browser supports it.

  • #8196 632579dc2 Thanks @bluwy! - Prevent bundling sharp as it errors in runtime

  • #8214 55c10d1d5 Thanks @Princesseuh! - Automatically update user's env.d.ts with the proper types to help out migrating away from assets being experimental

astro - @astrojs/[email protected]

Published by astrobot-houston about 1 year ago

Patch Changes

astro - [email protected]

Published by astrobot-houston about 1 year ago

Patch Changes

astro - @astrojs/[email protected]

Published by astrobot-houston about 1 year ago

Patch Changes

astro - [email protected]

Published by astrobot-houston about 1 year ago

Patch Changes

astro - @astrojs/[email protected]

Published by astrobot-houston about 1 year ago

Minor Changes

astro - @astrojs/[email protected]

Published by astrobot-houston about 1 year ago

Major Changes

astro - @astrojs/[email protected]

Published by astrobot-houston about 1 year ago

Major Changes

  • #8179 6011d52d3 Thanks @matthewp! - Astro 3.0 Release Candidate

  • #8169 e79e3779d Thanks @bluwy! - Remove pre-shiki v0.14 theme names for compatibility. Please rename to the new theme names to migrate:

    • material-darker -> material-theme-darker
    • material-default -> material-theme
    • material-lighter -> material-theme-lighter
    • material-ocean -> material-theme-ocean
    • material-palenight -> material-theme-palenight

Patch Changes

astro - @astrojs/[email protected]

Published by astrobot-houston about 1 year ago

Minor Changes

astro - @astrojs/[email protected]

Published by astrobot-houston about 1 year ago

Major Changes

Patch Changes

Package Rankings
Top 0.43% on Npmjs.org
Top 8.17% on Proxy.golang.org
Badges
Extracted from project README
CI License npm version astro version create-astro version @astrojs/react version @astrojs/preact version @astrojs/solid version @astrojs/svelte version @astrojs/vue version @astrojs/lit version @astrojs/node version @astrojs/vercel version @astrojs/cloudflare version @astrojs/partytown version @astrojs/sitemap version @astrojs/tailwind version @astrojs/alpinejs version @astrojs/mdx version @astrojs/db version @astrojs/rss version @astrojs/netlify version CII Best Practices Astro's sponsors.