-
-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: use the new Workers Static Assets feature from Cloudflare #13072
base: main
Are you sure you want to change the base?
feat: use the new Workers Static Assets feature from Cloudflare #13072
Conversation
🦋 Changeset detectedLatest commit: 30d1f46 The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
This changes the adapter to stop using the old Workers Sites (kv-asset-handler) approach. Instead, making use of the new Workers Static Assets feature, which is embedded into Cloudflare natively. Also this change removes the extra esbuild step that was being run inside the adapter, relying upon Wrangler to do the bundling. The extra esbuild step required a hardcoded list of Node.js compatible modules. This is no longer needed since Wrangler now manages all of that. - This version of the adapter requires Wrangler version 3.87.0 or later. Run `npm add -D wrangler@latest` (or similar) in your project to update Wrangler. - The user's Wrangler configuration (`wrangler.toml`) must be migrated from using Workers Sites to using Workers Assets. Previously a user's `wrangler.toml` might look like: ```toml name = "<your-site-name>" account_id = "<your-account-id>" compatibility_date = "2021-11-12" main = "./.cloudflare/worker.js" # Workers Sites configuration site.bucket = "./.cloudflare/public" ``` Change it to to look like: ```toml name = "<your-site-name>" account_id = "<your-account-id>" compatibility_date = "2021-11-12"` main = ".svelte-kit/cloudflare/server/index.js" # Workers Assets configuration assets = { directory = ".svelte-kit/cloudflare/client" } ``` - Workers Assets defaults to serving assets directly for a matching request, rather than routing it through the Worker code. The previous adapter would add custom headers to assets responses (such as `cache-control`, `content-type`, and `x-robots-tag`. Such direct asset responses no longer contain these headers - but the will include eTag headers that have proven (in Pages) to be an effective caching strategy for assets. If you wish to always run the Worker before every request then add `serve_directly = false` to the assets configuration section. For example: ```toml assets = { directory = ".svelte-kit/cloudflare/client", serve_directly = false } ```
bc677da
to
30d1f46
Compare
I made a breaking change here since the Workers Sites approach is deprecated and not recommended: previously we already recommended using Cloudflare Pages rather than Workers Sites; and soon we will recommend Workers Static Assets rather than Cloudflare Pages. But if this is too big a change, we could make the adapter resilient to work with either approach. |
Is this a change we should make for our Cloudflare Pages adapter too? kit/packages/adapter-cloudflare/index.js Lines 86 to 109 in 10d0942
|
@eltigerchino - this is something that could be updated on the other Cloudflare adapters if you wish. Not a blocker - but it does mean that the adapter becomes simpler and is less brittle. |
This comment was marked as outdated.
This comment was marked as outdated.
```toml | ||
name = "<your-site-name>" | ||
account_id = "<your-account-id>" | ||
compatibility_date = "2021-11-12"` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
compatibility_date = "2021-11-12"` | |
compatibility_date = "2021-11-12" |
This changes the adapter to stop using the old Workers Sites (kv-asset-handler) approach. | ||
Instead, making use of the new Workers Static Assets feature, which is embedded into Cloudflare natively. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This changes the adapter to stop using the old Workers Sites (kv-asset-handler) approach. | |
Instead, making use of the new Workers Static Assets feature, which is embedded into Cloudflare natively. | |
This changes the adapter to stop using the old Workers Sites (kv-asset-handler) approach in favor of the new Workers Static Assets feature, which is embedded into Cloudflare natively. |
This changes the adapter to stop using the old Workers Sites (kv-asset-handler) approach. | ||
Instead, making use of the new Workers Static Assets feature, which is embedded into Cloudflare natively. | ||
|
||
Also this change removes the extra esbuild step that was being run inside the adapter, relying upon Wrangler to do the bundling. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also this change removes the extra esbuild step that was being run inside the adapter, relying upon Wrangler to do the bundling. | |
Also, this change removes the extra esbuild step that was being run inside the adapter, instead relying upon Wrangler to do the bundling. |
The extra esbuild step required a hardcoded list of Node.js compatible modules. | ||
This is no longer needed since Wrangler now manages all of that. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we can probably drop this to keep things simpler
The extra esbuild step required a hardcoded list of Node.js compatible modules. | |
This is no longer needed since Wrangler now manages all of that. |
Run `npm add -D wrangler@latest` (or similar) in your project to update Wrangler. | ||
- The user's Wrangler configuration (`wrangler.toml`) must be migrated from using Workers Sites to using Workers Assets. | ||
|
||
Previously a user's `wrangler.toml` might look like: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is there any migration guide on the cloudflare site we could point to instead of including the details here? most of our changelog entries are fairly minimal
|
||
- Workers Assets defaults to serving assets directly for a matching request, rather than routing it through the Worker code. | ||
|
||
The previous adapter would add custom headers to assets responses (such as `cache-control`, `content-type`, and `x-robots-tag`. Such direct asset responses no longer contain these headers - but the will include eTag headers that have proven (in Pages) to be an effective caching strategy for assets. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The previous adapter would add custom headers to assets responses (such as `cache-control`, `content-type`, and `x-robots-tag`. Such direct asset responses no longer contain these headers - but the will include eTag headers that have proven (in Pages) to be an effective caching strategy for assets. | |
The previous adapter would add custom headers to assets responses (such as `cache-control`, `content-type`, and `x-robots-tag`. Such direct asset responses no longer contain these headers — but they will include eTag headers that have proven (in Pages) to be an effective caching strategy for assets. |
Resolves #13071
This changes the adapter to stop using the old Workers Sites (kv-asset-handler) approach. Instead, making use of the new Workers Static Assets feature, which is embedded into Cloudflare natively.
Also this change removes the extra esbuild step that was being run inside the adapter, relying upon Wrangler to do the bundling. The extra esbuild step required a hardcoded list of Node.js compatible modules. This is no longer needed since Wrangler now manages all of that.
Breaking changes and migration
This version of the adapter requires Wrangler version 3.87.0 or later.
Run
npm add -D wrangler@latest
(or similar) in your project to update Wrangler.The user's Wrangler configuration (
wrangler.toml
) must be migrated from using Workers Sites to using Workers Assets.Previously a user's
wrangler.toml
might look like:Change it to to look like:
Workers Assets defaults to serving assets directly for a matching request, rather than routing it through the Worker code.
The previous adapter would add custom headers to assets responses (such as
cache-control
,content-type
, andx-robots-tag
. Such direct asset responses no longer contain these headers - but the will include eTag headers that have proven (in Pages) to be an effective caching strategy for assets.If you wish to always run the Worker before every request then add
serve_directly = false
to the assets configuration section. For example:Please don't delete this checklist! Before submitting the PR, please make sure you do the following:
Ideally, include a test that fails without this PR but passes with it.These adapters don't appear to have tests.Tests
pnpm test
and lint the project withpnpm lint
andpnpm check
Changesets
pnpm changeset
and following the prompts. Changesets that add features should beminor
and those that fix bugs should bepatch
. Please prefix changeset messages withfeat:
,fix:
, orchore:
.Edits