Patch Changes
-
#3181
ed3e9f5Thanks @eisenbruch! - Fixes a form's webhook silently doing nothing. The call was never awaited or handed to the runtime, so on Cloudflare Workers it could be dropped once the visitor's confirmation had been sent; it now runs throughafter(), which registers it with the host so it is guaranteed to finish. A response that is not a success is also logged now:fetchonly rejects on a transport error, so a 4xx, a 5xx, and the sign-in page an authenticated endpoint redirects to were all treated as if the webhook had worked, leaving no trace anywhere. The redirect case is detected by comparing the final URL rather thanResponse.redirected, because plugin HTTP access follows redirects itself and always reportsredirected: false. -
#3139
59ebc01Thanks @emdashbot! - Fixes checkbox-group validation so forms submit successfully when more than one option is selected.