diff options
author | 2024-01-09 16:28:14 +0100 | |
---|---|---|
committer | 2024-01-09 16:28:14 +0100 | |
commit | e12b9c332ee1eabe52b1fdb8fe378af2042616ea (patch) | |
tree | fb6e1aa914532282656409eba15e55be5a463883 | |
parent | 462df2485197316fdaa0b5313999cf6fd2002848 (diff) | |
download | astro-e12b9c332ee1eabe52b1fdb8fe378af2042616ea.tar.gz astro-e12b9c332ee1eabe52b1fdb8fe378af2042616ea.tar.zst astro-e12b9c332ee1eabe52b1fdb8fe378af2042616ea.zip |
[ci] release (#128)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
-rw-r--r-- | packages/integrations/cloudflare/CHANGELOG.md | 18 | ||||
-rw-r--r-- | packages/integrations/cloudflare/package.json | 2 |
2 files changed, 19 insertions, 1 deletions
diff --git a/packages/integrations/cloudflare/CHANGELOG.md b/packages/integrations/cloudflare/CHANGELOG.md index da821d33b..d692a8410 100644 --- a/packages/integrations/cloudflare/CHANGELOG.md +++ b/packages/integrations/cloudflare/CHANGELOG.md @@ -1,5 +1,23 @@ # @astrojs/cloudflare +## 8.1.0 + +### Minor Changes + +- [#58](https://github.com/withastro/adapters/pull/58) [`ecdb8f5bc21b19cc86e581711a1c360fc723a007`](https://github.com/withastro/adapters/commit/ecdb8f5bc21b19cc86e581711a1c360fc723a007) Thanks [@alexanderniebuhr](https://github.com/alexanderniebuhr)! - Adds the option to only run image optimization on images during build-time. **Warning:** This mode does not work with on-demand (SSR) image optimization. + + ```diff + import {defineConfig} from "astro/config"; + import cloudflare from '@astrojs/cloudflare'; + + export default defineConfig({ + output: 'server' + adapter: cloudflare({ + + imageService: 'compile' + }), + }) + ``` + ## 8.0.2 ### Patch Changes diff --git a/packages/integrations/cloudflare/package.json b/packages/integrations/cloudflare/package.json index 1c0966ab5..fc73bb22c 100644 --- a/packages/integrations/cloudflare/package.json +++ b/packages/integrations/cloudflare/package.json @@ -2,7 +2,7 @@ "//comment": "test changeset-bot", "name": "@astrojs/cloudflare", "description": "Deploy your site to Cloudflare Workers/Pages", - "version": "8.0.2", + "version": "8.1.0", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", |