Skip to content

Releases: withastro/adapters

@astrojs/netlify@6.0.1

16 Dec 15:31
f487c91
Compare
Choose a tag to compare

Patch Changes

@astrojs/vercel@8.0.1

13 Dec 07:05
e53c18d
Compare
Choose a tag to compare

Patch Changes

  • #472 d9eed7e Thanks @bluwy! - Add back support for Node 22 on Vercel serverless that was fixed in v7 but lost in v8

@astrojs/cloudflare@12.1.0

13 Dec 07:05
e53c18d
Compare
Choose a tag to compare

Minor Changes

  • #455 1d4e6fc Thanks @meyer! - Adds wrangler.jsonc to the default watched config files. If a config file is specified in platformProxy.configPath, that file location is watched instead of the defaults.

Patch Changes

  • #476 a8a8ab1 Thanks @bluwy! - Removes resolving with "node" conditionto fix Vue imports

@astrojs/cloudflare@12.0.1

05 Dec 14:12
8dc4ff1
Compare
Choose a tag to compare

Patch Changes

  • #465 70e0054 Thanks @bluwy! - Fixes setting custom workerd and worker conditions for the ssr environment only

@astrojs/vercel@8.0.0

03 Dec 11:03
7057f09
Compare
Choose a tag to compare

Major Changes

Minor Changes

  • #424 3351348 Thanks @ematipico! - Deprecates the entrypoints @astrojs/vercel/serverless and @astrojs/vercel/static. These will continue to work but are no longer documented and will be removed in a future version. We recommend updating to the @astrojs/vercel entrypoint as soon as you are able:

    -import vercel from "@astrojs/vercel/static"
    +import vercel from "@astrojs/vercel"
    -import vercel from "@astrojs/vercel/serverless"
    +import vercel from "@astrojs/vercel"
  • #447 7d9835f Thanks @laymonage! - Add support for Node 22 on Vercel serverless

  • #385 bb725b7 Thanks @florian-lefebvre! - Cleans up astro:env support

Patch Changes

  • #437 b725b49 Thanks @ematipico! - Fixes a regression where the @astrojs/vercel single entry point for the adapter was causing some regressions in users projects.

@astrojs/node@9.0.0

03 Dec 11:03
7057f09
Compare
Choose a tag to compare

Major Changes

  • #375 e7881f7 Thanks @Princesseuh! - Updates internal code to works with Astro 5 changes to hybrid rendering. No changes are necessary to your project, apart from using Astro 5

  • #397 776a266 Thanks @Princesseuh! - Welcome to the Astro 5 beta! This release has no changes from the latest alpha of this package, but it does bring us one step closer to the final, stable release.

    Starting from this release, no breaking changes will be introduced unless absolutely necessary.

    To learn how to upgrade, check out the Astro v5.0 upgrade guide in our beta docs site.

  • #392 3a49eb7 Thanks @Princesseuh! - Updates internal code for Astro 5 changes. No changes is required to your project, apart from using Astro 5

  • #451 167b369 Thanks @ematipico! - Updates send dependency to v1.1.0

Minor Changes

@astrojs/netlify@6.0.0

03 Dec 11:03
7057f09
Compare
Choose a tag to compare

Major Changes

  • #367 e02b54a Thanks @alexanderniebuhr! - Removed support for the Squoosh image service. As the underlying library libsquoosh is no longer maintained, and the image service sees very little usage we have decided to remove it from Astro.

    Our recommendation is to use the base Sharp image service, which is more powerful, faster, and more actively maintained.

    - import { squooshImageService } from "astro/config";
    import { defineConfig } from "astro/config";
    
    export default defineConfig({
    -  image: {
    -    service: squooshImageService()
    -  }
    });

    If you are using this service, and cannot migrate to the base Sharp image service, a third-party extraction of the previous service is available here: https://github.com/Princesseuh/astro-image-service-squoosh

  • #367 e02b54a Thanks @alexanderniebuhr! - 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,
      }),
    });
  • #375 e7881f7 Thanks @Princesseuh! - Updates internal code to works with Astro 5 changes to hybrid rendering. No changes are necessary to your project, apart from using Astro 5

  • #397 776a266 Thanks @Princesseuh! - Welcome to the Astro 5 beta! This release has no changes from the latest alpha of this package, but it does bring us one step closer to the final, stable release.

    Starting from this release, no breaking changes will be introduced unless absolutely necessary.

    To learn how to upgrade, check out the Astro v5.0 upgrade guide in our beta docs site.

  • #451 f248546 Thanks @ematipico! - Updates esbuild dependency to v0.24.0

  • #392 3a49eb7 Thanks @Princesseuh! - Updates internal code for Astro 5 changes. No changes is required to your project, apart from using Astro 5

Minor Changes

@astrojs/cloudflare@12.0.0

03 Dec 11:03
7057f09
Compare
Choose a tag to compare

Major Changes

  • #367 e02b54a Thanks @alexanderniebuhr! - Removed support for the Squoosh image service. As the underlying library libsquoosh is no longer maintained, and the image service sees very little usage we have decided to remove it from Astro.

    Our recommendation is to use the base Sharp image service, which is more powerful, faster, and more actively maintained.

    - import { squooshImageService } from "astro/config";
    import { defineConfig } from "astro/config";
    
    export default defineConfig({
    -  image: {
    -    service: squooshImageService()
    -  }
    });

    If you are using this service, and cannot migrate to the base Sharp image service, a third-party extraction of the previous service is available here: https://github.com/Princesseuh/astro-image-service-squoosh

  • #367 e02b54a Thanks @alexanderniebuhr! - 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,
      }),
    });
  • #375 e7881f7 Thanks @Princesseuh! - Updates internal code to works with Astro 5 changes to hybrid rendering. No changes are necessary to your project, apart from using Astro 5

  • #397 776a266 Thanks @Princesseuh! - Welcome to the Astro 5 beta! This release has no changes from the latest alpha of this package, but it does bring us one step closer to the final, stable release.

    Starting from this release, no breaking changes will be introduced unless absolutely necessary.

    To learn how to upgrade, check out the Astro v5.0 upgrade guide in our beta docs site.

  • #451 f248546 Thanks @ematipico! - Updates esbuild dependency to v0.24.0

  • #392 3a49eb7 Thanks @Princesseuh! - Updates internal code for Astro 5 changes. No changes is required to your project, apart from using Astro 5

Patch Changes

@astrojs/vercel@8.0.0-beta.4

13 Nov 16:03
911d197
Compare
Choose a tag to compare
Pre-release

Patch Changes

  • #437 b725b49 Thanks @ematipico! - Fixes a regression where the @astrojs/vercel single entry point for the adapter was causing some regressions in users projects.

@astrojs/vercel@8.0.0-beta.3

31 Oct 09:07
ff2e024
Compare
Choose a tag to compare
Pre-release

Major Changes

Minor Changes

  • #424 3351348 Thanks @ematipico! - Deprecates the entrypoints @astrojs/vercel/serverless and @astrojs/vercel/static. These will continue to work but are no longer documented and will be removed in a future version. We recommend updating to the @astrojs/vercel entrypoint as soon as you are able:

    -import vercel from "@astrojs/vercel/static"
    +import vercel from "@astrojs/vercel"
    -import vercel from "@astrojs/vercel/serverless"
    +import vercel from "@astrojs/vercel"