# Changelog

## Upcoming

## Version 0.2.0
- Ecto Validators:
  - `validate_email`: Improved email validation options and better documentation
    about what to expect.
  - `validate_url`: Improved documentation about what is supported.
  - `validate_postal_code`: Added support for all countries. Still only a sanity
     check. There is no full databases of all postal codes packages into this lib ;)
- Ecto Helpers:
  - `validate_many`: adds validation for multiple fields with the same
    validation function.

## Version 0.1.0
 - Ecto Validators:
   - `validate_date`: validates `Date` (equality, after, before)
   - `validate_datetime`: validates `DateTime` (equality, after, before)
   - `validate_time`: validates `Time` (equality, after, before)
   - `validate_email`: validates emails (and can also prevent temporary email 
     providers by using `Burnex` package)
   - `validate_luhn`: validates codes that respect the Luhn algorithm such 
     as credit cards
   - `validate_url`: validates URLs with various criteria
   - `validate_string`: validates strings with a given prefix
   - `validate_postal_code`: validates postal codes for a few european countries
   - `validate_social_security`: validates social security numbers for French
     administration

