-
Notifications
You must be signed in to change notification settings - Fork 13
/
RELEASE.txt
63 lines (30 loc) · 1.4 KB
/
RELEASE.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
https://github.com/bbottema/email-rfc2822-validator/
<dependency>
<groupId>com.github.bbottema</groupId>
<artifactId>emailaddress-rfc2822</artifactId>
<version>2.3.1</version>
</dependency>
RELEASE NOTES email-rfc2822-validator
v2.3.1
- #24: Bug: Published JARs for versions 2.2.0 and 2.3.0 have an invalid module name in MANIFEST.MF
v2.3.0
- #21: Make Jakarta Mail dependency used for parsing (not validation) optional
NOTE: Jakarta Mail is now an optional dependency, which you need to add yourself, but only if you use the parsing facilities of this library (rather than only the validation function)
v2.2.0
- #19: Parens not parsed properly and API documentation / usage needs improvement
v2.1.4
- #17: IllegalArgumentException when passing null to EmailAddressValidator.isValid(String)
v2.1.3
- #14: Update project to Java 1.7 and Jakarta Mail
v1.1.3
- #13: Fixed TLD limitation for domains longer than six
v1.1.2
- Fixed regression bug where name and address were switched around
v1.1.1
- This library can now be used with any javax.mail dependency from 1.5.5 and upwards.
v1.1.0
- #7: Clarified validation modes (default vs strictly rfc compliant)
NOTE: EmailAddressValidator.isValid() now validates using EmailAddressCriteria.DEFAULT rather than EmailAddressCriteria.RFC_COMPLIANT. Use
EmailAddressValidator.isValidStrict() for RFC compliant validation.
v1.0.1
- initial release