Patch Changes
-
#1239
df55709
Thanks @threepointone! - polish: don't include folder name in Sites kv asset keysAs reported in #1189, we're including the name of the folder in the keys of the KV store that stores the assets. This doesn't match v1 behaviour. It makes sense not to include these since, we should be able to move around the folder and not have to reupload the entire folder again.
Fixes #1189
-
#1210
785d418
Thanks @GregBrimble! - feat: Upload the delta forwrangler pages publish
We now keep track of the files that make up each deployment and intelligently only upload the files that we haven't seen. This means that similar subsequent deployments should only need to upload a minority of files and this will hopefully make uploads even faster.
-
#1195
66a85ca
Thanks @threepointone! - fix: batch sites uploads in groups under 100mbThere's an upper limit on the size of an upload to the bulk kv put api (as specified in https://api.cloudflare.com/#workers-kv-namespace-write-multiple-key-value-pairs). This patch batches sites uploads staying under the 100mb limit.
Fixes #1187
-
#1218
f8a21ed
Thanks @threepointone! - fix: warn on unexpected fields onconfig.triggers
This adds a warning when we find unexpected fields on the
triggers
config (and any future fields that use theisObjectWith()
validation helper)