Skip to content

Commit 6728395

Browse files
committed
Preparing for release 6.0.1
1 parent 1e5bea9 commit 6728395

File tree

3 files changed

+49
-45
lines changed

3 files changed

+49
-45
lines changed

README.md

Lines changed: 25 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![APACHE v2 License](https://img.shields.io/badge/license-apachev2-blue.svg?style=flat)](modules/simple-java-mail/LICENSE-2.0.txt)
2-
[![Latest Release](https://img.shields.io/maven-central/v/org.simplejavamail/simple-java-mail.svg?style=flat)](https://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.simplejavamail%22%20AND%20v%3A%226.0.0%22)
3-
[![Javadocs](https://img.shields.io/badge/javadoc-6.0.0-brightgreen.svg?color=brightgreen)](https://www.javadoc.io/doc/org.simplejavamail/maven-master-project)
2+
[![Latest Release](https://img.shields.io/maven-central/v/org.simplejavamail/simple-java-mail.svg?style=flat)](https://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.simplejavamail%22%20AND%20v%3A%226.0.1%22)
3+
[![Javadocs](https://img.shields.io/badge/javadoc-6.0.1-brightgreen.svg?color=brightgreen)](https://www.javadoc.io/doc/org.simplejavamail/maven-master-project)
44
[![Codacy](https://img.shields.io/codacy/grade/c7506663a4ab41e49b9675d87cd900b7.svg?style=flat)](https://www.codacy.com/app/b-bottema/simple-java-mail)
55
![Java 1.7+](https://img.shields.io/badge/java-1.7+-lightgray.svg)
66

@@ -18,13 +18,13 @@ Simple Java Mail is also available in [Maven Central](https://search.maven.org/#
1818
<dependency>
1919
<groupId>org.simplejavamail</groupId>
2020
<artifactId>simple-java-mail</artifactId>
21-
<version>6.0.0</version>
21+
<version>6.0.1</version>
2222
</dependency>
2323
```
2424

2525
### Latest Progress ###
2626

27-
v6.0.0-rc1 - [v6.0.0](https://search.maven.org/#artifactdetails%7Corg.simplejavamail%7Csimple-java-mail%7C6.0.0%7Cjar) (18-December-2019 - 24-January-2020)
27+
v6.0.0-rc1 - [v6.0.1](https://search.maven.org/#artifactdetails%7Corg.simplejavamail%7Csimple-java-mail%7C6.0.1%7Cjar) (18-December-2019 - 24-January-2020)
2828

2929
After almost two years of development the next major release 6.0.0 is finally here! And what a doozy it is, with the following major new features:
3030

@@ -78,25 +78,27 @@ Here's the complete list of changes:
7878
- [#146](https://github.com/bbottema/simple-java-mail/issues/146) Added OSGI manifest and switched to spotbugs
7979

8080
#### Included changes from outlook-message-parser ####
81-
- v1.7.1: [#25](https://github.com/bbottema/outlook-message-parser/issues/25) NPE on ClientSubmitTime when original message has not been sent yet
82-
- v1.7.1: [#23](https://github.com/bbottema/outlook-message-parser/issues/23) Bug: __nameid_ directory should not be parsed (and causing invalid HTML body)
83-
- v1.7.0: [#18](https://github.com/bbottema/outlook-message-parser/issues/18) Upgrade Apache POI 3.9 -> 4.x (but managed back for Simple Java Mail due to incompatibility with Java 7)
84-
- v1.6.0: [#21](https://github.com/bbottema/outlook-message-parser/issues/21) Multiple TO recipients are not handles properly
85-
- v1.5.0: [#20](https://github.com/bbottema/outlook-message-parser/issues/20) CC and BCC recipients are not parsed properly
86-
- v1.5.0: [#19](https://github.com/bbottema/outlook-message-parser/issues/19) Use real Outlook ContentId Attribute to resolve CID Attachments
87-
- v1.4.1: [#17](https://github.com/bbottema/outlook-message-parser/issues/17) Fixed encoding error for UTF-8's Windows legacy name (cp)65001
88-
- v1.4.0: [#9](https://github.com/bbottema/outlook-message-parser/issues/9) Replaced the RFC to HTML converter with a brand new RFC-compliant convert! (thanks to @fadeyev!)
89-
- v1.3.0: [#14](https://github.com/bbottema/outlook-message-parser/issues/14) Dependency problem with Java9+, missing Jakarta Activation Framework
90-
- v1.3.0: [#13](https://github.com/bbottema/outlook-message-parser/issues/13) HTML start tags with extra space not handled correctly
91-
- v1.3.0: [#11](https://github.com/bbottema/outlook-message-parser/issues/11) SimpleRTF2HTMLConverter inserts too many <br/> tags
92-
- v1.3.0: [#10](https://github.com/bbottema/outlook-message-parser/issues/10) Embedded images with DOS-like names are classified as attachments
93-
- v1.3.0: [#9](https://github.com/bbottema/outlook-message-parser/issues/9) SimpleRTF2HTMLConverter removes some valid tags during conversion
94-
- v1.2.1: Ignore non S/MIME related content types when extracting S/MIME metadata
95-
- v1.2.1: Added toString and equals methods to the S/MIME data classes
96-
- v1.1.21: Upgraded mediatype recognition based on file extension for incomplete attachments
97-
- v1.1.21: Added / improved support for public S/MIME meta data
98-
- v1.1.20: [#7](https://github.com/bbottema/outlook-message-parser/issues/7) Fix missing S/MIME header details that are needed to determine the type of S/MIME application
99-
- v1.1.19: Log rtf compression error, but otherwise ignore it and keep going and extract what we can.
81+
- v6.0.1, v1.7.3: [#27](https://github.com/bbottema/outlook-message-parser/issues/27) When from name/address are not available (unsent emails), these fields are filled with binary garbage
82+
- v6.0.1, v1.7.2: [#26](https://github.com/bbottema/outlook-message-parser/issues/26) To email address is not handled properly when name is omitted
83+
- v6.0.0, v1.7.1: [#25](https://github.com/bbottema/outlook-message-parser/issues/25) NPE on ClientSubmitTime when original message has not been sent yet
84+
- v6.0.0, v1.7.1: [#23](https://github.com/bbottema/outlook-message-parser/issues/23) Bug: __nameid_ directory should not be parsed (and causing invalid HTML body)
85+
- v6.0.0, v1.7.0: [#18](https://github.com/bbottema/outlook-message-parser/issues/18) Upgrade Apache POI 3.9 -> 4.x (but managed back for Simple Java Mail due to incompatibility with Java 7)
86+
- v6.0.0, v1.6.0: [#21](https://github.com/bbottema/outlook-message-parser/issues/21) Multiple TO recipients are not handles properly
87+
- v6.0.0, v1.5.0: [#20](https://github.com/bbottema/outlook-message-parser/issues/20) CC and BCC recipients are not parsed properly
88+
- v6.0.0, v1.5.0: [#19](https://github.com/bbottema/outlook-message-parser/issues/19) Use real Outlook ContentId Attribute to resolve CID Attachments
89+
- v6.0.0, v1.4.1: [#17](https://github.com/bbottema/outlook-message-parser/issues/17) Fixed encoding error for UTF-8's Windows legacy name (cp)65001
90+
- v6.0.0, v1.4.0: [#9](https://github.com/bbottema/outlook-message-parser/issues/9) Replaced the RFC to HTML converter with a brand new RFC-compliant convert! (thanks to @fadeyev!)
91+
- v6.0.0, v1.3.0: [#14](https://github.com/bbottema/outlook-message-parser/issues/14) Dependency problem with Java9+, missing Jakarta Activation Framework
92+
- v6.0.0, v1.3.0: [#13](https://github.com/bbottema/outlook-message-parser/issues/13) HTML start tags with extra space not handled correctly
93+
- v6.0.0, v1.3.0: [#11](https://github.com/bbottema/outlook-message-parser/issues/11) SimpleRTF2HTMLConverter inserts too many <br/> tags
94+
- v6.0.0, v1.3.0: [#10](https://github.com/bbottema/outlook-message-parser/issues/10) Embedded images with DOS-like names are classified as attachments
95+
- v6.0.0, v1.3.0: [#9](https://github.com/bbottema/outlook-message-parser/issues/9) SimpleRTF2HTMLConverter removes some valid tags during conversion
96+
- v6.0.0, v1.2.1: Ignore non S/MIME related content types when extracting S/MIME metadata
97+
- v6.0.0, v1.2.1: Added toString and equals methods to the S/MIME data classes
98+
- v6.0.0, v1.1.21: Upgraded mediatype recognition based on file extension for incomplete attachments
99+
- v6.0.0, v1.1.21: Added / improved support for public S/MIME meta data
100+
- v6.0.0, v1.1.20: [#7](https://github.com/bbottema/outlook-message-parser/issues/7) Fix missing S/MIME header details that are needed to determine the type of S/MIME application
101+
- v6.0.0, v1.1.19: Log rtf compression error, but otherwise ignore it and keep going and extract what we can.
100102

101103
**A big shout out to @dnault ([runtime javadoc](https://github.com/dnault/therapi-runtime-javadoc)), @remkop ([picocli](https://picocli.info/)) and @markenwerk
102104
([S/MIME](https://github.com/markenwerk/java-utils-mail-smime) and [DKIM](https://github.com/markenwerk/java-utils-mail-dkim)) for working with me to make the

RELEASE.txt

Lines changed: 23 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ http://www.simplejavamail.org
33
<dependency>
44
<groupId>org.simplejavamail</groupId>
55
<artifactId>simple-java-mail</artifactId>
6-
<version>6.0.0</version>
6+
<version>6.0.1</version>
77
</dependency>
88

9-
v6.0.0-rc1 - v6.0.0 (18-December-2019 - 24-January-2020)
9+
v6.0.0-rc1 - v6.0.1 (18-December-2019 - 24-January-2020)
1010

1111
After almost two years of development the next major release 6.0.0 is finally here! And what a doozy it is, with the following major new features:
1212

@@ -60,25 +60,27 @@ Here's the complete list of changes:
6060
- #146: Added OSGI manifest and switched to spotbugs
6161

6262
#### Included changes from the outlook-message-parser dependency ####
63-
- v1.7.1: #25: NPE on ClientSubmitTime when original message has not been sent yet
64-
- v1.7.1: #23: Bug: __nameid_ directory should not be parsed (and causing invalid HTML body)
65-
- v1.7.0: #18: Upgrade Apache POI 3.9 -> 4.x (but managed back for Simple Java Mail due to incompatibility with Java 7)
66-
- v1.6.0: #21: Multiple TO recipients are not handles properly
67-
- v1.5.0: #20: CC and BCC recipients are not parsed properly
68-
- v1.5.0: #19: Use real Outlook ContentId Attribute to resolve CID Attachments
69-
- v1.4.1: #17: Fixed encoding error for UTF-8's Windows legacy name (cp)65001
70-
- v1.4.0: #9: Replaced the RFC to HTML converter with a brand new RFC-compliant convert! (thanks to @fadeyev!)
71-
- v1.3.0: #14: Dependency problem with Java9+, missing Jakarta Activation Framework
72-
- v1.3.0: #13: HTML start tags with extra space not handled correctly
73-
- v1.3.0: #11: SimpleRTF2HTMLConverter inserts too many <br/> tags
74-
- v1.3.0: #10: Embedded images with DOS-like names are classified as attachments
75-
- v1.3.0: #9: SimpleRTF2HTMLConverter removes some valid tags during conversion
76-
- v1.2.1: Ignore non S/MIME related content types when extracting S/MIME metadata
77-
- v1.2.1: Added toString and equals methods to the S/MIME data classes
78-
- v1.1.21: Upgraded mediatype recognition based on file extension for incomplete attachments
79-
- v1.1.21: Added / improved support for public S/MIME meta data
80-
- v1.1.20: #7: Fix missing S/MIME header details that are needed to determine the type of S/MIME application
81-
- v1.1.19: Log rtf compression error, but otherwise ignore it and keep going and extract what we can.
63+
- v6.0.1, v1.7.3: #27: When from name/address are not available (unsent emails), these fields are filled with binary garbage
64+
- v6.0.1, v1.7.2: #26: To email address is not handled properly when name is omitted
65+
- v6.0.0, v1.7.1: #25: NPE on ClientSubmitTime when original message has not been sent yet
66+
- v6.0.0, v1.7.1: #23: Bug: __nameid_ directory should not be parsed (and causing invalid HTML body)
67+
- v6.0.0, v1.7.0: #18: Upgrade Apache POI 3.9 -> 4.x (but managed back for Simple Java Mail due to incompatibility with Java 7)
68+
- v6.0.0, v1.6.0: #21: Multiple TO recipients are not handles properly
69+
- v6.0.0, v1.5.0: #20: CC and BCC recipients are not parsed properly
70+
- v6.0.0, v1.5.0: #19: Use real Outlook ContentId Attribute to resolve CID Attachments
71+
- v6.0.0, v1.4.1: #17: Fixed encoding error for UTF-8's Windows legacy name (cp)65001
72+
- v6.0.0, v1.4.0: #9: Replaced the RFC to HTML converter with a brand new RFC-compliant convert! (thanks to @fadeyev!)
73+
- v6.0.0, v1.3.0: #14: Dependency problem with Java9+, missing Jakarta Activation Framework
74+
- v6.0.0, v1.3.0: #13: HTML start tags with extra space not handled correctly
75+
- v6.0.0, v1.3.0: #11: SimpleRTF2HTMLConverter inserts too many <br/> tags
76+
- v6.0.0, v1.3.0: #10: Embedded images with DOS-like names are classified as attachments
77+
- v6.0.0, v1.3.0: #9: SimpleRTF2HTMLConverter removes some valid tags during conversion
78+
- v6.0.0, v1.2.1: Ignore non S/MIME related content types when extracting S/MIME metadata
79+
- v6.0.0, v1.2.1: Added toString and equals methods to the S/MIME data classes
80+
- v6.0.0, v1.1.21: Upgraded mediatype recognition based on file extension for incomplete attachments
81+
- v6.0.0, v1.1.21: Added / improved support for public S/MIME meta data
82+
- v6.0.0, v1.1.20: #7: Fix missing S/MIME header details that are needed to determine the type of S/MIME application
83+
- v6.0.0, v1.1.19: Log rtf compression error, but otherwise ignore it and keep going and extract what we can.
8284

8385
**A big shout out to @dnault ([runtime javadoc](https://github.com/dnault/therapi-runtime-javadoc)), @remkop ([picocli](https://picocli.info/)) and @markenwerk
8486
([S/MIME](https://github.com/markenwerk/java-utils-mail-smime) and [DKIM](https://github.com/markenwerk/java-utils-mail-dkim)) for working with me to make the

modules/cli-module/src/main/java/org/simplejavamail/internal/clisupport/CliCommandLineProducer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ static CommandLine configurePicoCli(List<CliDeclaredOptionSpec> declaredOptions,
3838
"%n" +
3939
"Note: All the regular functionality regarding properties and config files work with the CLI so you can provide defaults in a " +
4040
"property file as long as it is visible (on class path) or as system environment variables.")
41-
.version("Simple Java Mail 6.0.0");
41+
.version("Simple Java Mail 6.0.1");
4242

4343
rootCommandsHolder.usageMessage()
4444
.customSynopsis("",

0 commit comments

Comments
 (0)