Merge branch '3.x' of github.com:egulias/EmailValidator into 3.x

This commit is contained in:
Eduardo Gulias Davis
2021-01-17 15:57:32 +01:00
3 changed files with 11 additions and 9 deletions
+1 -1
View File
@@ -9,7 +9,7 @@
* PHP version upgraded to match Symfony's (as of 12/2020).
* DNSCheckValidation now fails for missing MX records. While the RFC argues that the existence of only A records to be valid, starting in v3 they will be considered invalid.
* Emails domain part are now intenteded to be RFC 1030 compliant, rendering previous valid emails (e.g example@examp&) invalid.
* Emails domain part are now intenteded to be RFC 1035 compliant, rendering previous valid emails (e.g example@examp&) invalid.
## PHP versions upgrade policy
PHP version upgrade requirement will happen via MINOR (3.x) version upgrades of the library, following the adoption level by major frameworks.
+2 -1
View File
@@ -13,6 +13,7 @@ When doing a PR to v2 remember that you also have to do the PR port to v3, or te
2. Use the title as a brief description of the changes
3. Describe the changes you are proposing
1. If adding an extra validation state the benefits of adding it and the problem is solving
2. Document in the readme, by adding it to the list
4. Provide appropiate tests for the code you are submitting: aim to keep the existing coverage percentage.
5. Add your Twitter handle (if you have) so we can thank you there.
@@ -149,4 +150,4 @@ at [https://www.contributor-covenant.org/translations][translations].
[v2.0]: https://www.contributor-covenant.org/version/2/0/code_of_conduct.html
[Mozilla CoC]: https://github.com/mozilla/diversity
[FAQ]: https://www.contributor-covenant.org/faq
[translations]: https://www.contributor-covenant.org/translations
[translations]: https://www.contributor-covenant.org/translations
+8 -7
View File
@@ -15,17 +15,18 @@ This library aims to support RFCs:
* [5322](https://tools.ietf.org/html/rfc5322),
* [6530](https://tools.ietf.org/html/rfc6530),
* [6531](https://tools.ietf.org/html/rfc6531),
* [6532](https://tools.ietf.org/html/rfc6532)
* [6532](https://tools.ietf.org/html/rfc6532),
* [1030](https://tools.ietf.org/html/rfc1030)
## Supported versions
**Curent major version with full support is v3**
| Version | EOL | Only critical bug fixes | Full |
| ---- | :----: | :----: | :----: |
| v3.x | - | X | X |
| v2.1.x | 01/2022 | X | |
| v1.2 | YES | | |
| Version | Released | EOL | Only critical bug fixes | Full |
| ---- | :----: | :----: | :----: | :----: |
| v3.x | 2020/12/29 | - | X | X |
| v2.1.x | 2016/05/16 | 01/2022 | X | |
| v1.2 | 2013/19/05 | YES | | |
## Requirements ##
@@ -113,4 +114,4 @@ As this is a port from another library and work, here are other people related t
## License ##
Released under the MIT License attached with this code.
Released under the MIT License attached with this code.