Releases: workitmakeit/email-validator
Email Validator Worker v1.0.3
The worker now uses the brand new Smart Placement Beta for optimisation of API calls.
Read more: https://developers.cloudflare.com/workers/platform/smart-placement/
Attached is a pre-transpiled JS file. You can copy and paste this into the Cloudflare Dashboard's Quick Edit feature if you wish, but using wrangler
is probably nicer.
Email Validator Worker v1.0.2
BREAKING CHANGE
This release adds version numbers to the route URL.
It also decides the route from the last 2 path segments, meaning the worker is exposed at any level of subdirectory above 2.
This allows for more flexible routing with Cloudflare Worker Routes.
Before:
The URL had to be [subdomain].(domain)/verify_email
.
After:
The URL has to be at least [subdomain].(domain)/v1/verify_email
. It can also be [subdomain].(domain)/[directory...]/v1/verify_email
.
For example, api.example.com/mailer/v1/verify_email.
Attached is a pre-transpiled JS file. You can copy and paste this into the Cloudflare Dashboard's Quick Edit feature if you wish, but using wrangler
is probably nicer.
Email Validator Worker v1.0.1
Maintenance release to iron out some minor bugs.
Fixes:
- Console output for submission error now outputs text (rather than [object Object])
manage-forms
now supports all fields- Experimental local development has been ditched
Attached is a pre-transpiled JS file. You can copy and paste this into the Cloudflare Dashboard's Quick Edit feature if you wish, but using wrangler
is probably nicer.
Email Validator Worker v1.0.0
The first full release of the worker.
Features:
- Email verification of form responses
- Storage of form and other data in KV
- Overriding form variables with form references in KV
- Redirects after submitting form
What's to come:
- Email cooldowns and ban list
- Passing form data to redirects
- Link expiration time
- Ratelimits
Attached is a pre-transpiled JS file. You can copy and paste this into the Cloudflare Dashboard's Quick Edit feature if you wish, but using wrangler
is probably nicer.