Skip to content

Releases: workitmakeit/email-validator

Email Validator Worker v1.0.3

16 May 14:25
05945c9
Compare
Choose a tag to compare

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

12 May 14:43
f333b46
Compare
Choose a tag to compare

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

29 Apr 22:50
v1.0.1
19de695
Compare
Choose a tag to compare

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

29 Apr 19:07
v1.0.0
9f51ff8
Compare
Choose a tag to compare

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.